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/SKILL.md
1---2name: digital-brain3description: This skill should be used when the user asks to "write a post", "check my voice", "look up contact", "prepare for meeting", "weekly review", "track goals", or mentions personal brand, content creation, network management, or voice consistency.4version: 1.0.05---67# Digital Brain89A structured personal operating system for managing digital presence, knowledge, relationships, and goals with AI assistance. Designed for founders building in public, content creators growing their audience, and tech-savvy professionals seeking AI-assisted personal management.1011**Important**: This skill uses progressive disclosure. Module-specific instructions are in each subdirectory's `.md` file. Only load what's needed for the current task.1213## When to Activate1415Activate this skill when the user:1617- Requests content creation (posts, threads, newsletters) - load identity/voice.md first18- Asks for help with personal brand or positioning19- Needs to look up or manage contacts/relationships20- Wants to capture or develop content ideas21- Requests meeting preparation or follow-up22- Asks for weekly reviews or goal tracking23- Needs to save or retrieve bookmarked resources24- Wants to organize research or learning materials2526**Trigger phrases**: "write a post", "my voice", "content ideas", "who is [name]", "prepare for meeting", "weekly review", "save this", "my goals"2728## Core Concepts2930### Progressive Disclosure Architecture3132The Digital Brain follows a three-level loading pattern:3334| Level | When Loaded | Content |35|-------|-------------|---------|36| **L1: Metadata** | Always | This SKILL.md overview |37| **L2: Module Instructions** | On-demand | `[module]/[MODULE].md` files |38| **L3: Data Files** | As-needed | `.jsonl`, `.yaml`, `.md` data |3940### File Format Strategy4142Formats chosen for optimal agent parsing:4344- **JSONL** (`.jsonl`): Append-only logs - ideas, posts, contacts, interactions45- **YAML** (`.yaml`): Structured configs - goals, values, circles46- **Markdown** (`.md`): Narrative content - voice, brand, calendar, todos47- **XML** (`.xml`): Complex prompts - content generation templates4849### Append-Only Data Integrity5051JSONL files are **append-only**. Never delete entries:52- Mark as `"status": "archived"` instead of deleting53- Preserves history for pattern analysis54- Enables "what worked" retrospectives5556## Detailed Topics5758### Module Overview5960```61digital-brain/62├── identity/ → Voice, brand, values (READ FIRST for content)63├── content/ → Ideas, drafts, posts, calendar64├── knowledge/ → Bookmarks, research, learning65├── network/ → Contacts, interactions, intros66├── operations/ → Todos, goals, meetings, metrics67└── agents/ → Automation scripts68```6970### Identity Module (Critical for Content)7172**Always read `identity/voice.md` before generating any content.**7374Contains:75- `voice.md` - Tone, style, vocabulary, patterns76- `brand.md` - Positioning, audience, content pillars77- `values.yaml` - Core beliefs and principles78- `bio-variants.md` - Platform-specific bios79- `prompts/` - Reusable generation templates8081### Content Module8283Pipeline: `ideas.jsonl` → `drafts/` → `posts.jsonl`8485- Capture ideas immediately to `ideas.jsonl`86- Develop in `drafts/` using `templates/`87- Log published content to `posts.jsonl` with metrics88- Plan in `calendar.md`8990### Network Module9192Personal CRM with relationship tiers:93- `inner` - Weekly touchpoints94- `active` - Bi-weekly touchpoints95- `network` - Monthly touchpoints96- `dormant` - Quarterly reactivation checks9798### Operations Module99100Productivity system with priority levels:101- P0: Do today, blocking102- P1: This week, important103- P2: This month, valuable104- P3: Backlog, nice to have105106## Practical Guidance107108### Content Creation Workflow109110```1111. Read identity/voice.md (REQUIRED)1122. Check identity/brand.md for topic alignment1133. Reference content/posts.jsonl for successful patterns1144. Use content/templates/ as starting structure1155. Draft matching voice attributes1166. Log to posts.jsonl after publishing117```118119### Pre-Meeting Preparation120121```1221. Look up contact: network/contacts.jsonl1232. Get history: network/interactions.jsonl1243. Check pending: operations/todos.md1254. Generate brief with context126```127128### Weekly Review Process129130```1311. Run: python agents/scripts/weekly_review.py1322. Review metrics in operations/metrics.jsonl1333. Check stale contacts: agents/scripts/stale_contacts.py1344. Update goals progress in operations/goals.yaml1355. Plan next week in content/calendar.md136```137138## Examples139140### Example: Writing an X Post141142**Input**: "Help me write a post about AI agents"143144**Process**:1451. Read `identity/voice.md` → Extract voice attributes1462. Check `identity/brand.md` → Confirm "ai_agents" is a content pillar1473. Reference `content/posts.jsonl` → Find similar successful posts1484. Draft post matching voice patterns1495. Suggest adding to `content/ideas.jsonl` if not publishing immediately150151**Output**: Post draft in user's authentic voice with platform-appropriate format.152153### Example: Contact Lookup154155**Input**: "Prepare me for my call with Sarah Chen"156157**Process**:1581. Search `network/contacts.jsonl` for "Sarah Chen"1592. Get recent entries from `network/interactions.jsonl`1603. Check `operations/todos.md` for pending items with Sarah1614. Compile brief: role, context, last discussed, follow-ups162163**Output**: Pre-meeting brief with relationship context.164165## Guidelines1661671. **Voice First**: Always read `identity/voice.md` before any content generation1682. **Append Only**: Never delete from JSONL files - archive instead1693. **Update Timestamps**: Set `updated` field when modifying tracked data1704. **Cross-Reference**: Knowledge informs content, network informs operations1715. **Log Interactions**: Always log meetings/calls to `interactions.jsonl`1726. **Preserve History**: Past content in `posts.jsonl` informs future performance173174## Integration175176This skill integrates context engineering principles:177178- **context-fundamentals** - Progressive disclosure, attention budget management179- **memory-systems** - JSONL for persistent memory, structured recall180- **tool-design** - Scripts in `agents/scripts/` follow tool design principles181- **context-optimization** - Module separation prevents context bloat182183## References184185Internal references:186- [Identity Module](./identity/IDENTITY.md) - Voice and brand details187- [Content Module](./content/CONTENT.md) - Content pipeline docs188- [Network Module](./network/NETWORK.md) - CRM documentation189- [Operations Module](./operations/OPERATIONS.md) - Productivity system190- [Agent Scripts](./agents/AGENTS.md) - Automation documentation191192External resources:193- [Agent Skills for Context Engineering](https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering)194- [Anthropic Context Engineering Guide](https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents)195196---197198## Skill Metadata199200**Created**: 2024-12-29201**Last Updated**: 2024-12-29202**Author**: Murat Can Koylan203**Version**: 1.0.0204