Transform completed research output into a multi-part linked blog series. Use when user says "create blog series", "turn this into blog posts", "blog this research", "make blog posts from", or wants to generate publishable content from research.
Transform completed research output into a hierarchical, multi-part blog series with linked navigation.
This skill requires completed research with at least README.md and learning-path.md in a research_output/ subfolder. If none exists, prompt the user to run a learning or research skill first.
Use Bash to discover available research folders (the orchestrator does not have Glob or Read):
ls research_output/ to list available foldersls research_output/{folder}/ to verify these required files exist:
README.md (required)learning-path.md (required)practical-takeaways.md — if present, Part 6 will be generatedcode-examples/ folder — if present, Part 7 will be generatedDo NOT attempt to read file contents — the blog_writer subagent handles all parsing.
Spawn the blog_writer subagent using the Task tool with only:
research_output/framework-claude-agent-sdk/)The blog_writer will independently:
blog/{series-slug}/After the blog_writer completes, use Bash to verify the output:
ls -R research_output/{folder}/blog/ to confirm the file structureresearch_output/{topic}/blog/{series-slug}/
├── 00-introduction.md
├── chapters/
│ ├── 01-{level-1-slug}.md
│ ├── 02-{level-2-slug}.md
│ ├── 03-{level-3-slug}.md
│ ├── 04-{level-4-slug}.md
│ ├── 05-{level-5-slug}.md
│ └── 06-practical-takeaways.md ← if practical-takeaways.md exists
└── code-examples/
└── 07-hands-on-code.md ← if code-examples/ exists