Skip to content
OpenSmartRoute
Skillv1.0.0

technical-writing

Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles.

by proffesor-for-testing(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from proffesor-for-testing/agentic-qe (.claude/skills/technical-writing/SKILL.md). Install upstream with npx skills add proffesor-for-testing/agentic-qe --skill technical-writing. Copyright stays with the author.

Technical Writing

<default_to_action> When writing technical content:

  1. LEAD with value (what will reader learn/gain?)
  2. SHOW, don't tell (specific examples, code, numbers)
  3. STRUCTURE for scanning (headers, bold, short paragraphs)
  4. CUT ruthlessly (every sentence must earn its place)
  5. BE honest about trade-offs

Blog Post Structure:

# Title (specific promise)

## Opening (2-3 paragraphs)
- Hook: The problem or insight
- Context: Why this matters
- Promise: What they'll learn

## Body (3-5 sections)
- One clear idea per section
- Support with examples/code/data

## Closing
- Key takeaway (1-2 sentences)
- Action reader can take

Before/After: ❌ "We implemented a comprehensive testing strategy..." ✅ "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement." </default_to_action>

Quick Reference Card

Core Principles

Principle Bad Good
Lead with value "In today's landscape..." "Here's how we cut bugs 60%"
Show, don't tell "We improved testing" "Bug detection: 12→47 per sprint"
Be specific "Performance improved" "Response time: 2.3s→180ms"
Honest trade-offs "This approach is best" "TDD slowed velocity 20%, reduced bugs 75%"

Words to Cut

Kill Reason
basically, actually, probably Hedge words
leverage, synergy, paradigm Corporate speak
very, really, quite Unnecessary qualifiers
it should be noted that Just note it

Audience-Specific Writing

For Developers

  • Lead with code or concrete problem
  • Show implementation details
  • Discuss trade-offs and alternatives
  • Link to repos or examples

For QA/QE

  • Start with testing challenge
  • Show strategy, not just tools
  • Include risk assessment
  • Provide adaptable heuristics

For Leadership

  • Open with business impact
  • Use metrics that matter
  • Connect technical to outcomes
  • Keep technical details concise

Editing Checklist

Before publishing:

  • Title promises something specific
  • Opening hooks in 30 seconds
  • Claims backed by examples
  • All unnecessary words cut
  • Code examples tested and correct
  • Takeaway crystal clear
  • Would send to respected colleague

Example Transformations

Before: "We decided to implement a more comprehensive testing strategy that would allow us to catch bugs earlier in the development lifecycle."

After: "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement, identifying risks before code is written."


Before: "The benefits of this approach are numerous and include improved quality, faster feedback loops, and better team collaboration."

After: "Three outcomes: bugs found 2 days earlier on average, 30% fewer regression issues, and devs now ask QE for input during design."


Agent Integration

// Generate documentation from code
const docs = await Task("Generate Docs", {
  source: 'src/services/PaymentService.ts',
  format: 'markdown',
  includeExamples: true
}, "qe-quality-analyzer");

// Review documentation quality
const review = await Task("Review Docs", {
  files: ['README.md', 'docs/api.md'],
  checkClarity: true,
  checkCodeExamples: true
}, "qe-quality-analyzer");

Agent Coordination Hints

Memory Namespace

aqe/technical-writing/
├── generated-docs/*   - Auto-generated documentation
├── reviews/*          - Documentation review findings
└── templates/*        - Reusable doc templates

Fleet Coordination

const docsFleet = await FleetManager.coordinate({
  strategy: 'documentation',
  agents: [
    'qe-quality-analyzer',         // Generate and review
    'qe-api-contract-validator'    // API doc accuracy
  ],
  topology: 'sequential'
});

Related Skills


Remember

You're not writing to impress. You're writing to help people solve problems you've already solved. Be the colleague you wish you'd had.

Write from experience. Only write about what you've done in production. If exploring, say so.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/proffesor-for-testing-agentic-qe-technical-writing/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

proffesor-for-testing-agentic-qe-technical-writing.ocm.jsonjson
{
  "ocm": "1",
  "id": "proffesor-for-testing-agentic-qe-technical-writing",
  "kind": "skill",
  "name": "technical-writing",
  "description": "Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles.",
  "publisher": "proffesor-for-testing",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "writing",
      "documentation",
      "communication",
      "blogs",
      "tutorials",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/proffesor-for-testing/agentic-qe",
      "path": ".claude/skills/technical-writing/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/proffesor-for-testing/agentic-qe/blob/HEAD/.claude/skills/technical-writing/SKILL.md",
      "key": "proffesor-for-testing/agentic-qe/.claude/skills/technical-writing/SKILL.md"
    }
  },
  "instructions": "# Technical Writing\n\n<default_to_action>\nWhen writing technical content:\n1. LEAD with value (what will reader learn/gain?)\n2. SHOW, don't tell (specific examples, code, numbers)\n3. STRUCTURE for scanning (headers, bold, short paragraphs)\n4. CUT ruthlessly (every sentence must earn its place)\n5. BE honest about trade-offs\n\n**Blog Post Structure:**\n```markdown\n# Title (specific promise)\n\n## Opening (2-3 paragraphs)\n- Hook: The problem or insight\n- Context: Why this matters\n- Promise: What they'll learn\n\n## Body (3-5 sections)\n- One clear idea per section\n- Support with examples/code/data\n\n## Clo",
  "cost": {
    "context_tokens": 1080
  }
}

Fetch it by URL: GET /api/v1/registry/proffesor-for-testing-agentic-qe-technical-writing/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.