Source profileQuality 96/100

travisjneuman/.claude/skills/codebase-documenter/SKILL.md

codebase-documenter

This skill should be used when writing documentation for codebases, including README files, architecture documentation, code comments, and API documentation. Use this skill when users request help documenting their code, creating getting-started guides, explaining project structure, or making codebases more accessible to new developers. The skill provides templates, best practices, and structured approaches for creating clear, beginner-friendly documentation.

Source repository stars
94
Declared platforms
0
Static risk flags
1
Last source update
2026-08-13
Source checked
2026-08-25

Decision brief

What it does: where it fits

Create comprehensive, beginner-friendly documentation for any codebase.

Best for

  • Writing or updating README files
  • Creating architecture documentation
  • Adding meaningful code comments

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/travisjneuman/.claude --skill "skills/codebase-documenter"
Safe inspection promptEditorial

Inspect the Agent Skill "codebase-documenter" from https://github.com/travisjneuman/.claude/blob/b8b4dd55d61b9f25d33e3b5427870641a1c8c39c/skills/codebase-documenter/SKILL.md at commit b8b4dd55d61b9f25d33e3b5427870641a1c8c39c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Documentation Workflow

    1. Analyze - Entry points, dependencies, core concepts, configuration 2. Choose Type - README → Architecture → API → Comments 3. Generate - Use templates, customize for project 4. Verify - Read as beginner, test examples

    Analyze - Entry points, dependencies, core concepts, configurationChoose Type - README → Architecture → API → CommentsGenerate - Use templates, customize for project
  2. 02

    Quick Start

    Review the “Quick Start” section in the pinned source before continuing.

    Review and apply the “Quick Start” source section.
  3. 03

    Verification Workflow

    After writing documentation:

    Fresh Eyes Test - Read as if you've never seen the codebaseRun Examples - Copy-paste and verify they workCheck Links - All internal/external links resolve
  4. 04

    When to Use

    Writing or updating README files

    Writing or updating README filesCreating architecture documentationAdding meaningful code comments

Permission review

Static risk signals and limitations

Reads files

low · line 184

The documentation asks the agent to read local files, directories, or repositories.

**Fresh Eyes Test** - Read as if you've never seen the codebase

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score96/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars94SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
travisjneuman/.claude
Skill path
skills/codebase-documenter/SKILL.md
Commit
b8b4dd55d61b9f25d33e3b5427870641a1c8c39c
License
MIT
Collected
2026-08-25
Default branch
master
View the original SKILL.md

Codebase Documenter

Create comprehensive, beginner-friendly documentation for any codebase.

When to Use

Use for:

  • Writing or updating README files
  • Creating architecture documentation
  • Adding meaningful code comments
  • Documenting APIs and endpoints
  • Creating getting-started guides
  • Explaining project structure

Don't use when:

  • Code review → use generic-code-reviewer
  • UX design decisions → use generic-ux-designer
  • Adding code features → use generic-feature-developer

Core Principles

  1. Start with "Why" - Explain purpose before implementation
  2. Progressive Disclosure - Simple to complex
  3. Provide Context - Why code exists, not just what it does
  4. Include Examples - Concrete usage for every concept
  5. Assume No Prior Knowledge - Define terms, avoid jargon
  6. Visual Aids - Diagrams, file trees, flowcharts
  7. Quick Wins - Get something running in 5 minutes

Documentation Workflow

  1. Analyze - Entry points, dependencies, core concepts, configuration
  2. Choose Type - README → Architecture → API → Comments
  3. Generate - Use templates, customize for project
  4. Verify - Read as beginner, test examples

Documentation Types

README (Project Entry Point)

# Project Name

## What This Does

[1-2 sentence explanation]

## Quick Start

[< 5 minute setup]

## Project Structure

[Visual file tree]

## Key Concepts

[Core abstractions]

## Common Tasks

[Step-by-step guides]

Architecture Documentation

# Architecture Overview

## System Design

[High-level diagram]

## Data Flow

[How data moves through system]

## Key Design Decisions

[Why certain choices were made]

## Extension Points

[Where to add new features]

Code Comments

// ✅ GOOD - Explains WHY and context
// IndexedDB quota check: Prevents silent failures when storage is full.
// Without this, writes fail with cryptic QuotaExceededError.
if (quota.percentUsed > 80) showStorageWarning();

// ❌ BAD - Just repeats what code does
// Check if quota is over 80

API Documentation

## Endpoint: POST /api/resource

### What It Does

[Plain-English purpose]

### Request/Response

[JSON examples]

### Common Errors

[Error codes and meanings]

Visual Patterns

File Tree

project/
├── src/                    # Source code
│   ├── components/        # Reusable UI
│   ├── services/          # Business logic
│   └── types/             # TypeScript types
├── tests/                 # Test files
└── package.json           # Dependencies

Data Flow

User Request Flow:
1. User submits → 2. Validation → 3. API → 4. Database → 5. Response

[1] components/Form.tsx
    ↓ validates
[2] services/validation.ts
    ↓ calls API
[3] services/api.ts
    ↓ queries
[4] Database
    ↓ returns
[5] Form.tsx (updates UI)

Design Decision (ADR)

## Why We Use [Technology]

**Decision:** [What we chose]
**Context:** [Why we needed to choose]
**Reasoning:** [Why this option]
**Trade-offs:** [What we gave up]

Documentation Quality Checklist

Before Publishing

  • Quick start works in < 5 minutes
  • Code examples are copy-pasteable
  • File paths are accurate
  • Links work
  • Jargon is defined
  • Diagrams are included for complex flows

Common Mistakes to Avoid

  • Assuming reader knows the codebase
  • Outdated code examples
  • Missing prerequisites
  • No visual aids for complex systems
  • Explaining "what" without "why"

Verification Workflow

After writing documentation:

  1. Fresh Eyes Test - Read as if you've never seen the codebase
  2. Run Examples - Copy-paste and verify they work
  3. Check Links - All internal/external links resolve
  4. Beginner Review - Would a new developer understand?
  5. Update Check - Does it reflect current code?

See Also

Frequently asked questions

What to verify before installation and use

What does the codebase-documenter source document cover?

Create comprehensive, beginner-friendly documentation for any codebase.

How do I install codebase-documenter?

The source record exposes this install command: npx skills add https://github.com/travisjneuman/.claude --skill "skills/codebase-documenter". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged read-files in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 100147

oaustegard/claude-skills

featuring

Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre

Computed 9916

NintendaDev/unikit-ai

unikit-docs

Generate and maintain the project's TECHNICAL documentation from its codebase — scans the project structure, tech stack, and module boundaries, then writes a lean README landing page plus detailed topic pages (architecture, modules, setup, build, APIs), only the docs that are relevant. Use whenever the user wants to create, update, or validate documentation of the CODE or the project itself, e.g. "generate documentation", "create docs", "write the README", "update the project docs", "document th

Computed 976

mgiovani/cc-arsenal

team-review

Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r

Computed 96156

open-edge-platform/edge-ai-libraries

chatqna-helm-deploy

Deploy Chat Question-and-Answer Core to Kubernetes using Helm (OpenVINO CPU, OpenVINO GPU, or Ollama), including values.yaml configuration, helm install/upgrade, deployment verification, uninstall, and translation from Docker Compose setup_env.sh variables into Helm override values. Use this skill when the user says "deploy chatqna core to kubernetes", "helm install chatqna-core", "configure values.yaml", "convert compose config to helm", or "translate setup_env.sh to chart values".