GitHunt
NO

nothingtosurprise/dev-docs-suite

Claude Skill that generates post-mortems, ADRs, API docs & onboarding guides in seconds

๐Ÿ› ๏ธ dev-docs-suite โ€” Claude Skill

Generate professional developer documents in seconds. No more staring at a blank page.

A Claude Skill that handles the four most time-consuming documents in software development โ€” from minimal input, with consistent structure every time.


What it does

Just say... You get...
"Write a post-mortem for last night's outage" Full incident report with timeline, root cause, action items
"Create an ADR for switching to PostgreSQL" Architecture Decision Record with alternatives compared
"Document our /users API endpoint" Complete API contract with request/response examples, error codes
"Write onboarding docs for the new engineer joining Monday" Full developer onboarding guide with setup steps and gotchas

Claude reads the context, picks the right doc type, asks minimal follow-up questions, and produces a complete, copy-paste-ready Markdown document.


Install as a Claude Skill

Option 1 โ€” Upload directly (Claude.ai)

  1. Download dev-docs-suite.zip
  2. Go to Claude.ai โ†’ Settings โ†’ Capabilities โ†’ Skills
  3. Click Upload skill and select the zip

Option 2 โ€” Connect via MCP (Claude Code / any MCP client)

Use gitMCP.io to turn this repo into a live MCP server instantly:

{
  "mcpServers": {
    "dev-docs-suite": {
      "url": "https://gitmcp.io/yourusername/dev-docs-suite"
    }
  }
}

No server to run. No API key. Just point and connect.


Repo structure

dev-docs-suite/          โ† The actual skill folder (upload this)
โ”œโ”€โ”€ SKILL.md             โ† Skill instructions + trigger logic
โ””โ”€โ”€ references/
    โ”œโ”€โ”€ post-mortem.md   โ† Incident report template
    โ”œโ”€โ”€ adr.md           โ† Architecture Decision Record template
    โ”œโ”€โ”€ api-contract.md  โ† API documentation template
    โ””โ”€โ”€ onboarding.md    โ† Developer onboarding guide template
README.md                โ† You're here (not part of the skill)
llms.txt                 โ† AI-readable summary for MCP/gitMCP

Supported document types

๐Ÿ“‹ Post-Mortem / Incident Report

Structured incident report with impact metrics, full timeline, root cause analysis, contributing factors, and action items with owners and due dates. Blameless by design.

๐Ÿ›๏ธ Architecture Decision Record (ADR)

Captures what was decided, why, and what alternatives were rejected. Follows the standard ADR format. Numbered and statusable (Proposed / Accepted / Deprecated / Superseded).

๐Ÿ“ก API Contract Documentation

Full endpoint documentation with path/query/body parameters, request/response examples, error codes, and a changelog. Structured for developer consumption.

๐Ÿš€ Developer Onboarding Guide

Everything a new engineer needs to go from zero to productive: prerequisites, setup steps, env var table, common tasks, codebase conventions, gotchas, ownership map, and a personal onboarding checklist.


Example usage

You: We had a database outage yesterday from 2pm to 3pm. The connection pool hit its limit
     after a bad deploy. About 2,000 users were affected. Write a post-mortem.

Claude: [reads references/post-mortem.md, asks 2 follow-up questions, produces full report]
You: Document our POST /orders endpoint. It takes a user_id, items array, and shipping_address.
     Returns an order object. Can fail with 400, 401, 404, 429.

Claude: [reads references/api-contract.md, generates complete API doc with examples]

Contributing

PRs welcome! Especially:

  • New document type templates (RFCs, changelogs, runbooks)
  • Improvements to existing templates
  • Additional trigger phrases in SKILL.md

See CONTRIBUTING.md for guidelines.


License

MIT โ€” free to use, modify, and distribute.