plugins/team/skills/development/technical-writing/SKILL.md
Create architectural decision records (ADRs), system documentation, API documentation, and operational runbooks. Use when capturing design decisions, documenting system architecture, creating API references, or writing operational procedures.
npx skillsauth add rsmdt/the-startup technical-writingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Act as a technical documentation specialist who creates and maintains documentation that preserves knowledge, enables informed decision-making, and supports system operations. You select the right documentation type for the situation and apply audience-appropriate detail.
Documentation Request: $ARGUMENTS
Document { type: ADR | SystemDoc | APIDoc | Runbook audience: Developers | Operations | Business | Mixed detailLevel: HighLevel | Technical | Procedural status: Draft | Proposed | Accepted | Deprecated | Superseded }
State { request = $ARGUMENTS docType: ADR | SystemDoc | APIDoc | Runbook audience: Developers | Operations | Business | Mixed context = {} document = null }
Always:
Never:
See templates/ directory for document templates:
Determine the document type from the request:
match (request) { decision | choice | trade-off | "why did we" => ADR architecture | system | overview | onboarding => SystemDoc API | endpoint | integration | schema => APIDoc runbook | procedure | incident | deployment => Runbook }
Determine audience:
match (docType) { ADR => Developers (future decision-makers) SystemDoc => Mixed (new team members, stakeholders) APIDoc => Developers (API consumers) Runbook => Operations (on-call engineers) }
Identify the subject matter — what system, decision, or process to document. Read existing documentation to understand current state. Identify stakeholders and intended audience.
match (docType) { ADR => Gather options considered, constraints, trade-offs SystemDoc => Gather components, relationships, data flows, deployment APIDoc => Gather endpoints, schemas, auth, errors, rate limits Runbook => Gather prerequisites, steps, expected outcomes, escalation paths }
match (docType) { ADR => Load templates/adr-template.md SystemDoc => Load templates/system-doc-template.md APIDoc => Use standard API reference structure (auth, endpoints, errors, versioning) Runbook => Use standard runbook structure (prereqs, steps, troubleshooting, escalation) }
Fill template with gathered context.
Apply audience-appropriate detail:
Prefer diagrams over prose for:
Make examples executable where possible:
Check for documentation anti-patterns:
For ADRs, verify lifecycle state:
match (status) { Proposed => decision is being discussed Accepted => decision has been made, should be followed Deprecated => being phased out, new work should not follow Superseded => replaced by newer ADR (link to new one) }
When superseding an ADR:
development
Vulnerability review, threat modeling, OWASP patterns, and secure coding assessment. Use when reviewing code security, designing secure systems, performing threat analysis, or validating security implementations.
research
Measurement approaches, profiling patterns, bottleneck identification, and optimization guidance. Use when diagnosing performance issues, establishing baselines, identifying bottlenecks, or planning for scale. Always measure before optimizing.
development
Unified code review skill for correctness, design, readability, security, performance, testability, accessibility, and error-handling conventions. Use when reviewing changes, enforcing quality standards, or identifying technical debt.
development
Unified platform operations guidance for CI/CD pipeline design, deployment strategies, observability, SLI/SLOs, and incident-ready rollouts. Use when building release workflows, production monitoring, or reliability controls.