Keeps technical documentation in sync with code changes, ensuring docs are never outdated.

Install

mkdir -p .claude/skills/docs-rune-kit && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17118" && unzip -o skill.zip -d .claude/skills/docs-rune-kit && rm skill.zip

Installs to .claude/skills/docs-rune-kit

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Auto-generate and maintain project documentation. Creates README, API docs, architecture docs, changelogs, and keeps them in sync with code changes. The \"docs are never outdated\" skill.
187 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Generate initial project documentation
  • Keep documentation in sync with code changes
  • Produce API references from code
  • Auto-generate changelogs from git history
  • Scan codebase for documentation targets
  • Update affected documentation sections based on code diffs

How it works

This skill generates and maintains project documentation by scanning the codebase, detecting changes, and updating relevant markdown files.

Inputs & outputs

You give it
A project codebase with git history
You get back
Generated or updated README.md, ARCHITECTURE.md, API.md, and CHANGELOG.md

When to use docs

  • Initialize project docs
  • Sync docs with recent code changes
  • Generate API documentation

About this skill

docs

Purpose

Documentation lifecycle manager. Generates initial project documentation, keeps docs in sync with code changes, produces API references, and auto-generates changelogs. Solves the #1 documentation problem: docs that exist but are outdated.

<HARD-GATE> Docs MUST be generated from actual code, not invented. Every statement in generated docs must be traceable to a specific file, function, or configuration in the codebase. If code doesn't exist yet, docs describe the PLAN, not the implementation. </HARD-GATE>

Triggers

  • Called by scaffold Phase 7 for initial documentation generation
  • Called by cook post-Phase 7 to update docs after feature implementation
  • Called by launch pre-deploy to ensure docs are current
  • /rune docs init — first-time documentation generation
  • /rune docs update — sync docs with recent code changes
  • /rune docs api — generate API documentation
  • /rune docs changelog — auto-generate changelog from git history

Calls (outbound)

  • scout (L2): scan codebase for documentation targets (routes, exports, components, configs)
  • doc-processor (L3): generate PDF/DOCX exports if requested
  • git (L3): read commit history for changelog generation

Called By (inbound)

  • scaffold (L1): Phase 7 — generate initial docs for new project
  • cook (L1): post-implementation — update docs for changed modules
  • launch (L1): pre-deploy — verify docs are current
  • mcp-builder (L2): generate MCP server documentation
  • User: /rune docs direct invocation

Modes

Init Mode — /rune docs init

First-time documentation generation for a project.

Update Mode — /rune docs update

Incremental sync — update only docs affected by recent code changes.

API Mode — /rune docs api

Generate or update API documentation specifically.

Changelog Mode — /rune docs changelog

Auto-generate changelog from git commit history.

Executable Steps

Init Mode

Step 1 — Scan Codebase

