Content automation skill for personal brand building. Use when creating articles, generating social posts, producing YouTube content, managing cross-platform publishing, or building content production pipelines. Covers article writing, social media generation, video scripts, diagrams, and publishing automation.
Agent-powered content factory for personal brand building and multi-platform content distribution.
Always start with a Markdown source file. All derivative content flows from this:
/articles/topic-name.md ← THE SOURCE
│
├─▶ Blog (full article)
├─▶ LinkedIn (professional summary)
├─▶ Facebook (community teaser)
└─▶ YouTube (video script)
Each platform has different requirements. Never copy-paste across platforms:
| Platform | Format | Tone | Length |
|---|---|---|---|
| Blog | Full Markdown | Educational, thorough | 2000-2500 words |
| Text + emoji | Professional, insightful | 200-300 words | |
| Conversational | Community, discussion | 100-200 words | |
| YouTube | Script format | Engaging, visual | 8-12 min script |
Technical content should include diagrams. Use Mermaid syntax:
graph TD
A[Concept] --> B[Explanation]
B --> C[Example]
C --> D[Takeaway]
# [Title]
> [One-line hook - the key insight]
## The Problem。
Why this matters. What pain point does it solve?
## The Concept
Core idea explained simply. Use analogies.
## How It Works
High-level explanation with diagrams.
```mermaid
graph LR
A[Input] --> B[Process] --> C[Output]
Decision framework. Clear use cases.
Brief, practical code or architecture example.
### LinkedIn Post Template
```markdown
🧠 [Title - with emoji]
[1-2 sentence hook revealing the key insight]
[Brief context - why this matters]
Key takeaway:
→ [The most important point in one line]
Read the full article: [link]
#Tag1 #Tag2 #Tag3
🚀 New article: [Title]
[Question that sparks discussion]
[1-2 sentences teasing the content]
What's your experience with [topic]? 👇
[link]
# [Video Title]
## Hook (0:00 - 0:30)
[Attention-grabbing opening - state the problem]
## Problem (0:30 - 2:00)
[Expand on why this matters - pain points]
## Solution Overview (2:00 - 4:00)
[High-level solution - the concept]
## Deep Dive (4:00 - 7:00)
[Detailed explanation with visuals]
## Demo (7:00 - 9:00)
[Live demonstration or walkthrough]
## Summary & CTA (9:00 - 10:00)
[Key takeaways + call to action]
- Like and subscribe
- Read the full article: [link]
- Comment your questions
When user provides an article, generate platform-specific social posts:
Transform article into video-optimized script:
When video transcript is provided:
Generate Mermaid diagrams from content:
flowchart for processessequenceDiagram for interactionsclassDiagram for relationshipsmindmap for concept mapsRecommended structure for content workspace:
/content
├── /articles/ # Source of truth
│ ├── YYYY-MM-topic.md # Named with date prefix
│ └── ...
├── /videos/
│ ├── topic-name/
│ │ ├── script.md
│ │ ├── timestamps.md
│ │ └── thumbnail.png
│ └── ...
├── /social/
│ ├── linkedin/
│ │ └── YYYY-MM-DD-topic.md
│ └── facebook/
│ └── YYYY-MM-DD-topic.md
└── /assets/
├── diagrams/
└── images/