awslabs/agent-plugins/plugins/codebase-documentor-for-aws/skills/document-service/SKILL.md
document-service
This skill should be used when the user asks to "analyze this codebase", "document this service", "generate technical docs", "I inherited this code", "help me understand this system", "create docs for this project", "what does this system look like", "onboard me to this codebase", "this codebase has no docs", "visualize the architecture from code", or any explicit request to produce structured documentation or architecture diagrams from an existing codebase. Specifically optimized for AWS worklo
- Source repository stars
- 868
- Declared platforms
- 0
- Static risk flags
- 2
- Last source update
- 2026-08-25
- Source checked
- 2026-08-25
Decision brief
What it does: where it fits
Analyze codebases to produce structured technical documentation and architecture diagrams with source-of-truth citations. Every finding links back to the exact file and line it was derived from. Optimized for AWS workloads but works with any codebase.
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
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
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.
npx skills add https://github.com/awslabs/agent-plugins --skill "plugins/codebase-documentor-for-aws/skills/document-service"Inspect the Agent Skill "document-service" from https://github.com/awslabs/agent-plugins/blob/a35c295c62452468446d3a3fa7e2590cd27474ab/plugins/codebase-documentor-for-aws/skills/document-service/SKILL.md at commit a35c295c62452468446d3a3fa7e2590cd27474ab. 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
- 01
Workflow
The workflow runs autonomously from Step 2 onward. Step 1 is the only interactive step.
Target directory or service to analyzeAny existing documentation, design docs, or business context (accept "nothing" — this skill is designed for undocumented codebases)List all files recursively in the target directory - 02
Step 1: Gather Context
If existing docs are provided, read them first to establish baseline context. If the target directory and context are already known (e.g., provided via automation or a pre-configured prompt), skip the interactive step and proceed directly to Step 2.
Target directory or service to analyzeAny existing documentation, design docs, or business context (accept "nothing" — this skill is designed for undocumented codebases)- Target directory or service to analyze - Any existing documentation, design docs, or business context (accept "nothing" — this skill is designed for undocumented codebases) - 03
Step 2: Build File Tree and Detect Project Type
1. List all files recursively in the target directory 2. Apply exclusion patterns from exclusion-patterns.md. Also respect .gitignore. 3. Detect project type and framework from characteristic files. See discovery-patterns.md. 4. Identify entry points based on detected project ty…
List all files recursively in the target directoryApply exclusion patterns from exclusion-patterns.md. Also respect .gitignore.Detect project type and framework from characteristic files. See discovery-patterns.md. - 04
Step 3: Generate Documentation Outline
Produce a hierarchical outline mapping each documentation section to specific source files:
Produce a hierarchical outline mapping each documentation section to specific source files: - 05
Step 4: Analyze
Two core analysis paths:
API and service definitions — route handlers, controllers, gRPC services, GraphQL resolversData model definitions — database schemas, ORM models, type definitionsInternal dependencies — imports between modules, shared utilities, event handlers
Permission review
Static risk signals and limitations
Reads files
The documentation asks the agent to read local files, directories, or repositories.
**Every claim must be traceable.** Include `file:line` citations for every finding. See [citation-format.md](references/citation-format.md). Verify citations precisely — re-read the cited file and confirm the line number is within ±3 lines.Reads files
The documentation asks the agent to read local files, directories, or repositories.
**First pass** — scan file structure and entry points to understand scopeWrites files
The documentation asks the agent to create, modify, or delete local files.
**Primary: tracked sequential analysis.** Create a `.codebase-documentor-progress.md` task board to track progress through sections, enabling resumability if interrupted. This works on all platforms (Claude Code, Cursor, Codex, or any codinWrites files
The documentation asks the agent to create, modify, or delete local files.
Remove `.codebase-documentor-progress.md` if it was created during analysisEvidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 868 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- awslabs/agent-plugins
- Skill path
- plugins/codebase-documentor-for-aws/skills/document-service/SKILL.md
- Commit
- a35c295c62452468446d3a3fa7e2590cd27474ab
- License
- Apache-2.0
- Collected
- 2026-08-25
- Default branch
- main
View the original SKILL.md
Document Service
Analyze codebases to produce structured technical documentation and architecture diagrams with source-of-truth citations. Every finding links back to the exact file and line it was derived from. Optimized for AWS workloads but works with any codebase.
Core Principles
- Explain WHY, not just WHAT. The reader inherited this codebase and has zero context. Listing components is not enough — explain why the architecture is shaped this way. Search for code comments, TODOs, and commit messages that reveal design rationale. When no rationale exists, mark it
[RATIONALE UNKNOWN]. - Trace end-to-end flows. For every API endpoint or message handler, trace the complete request path from entry to response. Note every intermediate step, transformation, timeout, and failure point. This is the "if it breaks at 3am, where do I look?" analysis.
- Deep-dive complex logic. Identify the most complex or domain-specific code paths (ML pipelines, business rule engines, state machines, custom algorithms). Document HOW they work at the implementation level — the algorithm, key parameters, edge cases, and where production bugs will occur. Surface-level summaries of complex code provide no value over a naive AI prompt.
- Surface implicit knowledge. Look for hardcoded values, magic numbers, environment-dependent behavior, and undocumented assumptions. These are the tribal knowledge items that disappear when teams leave.
- Every claim must be traceable. Include
file:linecitations for every finding. See citation-format.md. Verify citations precisely — re-read the cited file and confirm the line number is within ±3 lines. Anchor with function/variable names. - Code is the source of truth. Document what actually exists in code, not what READMEs or wikis claim. Flag every discrepancy between documentation and reality.
- Mark unknowns and risks explicitly. Use
[UNKNOWN]for items not inferable from code,[RISK]for unhandled failure modes,[INFERRED]for educated guesses,[RATIONALE UNKNOWN]for unexplained architecture choices. Omitting markers undermines trust. - Verify quantitative claims. List directory entries programmatically and use exact counts.
Workflow
The workflow runs autonomously from Step 2 onward. Step 1 is the only interactive step.
Step 1: Gather Context
Gather from the user:
- Target directory or service to analyze
- Any existing documentation, design docs, or business context (accept "nothing" — this skill is designed for undocumented codebases)
If existing docs are provided, read them first to establish baseline context. If the target directory and context are already known (e.g., provided via automation or a pre-configured prompt), skip the interactive step and proceed directly to Step 2.
Check whether CODEBASE_ANALYSIS.md already exists at the output path. If so, ask the user: "Overwrite or write to a different filename?" Resolve this before proceeding — the rest of the workflow runs autonomously.
Step 2: Build File Tree and Detect Project Type
- List all files recursively in the target directory
- Apply exclusion patterns from exclusion-patterns.md. Also respect
.gitignore. - Detect project type and framework from characteristic files. See discovery-patterns.md.
- Identify entry points based on detected project type. See discovery-patterns.md.
- Read the README, CLAUDE.md, or AGENTS.md if present — these contain project context.
- Check git branch names (
git branch -a) for strategic context (e.g., adev/rustbranch signals a language migration in progress). Note active branches in the Architecture Overview.
Step 3: Generate Documentation Outline
Produce a hierarchical outline mapping each documentation section to specific source files:
## Documentation Outline
1. Architecture Overview → [entry points, IaC stack files] — explain WHY, not just WHAT
2. [Module A: detected name] → [source files for module A]
3. [Module B: detected name] → [source files for module B]
4. Shared Utilities → [shared/common source files]
5. Request Lifecycle → [trace end-to-end flows through the system]
6. Domain Logic Deep-Dive → [core services at implementation level: algorithms, parameters, edge cases]
7. Startup and Initialization → [boot sequence, model loading, cache warmup, dependency checks]
8. API Contracts → [route definitions, OpenAPI specs]
9. Data Models → [schema files, ORM models]
10. Deployment → [IaC files, Dockerfiles]
11. Configuration → [config files, .env.example, prompt templates, YAML configs, secrets refs]
12. Monitoring and Observability → [log groups, metrics, tracing, alarms, dashboards]
13. Security → [auth, encryption, IAM, network isolation]
14. Local Development → [how to run/test locally, CPU fallback, dev environment setup]
15. Discrepancies → (cross-reference README/metadata vs actual code)
16. Failure Modes → (cross-cutting — include detection + recovery)
17. Timeout and Dependency Chain → (map cascading timeouts across layers)
Follow the section structure in technical-doc-template.md but adapt to the actual codebase — add sections for significant modules, skip sections that don't apply. Aim for balance: each section should map to a meaningful subset of files. If a module maps to more than ~30 files, consider splitting it into sub-sections.
Do NOT pause for user review. Proceed immediately to analysis.
Step 4: Analyze
Two core analysis paths:
Path A: Application Code
For each outline section, read mapped source files and extract:
- API and service definitions — route handlers, controllers, gRPC services, GraphQL resolvers
- Data model definitions — database schemas, ORM models, type definitions
- Internal dependencies — imports between modules, shared utilities, event handlers
- External integrations — SDK clients, HTTP calls, queue producers/consumers
- Configuration — environment variables, feature flags, secrets references
Consult framework-patterns.md for framework-specific extraction patterns.
Path B: Infrastructure-as-Code
When IaC files are detected (CDK, CloudFormation, Terraform, Serverless Framework):
- Parse resource definitions. Identify AWS resource types, relationships, and networking topology.
- Map infrastructure to application components that use them.
- Extract networking topology — VPCs, subnets, security groups.
- Consult MCP servers — use
awsiacto confirm resource interpretations,awsknowledgefor service descriptions.
When no IaC is found, infer infrastructure from application code (SDK clients, connection strings, environment variables) and mark components as [INFERRED].
Note on CDK projects: In CDK codebases, the IaC IS application code (TypeScript/Python constructs). Process CDK files in a single pass covering both Path A and Path B rather than treating them as separate analyses. Extract both the resource definitions (Path B) and the application logic interleaved with them (Lambda bundling, environment wiring, IAM grants — Path A) simultaneously.
Writing Sections
For each outline section:
- Re-read mapped source files for exact line numbers — do not rely on memory from earlier steps.
- Use grep for patterns — route definitions, model declarations, error handlers.
- Write content with inline citations. See citation-format.md.
- Document every source file. Enumerate ALL non-generated source files. Every file should appear somewhere in the documentation — in a module table, component table, or at minimum a file inventory. Files that define symbols never imported by any execution path should be flagged as
[UNUSED]potential dead code. - Analyze the test suite. Document what tests verify, what coverage gaps exist, and how to interpret test failures. Tests reveal expected behavior and edge cases.
Process cross-cutting sections (Failure Modes, Configuration, Security, Discrepancies) last, drawing on accumulated knowledge.
Discrepancy detection: After analyzing the codebase, re-read the README, CLAUDE.md, package.json description, and any project metadata. Flag every claim that does not match the actual code — features referenced but not implemented, resource types that differ, architecture components that don't exist. For legacy codebases, this "trust but verify" pass is the single most valuable output.
Actionable failure modes: For each failure mode, include the detection method (CloudWatch metric, log pattern, symptom) and recovery steps (actual commands), not just a description. The reader is an on-call engineer at 3am.
Deep Analysis Approach
Do not attempt a single-pass skim. For each module or service, use iterative deepening:
- First pass — scan file structure and entry points to understand scope
- Second pass — read core files, identify questions (what calls this? where is this configured? what happens on error?)
- Third pass — search for answers to those questions across the codebase, trace cross-module dependencies
- Write — only write the section after all three passes. Re-read cited files to verify exact line numbers.
Large Codebase Strategy
For codebases with multiple top-level modules, deep nesting, or hundreds of source files:
- Primary: tracked sequential analysis. Create a
.codebase-documentor-progress.mdtask board to track progress through sections, enabling resumability if interrupted. This works on all platforms (Claude Code, Cursor, Codex, or any coding assistant). - Acceleration: parallel workers. If the environment supports spawning parallel agents, assign outline sections to independent workers. Each worker reads its mapped files and produces section content with citations. Keep Architecture Overview and cross-cutting sections in the main session for assembly.
See recursive-analysis.md for detailed instructions on both approaches.
Step 5: Generate Diagrams
Two types of diagrams serve different purposes:
Sequence/flow diagrams — inline Mermaid. For request lifecycle traces and data pipeline flows identified in Step 4, generate Mermaid sequenceDiagram or flowchart blocks inline in the relevant CODEBASE_ANALYSIS.md sections. Mermaid is the community standard for simple flow diagrams and renders natively on GitHub. Keep these focused — one diagram per major request path or data flow.
Architecture diagram — always attempt the aws-architecture-diagram skill first. For the system-level architecture diagram (services, infrastructure, boundaries): invoke the aws-architecture-diagram skill (part of the deploy-on-aws plugin) with "analyze [target-directory]" to trigger Mode A. It produces a validated draw.io diagram (docs/*.drawio) with official AWS4 icons and professional styling. Only if the skill is genuinely unavailable (not installed, invocation fails), fall back to a Mermaid flowchart TD architecture overview directly in the Architecture Overview section. Include all major services, data stores, external dependencies, and infrastructure boundaries (VPC/subnets as subgraphs when IaC is present).
After diagram generation, try to export to PNG for embedding in the report. Run drawio -x -f png -b 10 -o docs/<name>.drawio.png docs/<name>.drawio. If drawio is not on PATH, skip the PNG export — the report will link to the .drawio file directly instead of embedding an image.
Cross-reference the diagram against the Architecture Overview text. Update documentation or diagram if they diverge.
Step 6: Assemble and Deliver
-
Assemble all sections into
CODEBASE_ANALYSIS.mdfollowing technical-doc-template.md -
Embed the architecture diagram as an image with a link to the editable source:
 > Editable source: [`docs/<name>.drawio`](./docs/<name>.drawio)If PNG export was not possible, link to the
.drawiofile directly. Mermaid flow diagrams go inline in relevant sections. -
When the codebase reveals clear business capabilities (API contracts, domain models, data flows, SLA configs), include a Business Context section at the end of
CODEBASE_ANALYSIS.mdfollowing business-context.md. Skip only for pure libraries or infrastructure-only code. Do NOT include speculative content — but a README describing the product IS sufficient business context. -
Tag items not inferable from code with
[UNKNOWN] -
Write
CODEBASE_ANALYSIS.mdto the target directory -
Remove
.codebase-documentor-progress.mdif it was created during analysis -
Present summary: components documented, APIs found, unknowns tagged, citations included
Output Files
| File | Purpose |
|---|---|
CODEBASE_ANALYSIS.md | Single output — technical docs, business context, citations, and flow diagrams |
docs/*.drawio | Architecture diagram source (editable in draw.io) |
docs/*.drawio.png | Architecture diagram image (embedded in report, if CLI export available) |
Defaults
| Setting | Default | Override |
|---|---|---|
| Primary output | CODEBASE_ANALYSIS.md | - |
| Flow diagrams | Mermaid inline (sequenceDiagram / flowchart) | "skip diagrams" |
| Architecture diagram | draw.io via aws-architecture-diagram skill (Mermaid fallback if missing) | "skip diagrams" |
| IaC reading | Read-only (never modify) | - |
| AWS enrichment | Enabled when AWS services detected | "skip AWS" |
| Scope | User-specified directory | - |
Error Handling
See error-scenarios.md for handling of empty directories, missing entry points, missing IaC, existing output files, and MCP server failures.
MCP Servers
awsknowledge
Consult when AWS services are detected. Use for enrichment (adding official service descriptions and documentation links to CODEBASE_ANALYSIS.md) and validation (confirming the analysis interpretation is correct). When the codebase is self-explanatory, validation is more valuable than enrichment — do not add MCP content just because the server is available.
Example queries: search for "Amazon ECS on EC2 GPU instances" to confirm GPU support patterns, or read the official service page for an unfamiliar AWS service to get a one-line description.
awsiac
Consult when CDK or CloudFormation files are detected. Use primarily for validation — confirm that the interpretation of a construct or resource type matches its actual behavior. Particularly useful for complex constructs with non-obvious defaults.
Example queries: confirm properties of ecs.FargateService vs ecs.Ec2Service or verify CloudFormation resource relationships. Terraform files are still analyzed by the skill itself (see discovery-patterns.md IaC Detection), just without this MCP server's schema validation.
References
- Output template — CODEBASE_ANALYSIS.md section structure
- Business context — Business Context section guidance (when to include, what to cover)
- Citation format — Clickable citation rules and anchoring
- Error scenarios — Handling common failure conditions
- Exclusion patterns — Files and directories to skip during scanning
- Project detection — Project type detection and entry point identification
- Code extraction — Framework-specific data extraction patterns
- Large codebase strategy — Tracked sequential analysis and parallel workers
Frequently asked questions
What to verify before installation and use
What does the document-service source document cover?
Analyze codebases to produce structured technical documentation and architecture diagrams with source-of-truth citations. Every finding links back to the exact file and line it was derived from. Optimized for AWS workloads but works with any codebase.
How do I install document-service?
The source record exposes this install command: npx skills add https://github.com/awslabs/agent-plugins --skill "plugins/codebase-documentor-for-aws/skills/document-service". Inspect the command and pinned source before running it.
Which permission-related actions were detected?
Static rules flagged read-files, write-files in the source; the page lists the matching lines and excerpts.
Alternatives
Compare before choosing
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
vasilyu1983/AI-Agents-public
research-git
Scans public GitHub repos for agent skills, dev practices, and code patterns. Use when enriching skills, setting team policy, or researching a build domain.
oaustegard/claude-skills
orchestrating-agents
Orchestrates parallel API instances, delegated sub-tasks, and multi-agent workflows with streaming and tool-enabled delegation patterns. Routes by surface — native subagents in Cowork and Claude Code, httpx fan-out on claude.ai — and covers Gemini delegation via the Cloudflare AI Gateway on every surface. Use for parallel analysis, multi-perspective reviews, or complex task decomposition.
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