Mk docs init
Skill ngocsangyem/MeowKit/packages/mewkit/src/migrate/modules/codex/root/.agents/skills/mk-docs-init
Production ready. AI Agent Workflow System for Claude Code
npx -y skills add ngocsangyem/MeowKit --skill mk-docs-initAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate initial docs/ from codebase analysis when a project has none. Triggers on 'init docs', 'create/generate documentation'. NOT for updating existing docs (mk:document-release).
SKILL.md
3.0 KB, 686 tokens by cl100k_base, as published. Nobody here has run it
Docs Init
Generate initial project documentation from codebase analysis.
Scope: Creates docs/ from scratch. For updating existing docs → mk:document-release.
Also run
mk:project-contextto generate the agent-constitution file (docs/project-context.md).mk:docs-initgenerates the full documentation suite;mk:project-contextgenerates only the constitution.
When to Use
- Project has no
docs/directory docs/exists but is empty or has only stubs- User asks to "initialize docs", "create documentation", "generate docs"
- After
mk:bootstrapcompletes (new project needs docs)
Do NOT invoke when: docs already exist and need updating (use mk:document-release).
Process
- Check existing state — does
docs/exist? Are files already populated?- If populated docs exist → suggest
mk:document-releaseinstead, stop.
- If populated docs exist → suggest
- Scout codebase — activate
mk:scoutto analyze project structure. Skip:.codex/,.git/,node_modules/,__pycache__/,dist/,build/ - Merge findings — consolidate scout reports into context for doc generation
- Generate docs — spawn
documentersub-task via Task tool with scout context. Output files (adapt to what the project actually has):README.md— project overview (≤300 lines)docs/project-overview.md— what this project is, who it's fordocs/codebase-summary.md— directory map, key modules, entry pointsdocs/code-standards.md— conventions found in codebasedocs/architecture/system-architecture.md— component diagram, data flow Optional (generate only if relevant):docs/deployment-guide.md— if CI/CD or Docker config detecteddocs/design-guidelines.md— if frontend/UI code detected
- Size check — run
wc -l docs/*.md | sort -rn. Flag files >800 lines. - Report — print generated files list with line counts.
Hard gate: Do NOT write code or implementation. Only documentation.
Gotchas
- Hallucinating architecture: generating docs about code that doesn't exist → always scout FIRST, generate from findings only
- Over-documenting small projects: creating 7 docs for a 50-line script → check project size; small projects get README + codebase-summary only
- Stale on first run: docs describe initial state but drift immediately → tell user to run
mk:document-releaseafter each feature ship
Full list: references/gotchas.md
Workflow Integration
Runs after mk:bootstrap or on any existing project without docs.
mk:bootstrap → mk:docs-init → mk:plan-creator (first feature)
Also invoked standalone: mk:docs-init on existing undocumented project.
Handoff Protocol
On completion:
- Print generated files list + line counts
- "Docs initialized. Run
mk:document-releaseafter shipping features to keep them in sync."