Skip to content

Releases: nidhal-saadaoui/code-to-docs-skill

v1.0.0 — Initial release

07 Jun 20:57

Choose a tag to compare

code-to-docs v1.0.0

First release of the code-to-docs Claude Code skill.

What it does

Generates and updates documentation from an existing codebase using only Claude Code's built-in tools — no setup, no external dependencies.

Subcommands

Subcommand Output Description
readme README.md Project overview, quick start, usage, config
arch ARCHITECTURE.md System design, component diagram, data flow
api docs/api.md API reference from routes, functions, or schemas
onboard ONBOARDING.md Contributor setup, test commands, project layout
deployment DEPLOYMENT.md Build, deploy, env vars, health check, rollback
adr docs/adr/NNN-title.md One Architecture Decision Record per major choice
update edits existing docs Incremental update scoped to the current feature branch

Installation

git clone https://github.com/nidhal-saadaoui/code-to-docs-skill.git ~/.claude/skills/code-to-docs

Highlights

  • Detects 10 tech stacks from manifest files
  • Reads and extends existing docs rather than overwriting
  • Asks at most 3 clarifying questions before writing (5 for ADRs)
  • update uses git diff main...HEAD to scope changes to the current branch
  • Supports custom output directories and GitHub Wiki format
  • 12 eval cases covering all subcommands and output options