Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/digital-brain-skill/AGENT.md
1# Digital Brain - Claude Instructions23This is a Digital Brain personal operating system. When working in this project:45## Core Rules671. **Always read identity/voice.md before writing any content** - Match the user's authentic voice82. **Append to JSONL files, never overwrite** - Preserve history93. **Update timestamps** when modifying tracked data104. **Cross-reference modules** - Knowledge informs content, network informs operations1112## Quick Reference1314- **Writing content**: Read `identity/voice.md` first, then use templates in `content/templates/`15- **Looking up contacts**: Search `network/contacts.jsonl`, check `interactions.jsonl` for history16- **Content ideas**: Check `content/ideas.jsonl`, run `agents/scripts/content_ideas.py`17- **Task management**: Use `operations/todos.md`, align with `operations/goals.yaml`18- **Weekly review**: Run `agents/scripts/weekly_review.py`1920## File Conventions2122- `.jsonl` files: One JSON object per line, append-only23- `.md` files: Human-readable, freely editable24- `.yaml` files: Configuration and structured data25- `_template.md` or `_schema` entries: Reference formats, don't modify2627## When User Asks To...2829| Request | Action |30|---------|--------|31| "Write a post about X" | Read voice.md → Draft → Match voice patterns |32| "Prepare for meeting with Y" | Look up contact → Get interactions → Summarize |33| "What should I create?" | Run content_ideas.py → Check calendar |34| "Add contact Z" | Append to contacts.jsonl with full schema |35| "Weekly review" | Run weekly_review.py → Present insights |36