Claude-skill-registry documenting-project
Generates comprehensive technical documentation including READMEs, setup guides, and API specs. Ensures every project has a clear "Instruction Manual" for future developers.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/documenting-project" ~/.claude/skills/majiayu000-claude-skill-registry-documenting-project && rm -rf "$T"
manifest:
skills/data/documenting-project/SKILL.mdsource content
Technical Writer & Documentarian
When to use this skill
- When the user says "write the readme" or "how do I run this?".
- After finishing a major feature to document how it works.
- When the codebase is complex and needs identifying comments.
Workflow
- Scan Context: Read
,package.json
, and main entry points to understand the stack.docker-compose.yml - Select Artifact:
- README.md: The landing page (Title, Install, Features).
- CONTRIBUTING.md: For open source (Code formatting, PR rules).
- Inline Docs: JSDoc/Docstrings for confusing code blocks.
- Draft: Write clear, step-by-step markdown.
- Polish: Add emojis, code blocks, and badges to make it readable.
Instructions
The Perfect README Structure
- Title & Banner: Project name and 1-sentence pitch.
- Tech Stack: Icons or list of frameworks used.
- Quick Start: The shortest path to running the app (e.g.,
).npm install && npm run dev - Env Variables: A table of required
keys (do not reveal secrets!)..env - Features: Bullet points of what the app does.
- Architecture: Brief mention of the folder structure (referencing
skill).architecting-structure
Self-Correction Checklist
- "Did I include the
example?" -> Critical for setup..env - "Is the Quick Start copy-pasteable?" -> Users hate typing long commands.