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/examples/content-workflow.md
1# Example: Content Creation Workflow23A complete walkthrough of using Digital Brain for content creation.45---67## Scenario89You want to write a Twitter thread about "lessons from building in public."1011---1213## Step 1: Agent Activates Skill1415**User Input**: "Help me write a thread about lessons from building in public"1617**Agent Recognition**:18- Trigger: "write a thread" → content creation19- Topic: "building in public" → likely matches brand pillars20- Action: Load Digital Brain skill2122---2324## Step 2: Load Identity (Required)2526Agent reads `identity/voice.md`:2728```yaml29# Extracted patterns:30formal_casual: 7/10 (fairly casual)31signature_phrases:32- "Here's the thing"33- "Let me break it down"34power_words:35- "ship", "iterate", "leverage"36avoid:37- "synergy", "circle back"38- excessive emojis39```4041Agent reads `identity/brand.md`:4243```yaml44# Confirms topic alignment:45content_pillars:46- building_in_public ✓ MATCH47- ai_agents48- founder_lessons49target_audience: "Early-stage technical founders"50```5152---5354## Step 3: Reference Past Success5556Agent scans `content/posts.jsonl`:5758```json59// Found similar high-performing thread:60{61"type": "thread",62"pillar": "building_in_public",63"metrics": {"likes": 234, "reposts": 45},64"notes": "Story format worked well"65}66```6768**Insight**: Story-driven threads perform best for this pillar.6970---7172## Step 4: Check Ideas Bank7374Agent scans `content/ideas.jsonl`:7576```json77// Found relevant undeveloped idea:78{79"idea": "Thread on the emotional rollercoaster of public building",80"status": "raw",81"priority": "high"82}83```8485**Decision**: Can incorporate this angle into the thread.8687---8889## Step 5: Generate Draft9091Agent uses `content/templates/thread.md` as scaffold:9293```markdown94## 1/ Hook95Unpopular opinion: Building in public isn't about the wins.9697Here's the thing - it's about the messy middle.9899Let me break it down 🧵100101## 2/ Context102I've been building in public for 18 months.103104Here's what I wish someone told me on day 1:105106## 3-7/ Main Points107[5 specific lessons with stories]108109## 8/ Takeaway110The compound effect of transparency beats any marketing strategy.111112## 9/ CTA113Follow for more founder lessons as I ship @handle114```115116**Voice Alignment Check**:117- ✓ Uses "Here's the thing" (signature phrase)118- ✓ Uses "Let me break it down" (signature phrase)119- ✓ Casual but substantive tone (7/10)120- ✓ No corporate jargon121- ⚠️ Limited emoji (one 🧵 - acceptable)122123---124125## Step 6: User Feedback & Iteration126127User: "Can you make point 3 about the fear of judgment?"128129Agent:1301. Keeps same voice/structure1312. Rewrites point 3 with fear angle1323. Maintains thread flow133134---135136## Step 7: Log the Idea (If Not Publishing)137138If user saves for later, agent appends to `content/ideas.jsonl`:139140```json141{142"id": "idea_20241229_160000",143"created": "2024-12-29T16:00:00Z",144"idea": "Thread: 5 lessons from building in public (fear, wins, community...)",145"source": "developed_draft",146"pillar": "building_in_public",147"status": "ready",148"priority": "high",149"notes": "Draft complete, reviewed voice alignment",150"tags": ["thread", "building_in_public", "founder_lessons"]151}152```153154---155156## Step 8: Post-Publish Logging157158After user publishes, agent appends to `content/posts.jsonl`:159160```json161{162"id": "post_20241229_180000",163"published": "2024-12-29T18:00:00Z",164"platform": "twitter",165"type": "thread",166"content": "Unpopular opinion: Building in public isn't about the wins...",167"url": "https://twitter.com/user/status/123456789",168"pillar": "building_in_public",169"metrics": {170"impressions": 0,171"likes": 0,172"comments": 0,173"reposts": 0174},175"metrics_updated": "2024-12-29T18:00:00Z",176"notes": "Story-driven format, fear angle resonated in drafting",177"tags": ["thread", "building_in_public"]178}179```180181---182183## Files Accessed184185| File | Purpose | Tokens (~) |186|------|---------|------------|187| `SKILL.md` | Routing | 50 |188| `identity/voice.md` | Voice patterns | 200 |189| `identity/brand.md` | Topic validation | 150 |190| `content/posts.jsonl` | Past performance | 100 |191| `content/ideas.jsonl` | Existing ideas | 50 |192| `content/templates/thread.md` | Structure | 100 |193194**Total**: ~650 tokens vs loading entire brain (~5000 tokens)195196---197198## Key Takeaways1992001. **Voice First**: Always loaded before drafting2012. **Progressive Loading**: Only relevant modules accessed2023. **Pattern Matching**: Past success informs new content2034. **Full Pipeline**: Idea → Draft → Publish → Log2045. **Append-Only**: Ideas and posts logged, never deleted205