This is a Digital Brain personal operating system. When working in this project:
- Always read identity/voice.md before writing any content - Match the user's authentic voice
- Append to JSONL files, never overwrite - Preserve history
- Update timestamps when modifying tracked data
- Cross-reference modules - Knowledge informs content, network informs operations
- Writing content: Read
identity/voice.mdfirst, then use templates incontent/templates/ - Looking up contacts: Search
network/contacts.jsonl, checkinteractions.jsonlfor history - Content ideas: Check
content/ideas.jsonl, runagents/scripts/content_ideas.py - Task management: Use
operations/todos.md, align withoperations/goals.yaml - Weekly review: Run
agents/scripts/weekly_review.py
.jsonlfiles: One JSON object per line, append-only.mdfiles: Human-readable, freely editable.yamlfiles: Configuration and structured data_template.mdor_schemaentries: Reference formats, don't modify
| Request | Action |
|---|---|
| "Write a post about X" | Read voice.md → Draft → Match voice patterns |
| "Prepare for meeting with Y" | Look up contact → Get interactions → Summarize |
| "What should I create?" | Run content_ideas.py → Check calendar |
| "Add contact Z" | Append to contacts.jsonl with full schema |
| "Weekly review" | Run weekly_review.py → Present insights |