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/content/CONTENT.md
1---2name: content-module3description: Content creation hub - ideas, drafts, calendar, and published posts. Use for content planning, writing, and tracking.4---56# Content Hub78Your content creation and management system.910## Files in This Module1112| File | Format | Purpose |13|------|--------|---------|14| `ideas.jsonl` | JSONL | Raw content ideas (append-only) |15| `posts.jsonl` | JSONL | Published content log |16| `calendar.md` | Markdown | Content schedule |17| `drafts/` | Folder | Work-in-progress content |18| `templates/` | Folder | Reusable content formats |19| `engagement.jsonl` | JSONL | Saved posts/threads for inspiration |2021## Workflows2223### Capture an Idea24```bash25# Append to ideas.jsonl with timestamp26{27"id": "idea_YYYYMMDD_HHMMSS",28"created": "ISO8601",29"idea": "content",30"source": "where it came from",31"pillar": "content pillar",32"status": "raw|developing|ready",33"priority": "high|medium|low"34}35```3637### Content Creation Pipeline38```391. ideas.jsonl (capture)40↓412. drafts/draft_[topic].md (develop)42↓433. Review against voice.md44↓454. Publish46↓475. posts.jsonl (archive with metrics)48```4950### Weekly Content Review511. Review `ideas.jsonl` - promote or archive stale ideas522. Check `calendar.md` - plan next week533. Review `posts.jsonl` - analyze what worked544. Update `engagement.jsonl` - save inspiring content5556## Agent Instructions5758<instructions>59When working with content:60611. **Capturing ideas**: Always append to ideas.jsonl, never overwrite622. **Creating drafts**: Use templates from templates/ as starting points633. **Writing content**: MUST read identity/voice.md first644. **Publishing**: Log to posts.jsonl with all metadata655. **Analysis**: Reference posts.jsonl for performance patterns6667Priority scoring:68- High: Timely, high-value, aligns with current goals69- Medium: Good idea, no urgency70- Low: Worth capturing, develop later71</instructions>7273## Content Metrics to Track7475```yaml76engagement_metrics:77- impressions78- likes79- comments80- reposts81- saves82- link_clicks8384quality_indicators:85- comment_quality: "meaningful discussions vs. emoji reactions"86- share_context: "what people say when sharing"87- follower_conversion: "followers gained from post"88```89