Invoke rune:scout to extract:

  • Project name, description, tech stack
  • Directory structure and key files
  • Entry points (main, index, app)
  • Public API surface (exports, routes, components)
  • Configuration files (.env.example, config patterns)
  • Existing docs (if any — merge, don't overwrite)

Step 2 — Generate README.md

Structure:

# [Project Name]
[One-line description]

## Quick Start
[3-5 commands to get running: install, configure, start]

## Features
[Bullet list extracted from code — routes, components, capabilities]

## Tech Stack
[Detected from package.json, requirements.txt, Cargo.toml, etc.]

## Project Structure
[Key directories with one-line descriptions]

## Configuration
[Environment variables from .env.example with descriptions]

## Development
[Dev server, test, lint, build commands]

## API Reference
[Link to API.md if applicable, or inline summary]

## License
[Detected from LICENSE file or package.json]

Step 3 — Generate ARCHITECTURE.md (if project has 10+ files)

Structure:

# Architecture

## Overview
[System diagram in text/mermaid — components and data flow]

> The ARCHITECTURE overview may call `rune:diagram` for a designed system figure (type `architecture`) instead of raw Mermaid — `suggested_next: diagram`.

## Key Decisions
[Detected patterns: framework choice, state management, DB, auth approach]

## Module Map
[Each top-level directory: purpose, key files, dependencies]

## Data Flow
[Request lifecycle or data pipeline description]

Step 4 — Generate API.md (if routes/endpoints detected)

Scan route files and extract:

  • HTTP method + path
  • Request parameters (path, query, body)
  • Response shape
  • Authentication requirements
  • Error responses

Format as markdown table or OpenAPI-compatible reference.

Step 5 — Report

Present generated docs to user with summary:

  • Files generated: [list]
  • Coverage: [what's documented vs what exists]
  • Gaps: [code areas without docs — suggest next steps]

Update Mode

Step 1 — Detect Changes

Read git diff since last docs update (tracked via git log on doc files or .rune/docs-sync.json).

Identify:

  • New files/modules → need new doc sections
  • Changed functions/routes → need doc updates
  • Deleted code → need doc removal
  • New configuration → need config doc update

Step 2 — Update Affected Sections

For each changed area:

  1. Read the changed code
  2. Find corresponding doc section
  3. Update doc to match current code
  4. If doc section doesn't exist → create it
  5. If code was deleted → remove or mark as deprecated in docs
<HARD-GATE> Never silently remove doc content. If code was deleted, mark the doc section as "Removed in [commit]" or ask user before deleting the doc section. </HARD-GATE>

Step 3 — Generate Changelog Entry

Delegate to rune:git changelog to produce a changelog entry from commits since last docs update.

Step 4 — Cross-Doc Consistency Pass

Cross-document consistency prevents the second-most-common docs problem: docs that exist but contradict each other.

After updating any doc, verify consistency across all project documentation:

CheckFilesWhat to Compare
Version numbersREADME, CLAUDE.md, package.json, CHANGELOGMust all match current version
Feature listsREADME, landing page, CLAUDE.mdSame features listed (may differ in detail level)
StatsREADME, CLAUDE.md, landing page, dashboardSkill count, test count, signal count must match
CommandsREADME, CLAUDE.md, docs/Same commands with same flags
Tech stackREADME, ARCHITECTURE.md, CLAUDE.mdConsistent framework/library references
Cross-Doc Consistency:
- [x] README.md ↔ CLAUDE.md: versions match, commands match
- [x] README.md ↔ docs/index.html: stats match, features match
- [ ] README.md says "62 skills" but CLAUDE.md says "59" → FIX CLAUDE.md

Fix inconsistencies immediately — don't just report them. Update the stale doc to match the source of truth (usually the code or the most recently updated doc).

Step 5 — Report

Show user: what was updated, what was added, what was flagged for review. Include Cross-Doc Consistency results.

API Mode

Step 1 — Detect API Framework

FrameworkRoute PatternFile Pattern
Expressrouter.get/post/put/deleteroutes/*.ts, *.router.ts
FastAPI@app.get/post/put/deleterouters/*.py, main.py
NestJS@Get/@Post/@Put/@Delete*.controller.ts
Next.js Appexport async function GET/POSTapp/**/route.ts
Next.js Pagesexport default function handlerpages/api/**/*.ts
SvelteKitexport function GET/POSTsrc/routes/**/+server.ts
Honoapp.get/post/put/deletesrc/*.ts

Step 2 — Extract Endpoints

For each detected route:

  • Method (GET, POST, PUT, DELETE, PATCH)
  • Path (with parameters highlighted)
  • Request: params, query, body shape (from Zod schemas, TypeScript types, Pydantic models)
  • Response: shape (from return type or response helper)
  • Auth: required? (detect middleware like authMiddleware, @UseGuards)
  • Description: from JSDoc/docstring if available

Step 3 — Generate API Reference

Format as markdown:

# API Reference

## Authentication
[Auth mechanism description]

## Endpoints

### `POST /api/auth/login`
**Description**: Authenticate user and return tokens
**Auth**: None
**Request Body**:
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| email | string | yes | User email |
| password | string | yes | User password |

**Response** (200):
```json
{ "token": "string", "refreshToken": "string" }

Errors:

  • 401: Invalid credentials
  • 422: Validation error

#### Step 4 — Output

Save to `docs/API.md` or project-specific location. If OpenAPI requested, generate `openapi.yaml`.

### Changelog Mode

#### Step 1 — Delegate to Git

Invoke `rune:git changelog` to group commits by type and format as Keep a Changelog.

#### Step 2 — Enhance

Add context to raw changelog:
- Link PR numbers to actual descriptions
- Group related changes under feature headers
- Highlight breaking changes prominently

#### Step 3 — Output

Append to or update `CHANGELOG.md`.

## Output Format

### Init Mode Output
Files generated in project root:
- `README.md` — Quick Start, Features, Tech Stack, Structure, Config, Dev Commands
- `ARCHITECTURE.md` — Overview diagram, Key Decisions, Module Map, Data Flow (if 10+ files)
- `docs/API.md` — Endpoint reference with method, path, params, response, auth (if routes detected)

### Update Mode Output
Modified doc sections with change summary:

Docs Update Report:

  • Updated: [list of doc sections modified]
  • Added: [new sections for new code]
  • Flagged: [stale sections referencing deleted code]
  • Changelog: [entry appended to CHANGELOG.md]

### API Mode Output
`docs/API.md` — markdown reference per endpoint:

METHOD /path/:param

Description: [from JSDoc/docstring] Auth: [required/none] Request: [params, query, body table] Response: [shape with status codes] Errors: [error codes and descriptions]


### Changelog Mode Output
`CHANGELOG.md` — Keep a Changelog format grouped by: Added, Fixed, Changed, Removed.

## Constraints

1. MUST generate docs from actual code — never invent features or APIs that don't exist
2. MUST preserve existing docs — update sections, don't overwrite entire files
3. MUST detect doc staleness — flag sections that reference deleted/changed code
4. MUST include Quick Start in every README — users need to get running in < 2 minutes
5. MUST NOT generate docs for code that doesn't exist yet (unless explicitly creating spec docs)
6. API docs MUST match actual route signatures — wrong API docs are worse than no docs

## Returns

| Artifact | Format | Location |
|----------|--------|----------|
| README.md | Markdown | project

---

*Content truncated.*

When not to use it

  • When the user needs to invent features or APIs not present in the code
  • When the user needs to generate documentation for code that does not exist yet
  • When the user needs to silently remove documentation content without user confirmation

Limitations

  • Documentation must be generated from actual code, not invented
  • Every statement in generated docs must be traceable to code
  • This skill does not silently remove doc content if code is deleted

How it compares

This workflow ensures documentation remains synchronized with the codebase, preventing outdated information common in manual documentation processes.

Compared to similar skills

docs side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
docs (this skill)03moReviewIntermediate
readme-generator39moReviewBeginner
doc-author16moNo flagsIntermediate
repo-source-code-document15moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

readme-generator

aws-samples

This skill should be used when users want to create or improve README.md files for their projects. It generates professional documentation following the Deep Insight/Strands SDK style - comprehensive yet focused, with clear structure and practical examples.

339

doc-author

mintlify

Write and maintain documentation autonomously. Use when assigned to create, update, or improve documentation without direct human oversight. Always opens PRs for review. Built by Mintlify.

15

repo-source-code-document

open-circle

Write JSDoc comments and inline documentation for Valibot library source code in /library/src/. Use when documenting schemas, actions, methods, or utilities. Covers interface documentation, function overloads, purity annotations, inline comment patterns, and terminology consistency.

14

doc

Sei-Yukinari

コードからドキュメント(JSDoc、README、API仕様等)を生成する

00

korean-skill-creator

clwmfksek

한글 기반 클로드 스킬 자동 생성 도구. 사용자가 "클로드 스킬을 만들어줘" 또는 "[요구사항] 스킬 만들어줘"라고 요청할 때 사용. Progressive disclosure 원칙을 따르는 한글 문서 구조(SKILL.md + references/)를 자동으로 생성하고, 실전 예시를 포함한 일관성 있는 스킬 템플릿을 제공.

8132

skill-forge

WilliamSaysX

Automated skill creation workshop with intelligent source detection, smart path management, and end-to-end workflow automation. This skill should be used when users want to create a new skill or convert external resources (GitHub repositories, online documentation, or local directories) into a skill. Automatically fetches, organizes, and packages skills with proactive cleanup management.

11115

Search skills

Search the agent skills registry