ck:docs
GitHub用于分析代码库并管理项目文档,支持初始化、更新和总结操作。通过路由解析子命令加载对应工作流,以./docs为文档源,辅助生成结构化文档内容。
Trigger Scenarios
Install
npx skills add phuc-nt/my-translator --skill ck:docs -g -y
SKILL.md
Frontmatter
{
"name": "ck:docs",
"metadata": {
"author": "claudekit",
"version": "1.0.0"
},
"description": "Analyze codebase and manage project documentation — init, update, summarize.",
"argument-hint": "init|update|summarize"
}
Documentation Management
Analyze codebase and manage project documentation through scouting, analysis, and structured doc generation.
IMPORTANT: Invoke "/ck:project-organization" skill to organize the outputs.
Default (No Arguments)
If invoked without arguments, use AskUserQuestion to present available documentation operations:
| Operation | Description |
|---|---|
init |
Analyze codebase & create initial docs |
update |
Analyze changes & update docs |
summarize |
Quick codebase summary |
Present as options via AskUserQuestion with header "Documentation Operation", question "What would you like to do?".
Subcommands
| Subcommand | Reference | Purpose |
|---|---|---|
/ck:docs init |
references/init-workflow.md |
Analyze codebase and create initial documentation |
/ck:docs update |
references/update-workflow.md |
Analyze codebase and update existing documentation |
/ck:docs summarize |
references/summarize-workflow.md |
Quick analysis and update of codebase summary |
Routing
Parse $ARGUMENTS first word:
init→ Loadreferences/init-workflow.mdupdate→ Loadreferences/update-workflow.mdsummarize→ Loadreferences/summarize-workflow.md- empty/unclear → AskUserQuestion (do not auto-run
init)
Shared Context
Documentation lives in ./docs directory:
./docs
├── project-overview-pdr.md
├── code-standards.md
├── codebase-summary.md
├── design-guidelines.md
├── deployment-guide.md
├── system-architecture.md
└── project-roadmap.md
Use docs/ directory as the source of truth for documentation.
IMPORTANT: Do not start implementing code.
Version History
- 3495f99 Current 2026-07-25 07:19


