Claude 24f816b6a3
Consolidate 22 sibling repos into layered organism structure
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):

- brain/        LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
                dispatch, A51 channels, and the OSINT cluster
- knowledge/    LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
                MITRE ATT&CK data
- reference/    defensive threat-reference (C3, shhbruh doc) + AdaYaml parser

License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.

Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.

https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
2026-06-10 06:53:01 +00:00

1.4 KiB

osquery Endpoint Monitoring — API Reference

Installation

Platform Command
macOS brew install osquery
Ubuntu apt install osquery
Windows MSI installer from osquery.io

Key osquery Tables

Table Description
processes Running processes with pid, name, cmdline, uid
listening_ports Open network ports with bound process
suid_bin SUID/SGID binaries on the system
crontab Scheduled cron jobs
authorized_keys SSH authorized keys per user
kernel_modules Loaded kernel modules
docker_containers Docker container status
startup_items Boot/login startup items
file File metadata, hashes, timestamps

Fleet API Endpoints

Method Endpoint Description
GET /api/v1/fleet/hosts List enrolled hosts
GET /api/v1/fleet/hosts/{id} Host details
POST /api/v1/fleet/queries Create scheduled query
GET /api/v1/fleet/queries List queries

osquery CLI

osqueryi --json "SELECT * FROM processes LIMIT 5"
osqueryctl start   # Start osquery daemon
osqueryctl config-check  # Validate configuration

External References