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/meeting-prep.md
1# Example: Meeting Preparation Workflow23A complete walkthrough of using Digital Brain for meeting preparation.45---67## Scenario89You have a call with "Sarah Chen" in 30 minutes and need a quick brief.1011---1213## Step 1: Agent Activates Skill1415**User Input**: "Prepare me for my call with Sarah Chen"1617**Agent Recognition**:18- Trigger: "prepare for" + person name → meeting prep19- Action: Load Digital Brain skill, network module2021---2223## Step 2: Contact Lookup2425Agent searches `network/contacts.jsonl` for "Sarah Chen":2627```json28{29"id": "contact_sarahchen",30"name": "Sarah Chen",31"handle": "@sarahchen_ai",32"company": "AI Ventures",33"role": "Partner",34"circle": "active",35"how_met": "She reached out after my thread on agent systems",36"relationship": "potential_investor",37"topics": ["ai_agents", "investing", "founder_market_fit"],38"can_help_with": ["Funding intros", "GTM strategy advice"],39"you_can_help_with": ["Technical due diligence", "Agent architecture insights"],40"notes": "Very technical for a VC. Former ML engineer at Google. Values depth over polish.",41"last_contact": "2024-12-15T00:00:00Z",42"links": {43"twitter": "https://twitter.com/sarahchen_ai",44"linkedin": "https://linkedin.com/in/sarahchen"45}46}47```4849---5051## Step 3: Interaction History5253Agent filters `network/interactions.jsonl` by `contact_id`:5455```json56// Most recent interaction:57{58"id": "int_20241215_100000",59"date": "2024-12-15T10:00:00Z",60"contact_id": "contact_sarahchen",61"type": "call",62"context": "Initial intro call. She's interested in our agent framework approach.",63"key_points": [64"She liked our context engineering approach",65"Asked about moat - I explained skill composability",66"She mentioned her portfolio company BuildAI might need our help"67],68"follow_ups": [69"Send deck with technical architecture",70"Intro to BuildAI team"71],72"sentiment": "positive"73}7475// Earlier interaction:76{77"id": "int_20241201_140000",78"date": "2024-12-01T14:00:00Z",79"contact_id": "contact_sarahchen",80"type": "dm",81"context": "She DMed after my agent systems thread",82"key_points": ["Impressed by technical depth", "Asked about investment stage"],83"follow_ups": ["Schedule intro call"],84"sentiment": "positive"85}86```8788---8990## Step 4: Check Pending Items9192Agent scans `operations/todos.md` for Sarah-related items:9394```markdown95### Waiting On96| Task | Waiting On | Since | Follow Up |97|------|------------|-------|-----------|98| BuildAI intro | Sarah Chen | 2024-12-15 | 2024-12-29 |99100### P1 - This Week101- [ ] Send technical deck to Sarah Chen102```103104**Insight**: Follow-up items are overdue!105106---107108## Step 5: Generate Brief109110Agent compiles contextual brief:111112```markdown113# Meeting Brief: Sarah Chen114115**When**: Today, [TIME]116**Who**: Sarah Chen, Partner @ AI Ventures117**Relationship**: Potential Investor (active circle)118**Days since last contact**: 14119120---121122## Quick Context123- Former ML engineer at Google (technical background)124- Reached out after your agent systems thread125- Values depth over polish126127---128129## Last Conversation (Dec 15)130- Initial intro call - positive sentiment131- She liked context engineering approach132- Asked about moat → explained skill composability133- Mentioned BuildAI (portfolio company) might need help134135---136137## Pending Follow-ups ⚠️1381. **Send technical deck** - Still pending (P1)1392. **BuildAI intro** - Waiting on her, follow up today140141---142143## Her Interests144- Agent architecture145- Context engineering146- Technical due diligence147148---149150## Value Exchange151- **She can help**: Funding intros, GTM strategy152- **You can help**: Technical DD, agent architecture153154---155156## Suggested Talking Points1571. Apologize for delayed deck, offer to walk through live1582. Ask about BuildAI intro status1593. Share recent progress on [relevant feature]1604. Ask about her investment thesis timeline161162---163164## Links165- Twitter: @sarahchen_ai166- LinkedIn: linkedin.com/in/sarahchen167```168169---170171## Step 6: Post-Meeting Logging172173After the call, agent helps log to `network/interactions.jsonl`:174175**User**: "Just finished with Sarah. She's moving forward with intro to BuildAI and wants to see the deck by Friday."176177Agent appends:178179```json180{181"id": "int_20241229_143000",182"date": "2024-12-29T14:30:00Z",183"contact_id": "contact_sarahchen",184"type": "call",185"context": "Follow-up call. Positive momentum on both fronts.",186"key_points": [187"She's proceeding with BuildAI intro",188"Wants technical deck by Friday",189"Mentioned Series A timeline is Q1"190],191"follow_ups": [192"Send deck by Friday Dec 31",193"Expect BuildAI intro next week"194],195"sentiment": "positive"196}197```198199Agent updates `operations/todos.md`:200201```markdown202### P0 - Must Do Today203- [ ] Send technical deck to Sarah Chen (due: Friday)204205### Waiting On206| Task | Waiting On | Since | Follow Up |207|------|------------|-------|-----------|208| BuildAI intro | Sarah Chen | 2024-12-29 | 2025-01-05 |209```210211Agent updates contact's `last_contact`:212213```json214{215"id": "contact_sarahchen",216...217"last_contact": "2024-12-29T14:30:00Z"218}219```220221---222223## Files Accessed224225| File | Purpose | Tokens (~) |226|------|---------|------------|227| `SKILL.md` | Routing | 50 |228| `network/NETWORK.md` | Module instructions | 60 |229| `network/contacts.jsonl` | Contact lookup | 80 |230| `network/interactions.jsonl` | History | 150 |231| `operations/todos.md` | Pending items | 50 |232233**Total**: ~390 tokens234235---236237## Key Takeaways2382391. **Context Assembly**: Agent pulls from multiple sources2402. **Actionable Output**: Brief highlights what to discuss2413. **Follow-up Tracking**: Pending items surfaced proactively2424. **Complete Loop**: Meeting → Log → Update todos → Update contact2435. **Relationship Intelligence**: Notes inform meeting approach244