Agent skill
pragmatic-writing
This skill should be used when writing technical content in the style of Hunt/Thomas (The Pragmatic Programmer) and Joel Spolsky (Joel on Software). It applies when creating technical essays, documentation, tutorials, or explanatory content that needs to be clear, engaging, and actionable.
Install this agent skill to your Project
npx add-skill https://github.com/robertguss/claude-code-toolkit/tree/main/plugins/compound-writing/skills/pragmatic-writing
SKILL.md
Pragmatic Writing Skill
Writing style modeled on the masters of technical communication: Andy Hunt, Dave Thomas (The Pragmatic Programmer), and Joel Spolsky (Joel on Software). This skill transforms technical content into engaging, memorable prose.
When to Use This Skill
This skill applies when:
- Creating technical blog posts, essays, or articles
- Writing documentation that needs personality
- Explaining complex concepts to developers
- Crafting tutorials or how-to guides
- Writing "lessons learned" or postmortem content
- Any technical writing that should be read, not just referenced
Core Philosophy
"The difference between 'almost right' and 'right' is the difference between the lightning bug and the lightning." — Mark Twain (quoted by Pragmatic Programmers)
Technical writing doesn't have to be dry. The best technical writers make complex ideas feel obvious, use concrete examples before abstract theory, and treat the reader as a smart colleague.
The 10 Core Techniques
Reference the complete technique guide at techniques.md.
1. Concrete Before Abstract
Always start with a concrete example, then extract the principle.
❌ "Dependency injection is a design pattern where dependencies are passed
to objects rather than created by them."
✅ "Imagine your class needs a database connection. You could create it
yourself:
def initialize
@db = Database.new("localhost:5432")
end
But now your class is stuck with that exact database. What if you
want to test with a fake one? What if production uses a different host?
Instead, accept it as a parameter:
def initialize(db)
@db = db
end
That's dependency injection. Simple."
2. Physical Analogies
Map abstract concepts to physical experiences readers already understand.
See examples.md for analogy patterns:
- Software abstractions → Physical tools
- Code patterns → Architectural patterns
- System design → Everyday systems (postal service, restaurants)
3. Conversational Register
Write like you're explaining to a smart colleague at a whiteboard.
Markers of conversational register:
- Contractions (don't, won't, can't)
- Direct address (you, your)
- Questions (But what if...? Why does this matter?)
- Asides (By the way, Incidentally)
- Admissions (To be honest, I'm not sure, It depends)
4. Humor as Architecture
Use humor strategically, not decoratively:
- Memorable hooks ("Good code is its own best documentation")
- Tension release after complex explanations
- Self-deprecation to build rapport
- Absurdist examples to highlight bad patterns
5. The "Aha!" Structure
Build to moments of realization:
- Present a familiar problem
- Show the common (flawed) approach
- Reveal why it fails
- Present the insight
- Show the better way
- Connect back to the principle
6. Short Paragraphs, Varied Length
- No paragraph over 4 sentences
- Alternate between longer explanations and punchy one-liners
- Use single-sentence paragraphs for emphasis
Like this.
7. Code as Evidence
Code examples should:
- Be runnable (no pseudo-code unless necessary)
- Be minimal (show only what matters)
- Progress from broken to fixed
- Include comments only for non-obvious things
8. The Principle Box
After a concrete exploration, box the principle:
Tip 23: Always Design for Concurrency Allow for concurrency, and you will design cleaner interfaces with fewer assumptions.
9. Friendly Warnings
When discussing pitfalls:
- Acknowledge you've made the mistake too
- Explain why it's tempting
- Show the consequences
- Provide the escape hatch
See anti-patterns.md for common technical writing mistakes.
10. The Callback
End by connecting back to the opening example or question. Close the loop.
Voice Characteristics
Sentence Patterns
- Average length: 15-20 words
- Mix of simple, compound, complex
- Questions every 3-4 paragraphs
- Direct statements for key points
Vocabulary
Use: specific, concrete, everyday words Avoid: jargon without explanation, buzzwords, corporate-speak
Tone
- Confident but not arrogant
- Curious and exploratory
- Practical and results-focused
- Occasionally irreverent
Applying the Skill
For Blog Posts
- Open with a problem or scenario
- Explore the messy middle
- Reveal the insight
- Show the solution
- Extract the principle
- Callback to opening
For Documentation
- Start with what the reader wants to do
- Show the simplest working example
- Expand with options and edge cases
- Explain the "why" after the "how"
For Tutorials
- State the goal clearly
- Show the end result first
- Build up in small, testable steps
- Explain mistakes, not just successes
Quality Checklist
Before publishing, verify:
- Opens with concrete example or scenario
- Physical analogy for key concepts
- Conversational tone throughout
- At least one moment of humor or levity
- Principles boxed or highlighted
- Code examples are minimal and runnable
- Paragraphs under 4 sentences
- Callbacks to opening
References
- techniques.md - Full technique guide with examples
- examples.md - Before/after transformations
- anti-patterns.md - Seven deadly sins of technical writing
- sources.md - Original source material
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
skill-creator
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
app-store-listing-optimizer
Optimize iOS App Store and Google Play Store listings for maximum discoverability and conversion. Perform competitive keyword research, craft keyword-optimized titles/subtitles/descriptions, design screenshot sequences, and generate A/B test variants. Use when the user has a built app and needs to write or improve their store listing, do ASO keyword research, optimize app metadata, plan screenshot strategy, or create listing variants for testing. Triggers on "optimize my app listing", "ASO", "app store optimization", "keyword research for my app", "improve my store listing", "screenshot strategy", "app store keywords", "play store listing".
app-growth-playbook
Generate platform-specific, actionable growth playbooks for mobile apps. Use when planning a Product Hunt launch, creating TikTok/Reels content strategies, setting up Apple Search Ads campaigns, preparing App Store featuring submissions, building referral loops, designing email/push re-engagement campaigns, writing Reddit launch posts, or creating content marketing plans for app growth. Provides templates, scripts, timing guides, and step-by-step processes — not generic advice.
app-creator
Orchestrate iOS/macOS app scaffolding and optional skill adoption for existing projects. Use when users want a guided wizard that can scaffold with XcodeGen and optionally install xcode-makefiles and simple-tasks.
simple-tasks
Install a fast local task workflow for single-project planning with `scripts/task.sh` (claim, done, status, reporting) backed by `tasks/TASKS.md` and optional `tasks/details/` notes. Use for lightweight in-progress task coordination, not full team issue tracking.
xcode-makefiles
Install strict Xcode Makefile tooling for iOS/macOS projects, including build/run/test scripts with AGENT_NAME-based per-agent isolation under build/. Use when a project needs reproducible local CLI builds without full app scaffolding.
Didn't find tool you were looking for?