Documentation Index
Fetch the complete documentation index at: https://docs.bossmode.ing/llms.txt
Use this file to discover all available pages before exploring further.
What is the local brain?
When you runbossmode init, the CLI seeds a local SQLite database at ~/.bossmode/brain.db. This database stores:
- Your standing orders
- Buyer profiles and voice calibration
- Directive history and audit feed
- Agent execution logs
- Local signal cache
- Guardian state
Database location
Schema overview
The local brain mirrors the Convex schema. Key tables:| Table | Description |
|---|---|
standing_orders | Active and archived standing orders |
directives | All issued directives and their status |
agent_moves | Individual capo execution log |
approvals | Approval gate queue |
signals | Ingested and scored signals |
buyer_profiles | AvatarCzar buyer models |
audit_feed | Full immutable audit log |
daily_reports | Generated report cache |
Direct SQLite access
For power users who want to query directly:Backup and restore
Sync to cloud
When you add your operator token, the local brain syncs to Convex automatically:SQLite to Convex
The Convex schema inconvex/schema.ts mirrors the SQLite structure. If you fork BossMode and modify the schema, update both to keep sync working.