Technical blogging strategies, SEO, and content creation for developer audiences
Generates SEO-optimized technical blog posts for developer audiences. Use when creating tutorials, comparisons, or deep-dives with proper structure and code examples.
/plugin marketplace add pluginagentmarketplace/custom-plugin-devrel-engineer/plugin install devrel-engineer-plugin@pluginagentmarketplace-devrel-engineerThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/blog-post-template.yamlreferences/BLOGGING_GUIDE.mdscripts/blog_planner.pyCreate compelling technical blog content that educates and engages developers.
parameters:
required:
- topic: string
- target_audience: enum[beginner, intermediate, advanced]
optional:
- word_count: integer
- seo_keywords: array[string]
- include_code: boolean
output:
blog_post:
title: string
body: markdown
meta_description: string
estimated_reading_time: duration
1. Questions from community
2. Problems you solved
3. New feature announcements
4. Industry trends
5. Tutorial requests
6. Comparison guides
7. Best practices
| Week | Type | Example |
|---|---|---|
| 1 | Tutorial | "Getting Started with..." |
| 2 | Deep dive | "Understanding X internals" |
| 3 | Comparison | "X vs Y: Which to choose" |
| 4 | Case study | "How Company X achieved..." |
# Compelling Title (SEO keyword + benefit)
**TL;DR**: One paragraph summary for skimmers
## Introduction (Hook + Promise)
Why should they care? What will they learn?
## Prerequisites
What they need to know/have before starting.
## Main Content
### Section 1: The What
### Section 2: The Why
### Section 3: The How (with code)
## Summary
- Key takeaway 1
- Key takeaway 2
- Key takeaway 3
## Next Steps / Resources
- Link to docs
- Related posts
- Call to action
| Element | Best Practice |
|---|---|
| Title | Keyword + benefit, <60 chars |
| URL | Short, keyword-rich slug |
| Meta | 150-160 chars description |
| H1 | One per page, matches title |
| Images | Alt text, compressed |
retry_patterns:
low_engagement:
strategy: "Rewrite hook, add visuals"
seo_not_ranking:
strategy: "Audit keywords, update title"
code_errors_reported:
strategy: "Test in fresh environment, fix"
| Failure Mode | Detection | Recovery |
|---|---|---|
| Code doesn't work | Reader feedback | Hotfix immediately |
| Low engagement | <2 min avg time | Rewrite hook |
| Not ranking | Not in top 20 | SEO audit |
□ Code examples tested?
□ Links verified?
□ Images optimized?
□ Spell/grammar checked?
□ Mobile preview OK?
□ Meta description set?
□ Keywords in title?
test_blogging:
unit_tests:
- test_code_works:
assert: "All code samples run"
- test_seo_elements:
assert: "Title, meta, keywords present"
integration_tests:
- test_reader_journey:
assert: "Can follow to completion"
metrics:
- word_count: integer
- reading_time: duration
- code_blocks: integer
- publish_date: date
See assets/ for blog templates.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.