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/README.md
1# Digital Brain23> A personal operating system for founders, creators, and builders. Part of the [Agent Skills for Context Engineering](https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering) collection.45## Overview67Digital Brain is a structured knowledge management system designed for AI-assisted personal productivity. It provides a complete folder-based architecture for managing:89- **Personal Brand** - Voice, positioning, values10- **Content Creation** - Ideas, drafts, publishing pipeline11- **Knowledge Base** - Bookmarks, research, learning12- **Network** - Contacts, relationships, introductions13- **Operations** - Goals, tasks, meetings, metrics1415The system follows context engineering principles: progressive disclosure, append-only data, and module separation to optimize for AI agent interactions.1617## Architecture1819```20digital-brain/21├── SKILL.md # Main skill definition (Claude Code compatible)22├── SKILLS-MAPPING.md # How context engineering skills apply23│24├── identity/ # Personal brand & voice25│ ├── IDENTITY.md # Module instructions26│ ├── voice.md # Tone, style, patterns27│ ├── brand.md # Positioning, audience28│ ├── values.yaml # Core principles29│ ├── bio-variants.md # Platform bios30│ └── prompts/ # Generation templates31│32├── content/ # Content creation hub33│ ├── CONTENT.md # Module instructions34│ ├── ideas.jsonl # Content ideas (append-only)35│ ├── posts.jsonl # Published content log36│ ├── calendar.md # Content schedule37│ ├── engagement.jsonl # Saved inspiration38│ ├── drafts/ # Work in progress39│ └── templates/ # Thread, newsletter, post templates40│41├── knowledge/ # Personal knowledge base42│ ├── KNOWLEDGE.md # Module instructions43│ ├── bookmarks.jsonl # Saved resources44│ ├── learning.yaml # Skills & goals45│ ├── competitors.md # Market landscape46│ ├── research/ # Deep-dive notes47│ └── notes/ # Quick captures48│49├── network/ # Relationship management50│ ├── NETWORK.md # Module instructions51│ ├── contacts.jsonl # People database52│ ├── interactions.jsonl # Meeting log53│ ├── circles.yaml # Relationship tiers54│ └── intros.md # Introduction tracker55│56├── operations/ # Productivity system57│ ├── OPERATIONS.md # Module instructions58│ ├── todos.md # Task list (P0-P3)59│ ├── goals.yaml # OKRs60│ ├── meetings.jsonl # Meeting notes61│ ├── metrics.jsonl # Key metrics62│ └── reviews/ # Weekly reviews63│64├── agents/ # Automation65│ ├── AGENTS.md # Script documentation66│ └── scripts/67│ ├── weekly_review.py68│ ├── content_ideas.py69│ ├── stale_contacts.py70│ └── idea_to_draft.py71│72├── references/ # Detailed documentation73│ └── file-formats.md74│75└── examples/ # Usage workflows76├── content-workflow.md77└── meeting-prep.md78```7980## Skills Integration8182This example demonstrates these context engineering skills:8384| Skill | Application |85|-------|-------------|86| `context-fundamentals` | Progressive disclosure, attention budget |87| `memory-systems` | JSONL append-only logs, structured recall |88| `tool-design` | Self-contained automation scripts |89| `context-optimization` | Module separation, just-in-time loading |9091See [SKILLS-MAPPING.md](./SKILLS-MAPPING.md) for detailed mapping of how each skill informs the design.9293## Installation9495### As a Claude Code Skill9697```bash98# User-wide installation99git clone https://github.com/muratcankoylan/digital-brain-skill.git \100~/.claude/skills/digital-brain101102# Or project-specific103git clone https://github.com/muratcankoylan/digital-brain-skill.git \104.claude/skills/digital-brain105```106107### As a Standalone Template108109```bash110git clone https://github.com/muratcankoylan/digital-brain-skill.git ~/digital-brain111cd ~/digital-brain112```113114## Quick Start1151161. **Define your voice** - Fill out `identity/voice.md` with your tone and style1172. **Set your positioning** - Complete `identity/brand.md` with audience and pillars1183. **Add contacts** - Populate `network/contacts.jsonl` with key relationships1194. **Set goals** - Define OKRs in `operations/goals.yaml`1205. **Start creating** - Ask AI to "write a post" and watch it use your voice121122## File Format Conventions123124| Format | Use Case | Why |125|--------|----------|-----|126| `.jsonl` | Append-only logs | Agent-friendly, preserves history |127| `.yaml` | Structured config | Human-readable hierarchies |128| `.md` | Narrative content | Editable, rich formatting |129| `.xml` | Complex prompts | Clear structure for agents |130131## Usage Examples132133### Content Creation134```135User: "Help me write a X thread about AI agents"136137Agent Process:1381. Reads identity/voice.md for tone patterns1392. Checks identity/brand.md - confirms "ai_agents" is a pillar1403. References content/posts.jsonl for successful formats1414. Drafts thread matching voice attributes142```143144### Meeting Preparation145```146User: "Prepare me for my call with Sarah"147148Agent Process:1491. Searches network/contacts.jsonl for Sarah1502. Gets history from network/interactions.jsonl1513. Checks operations/todos.md for pending items1524. Generates pre-meeting brief153```154155### Weekly Review156```157User: "Run my weekly review"158159Agent Process:1601. Executes agents/scripts/weekly_review.py1612. Compiles metrics from operations/metrics.jsonl1623. Runs agents/scripts/stale_contacts.py1634. Presents summary with action items164```165166## Automation Scripts167168| Script | Purpose | Run Frequency |169|--------|---------|---------------|170| `weekly_review.py` | Generate review from data | Weekly |171| `content_ideas.py` | Suggest content from knowledge | On-demand |172| `stale_contacts.py` | Find neglected relationships | Weekly |173| `idea_to_draft.py` | Expand idea to draft scaffold | On-demand |174175```bash176# Run directly177python agents/scripts/weekly_review.py178179# Or with arguments180python agents/scripts/content_ideas.py --pillar ai_agents --count 5181```182183## Design Principles1841851. **Progressive Disclosure** - Load only what's needed for the current task1862. **Append-Only Data** - Never delete, preserve history for pattern analysis1873. **Module Separation** - Each domain is independent, no cross-contamination1884. **Voice First** - Always read voice.md before any content generation1895. **Platform Agnostic** - Works with Claude Code, Cursor, any AI assistant190191## Contributing192193This is part of the [Agent Skills for Context Engineering](https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering) collection.194195Contributions welcome:196- New content templates197- Additional automation scripts198- Module enhancements199- Documentation improvements200201## License202203MIT - Use freely, attribution appreciated.204205---206207**Author**: Muratcan Koylan208**Version**: 1.0.0209**Last Updated**: 2025-12-29210