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/knowledge/KNOWLEDGE.md
1---2name: knowledge-module3description: Personal knowledge base - research, bookmarks, learning resources, and notes. Use for information retrieval, research organization, and learning tracking.4---56# Knowledge Base78Your second brain for research, learning, and information organization.910## Files in This Module1112| File | Format | Purpose |13|------|--------|---------|14| `bookmarks.jsonl` | JSONL | Saved links and resources |15| `learning.yaml` | YAML | Skills and learning goals |16| `competitors.md` | Markdown | Competitive landscape |17| `research/` | Folder | Deep-dive research notes |18| `notes/` | Folder | Quick capture notes |1920## Data Schemas2122### Bookmark Entry23```json24{25"id": "bm_YYYYMMDD_HHMMSS",26"saved_at": "ISO8601",27"url": "https://...",28"title": "Page title",29"source": "article|video|podcast|tool|tweet|paper",30"category": "category_name",31"summary": "1-2 sentence summary",32"key_insights": ["insight1", "insight2"],33"status": "unread|read|reviewed|archived",34"rating": 1-5,35"tags": ["tag1", "tag2"]36}37```3839## Workflows4041### Saving a Resource421. Append to `bookmarks.jsonl` with status "unread"432. Add category and initial tags443. Later: read, summarize, update status4546### Research Projects471. Create `research/[topic].md` for deep dives482. Link relevant bookmarks493. Synthesize insights504. Extract content ideas5152### Learning Tracking531. Define skills in `learning.yaml`542. Link resources to skills553. Track progress and milestones564. Review quarterly5758## Agent Instructions5960<instructions>61When managing knowledge:62631. **Saving links**: Always capture URL, title, and initial category642. **Organizing**: Use consistent categories and tags653. **Retrieving**: Search bookmarks.jsonl by category, tags, or keywords664. **Synthesizing**: When asked about a topic, check research/ folder first675. **Learning updates**: Update learning.yaml when completing resources6869Categories to use:70- ai_agents: AI, agents, automation71- building: Startups, product, engineering72- growth: Marketing, audience, content73- productivity: Systems, tools, workflows74- leadership: Management, teams, culture75- industry: Market trends, competitors76- personal: Health, relationships, life77</instructions>7879## Knowledge Graph Hints8081When retrieving information, consider connections:82- Bookmarks → Content ideas83- Research → Authority pieces84- Learning → Skills to highlight in brand85- Competitors → Differentiation angles86