service/
├── src/
│ ├── index.ts # Startup orchestration
│ ├── cli.ts # CLI for channel management
│ ├── agent/ # LLM agent loop and tools
│ ├── api/ # Hono REST API + MCP server
│ ├── channels/ # Channel listeners
│ ├── contacts/ # Contact backend abstraction
│ ├── tasks/ # Task backend abstraction
│ ├── db/ # SQLite + migrations
│ ├── llm/ # OpenRouter client
│ ├── search/ # QMD search client
│ ├── scheduler/ # Conversation processing loop
│ ├── reminders/ # Decision + schedule engines
│ ├── prompts/ # Agent system prompts
│ ├── lib/ # Logger, utilities
│ └── types/ # TypeScript interfaces
├── data/ # SQLite DB, contacts, policies
└── scripts/ # Setup and maintenance