Agent skill
doc-contents
Generate project documentation including CONTENTS.md navigation files and AGENTS.md instructions. Use when creating documentation structure, project indexes, or AI agent configuration files.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/doc-contents
Metadata
Additional technical details for this skill
- author
- agent-kit
- version
- 1.0.0
SKILL.md
Documentation Contents Generator
Generate CONTENTS.md and AGENTS.md files for project navigation and AI agent context.
CONTENTS.md
A simple table listing files and directories with brief descriptions.
- Format: Table with Name and Description columns
- Descriptions: 1-2 sentences max
- Nesting: Place in any directory that benefits from an index
See assets/contents-template.md for the template.
AGENTS.md
Context for AI coding agents (Claude Code, Cursor, Codex, etc.).
Root AGENTS.md
Place at project root with:
- Build commands
- Code style conventions
- Testing approach
- Commit format
- Available skills
Nested AGENTS.md
Place in subdirectories only when they have unique conventions not covered by the root file.
Critical: Never repeat instructions from parent files. Only include directory-specific guidance.
See assets/agents-template.md for the template.
Generation Process
- Detect project type - Parse package.json, pyproject.toml, go.mod, Cargo.toml, etc.
- Extract commands - Build, test, lint, dev commands
- Infer conventions - From existing code patterns
- Apply template - Use the appropriate template
Examples
Generate CONTENTS.md
User: Create a CONTENTS.md for the src directory
Claude: [Scans src/, applies contents-template.md]
# src
| Name | Description |
|------|-------------|
| [index.ts](./index.ts) | Main entry point and exports. |
| [cli.ts](./cli.ts) | Command-line interface handler. |
| [utils/](./utils/) | Shared utility functions. |
Generate AGENTS.md
User: Create an AGENTS.md for this project
Claude: [Detects Node.js from package.json, extracts scripts]
# AGENTS.md
CLI tool for managing project documentation.
## Build Commands
bun install
bun run build
bun test
Validation
Validate that CONTENTS.md files include all files:
bun run scripts/validate-contents.ts [path]
Output (JSON):
{
"valid": false,
"results": [
{
"contentsPath": "src/CONTENTS.md",
"missing": ["newfile.ts"],
"extra": ["deleted-file.ts"]
}
]
}
missing: Files in directory but not in CONTENTS.mdextra: Links in CONTENTS.md that don't exist
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?