用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill documentation-generation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | documentation-generation |
| description | Use when project documentation must be generated or updated from verified codebase facts |
| metadata | {"author":"calcosmic"} |
Generates and updates project documentation by reading the actual codebase and producing docs that reflect reality -- not aspirational descriptions. The colony verifies every claim against the code, so documentation stays accurate even as the code evolves.
README: Project overview, setup, usage
API_DOCS: Endpoint documentation with request/response examples
ARCHITECTURE: System design and module descriptions
CHANGELOG: Version history from git commits
CONTRIBUTING: Development setup and contribution guidelines
INLINE: Code comments and JSDoc/docstring generation
SCAN:
1. Read existing documentation (if any)
2. Scan relevant source code sections
3. Compare docs to code -- identify gaps and inaccuracies
4. Check codebase intelligence index for context
GENERATE:
1. Draft documentation based on code analysis
2. Include code examples extracted from actual usage
3. Generate API documentation from route definitions
4. Create diagrams from module dependency data
VERIFY:
1. Cross-reference every claim against source code
2. Verify all code examples compile/run
3. Check all file paths and module names are current
4. Ensure configuration examples match actual config schema
WRITE:
1. Write documentation files
2. Update existing docs where inaccurate
3. Mark deprecated sections if code has moved on
4. Generate verification report
Every doc must pass these checks:
All mentioned files exist
All mentioned functions exist with matching signatures
All code examples are syntactically valid
All configuration values match actual defaults
All API endpoints match route definitions
No claims contradict the actual code behavior
When updating existing docs:
1. Diff current code against doc last-updated timestamp
2. Identify changed modules and APIs
3. Update only affected documentation sections
4. Preserve manual additions (sections marked with <!-- manual -->)
5. Flag sections that need human review
# .aether/config.yml
docs:
style: casual # casual | professional | technical
include_examples: true
example_language: typescript
verify_against_code: true
preserve_manual: true
output_dir: docs/
DOCS -- {document_type}
Files: {list of generated/updated docs}
Verified: {count}/{total} claims verified against code
Gaps: {count} sections need manual review
Changes: {new} new, {updated} updated, {deprecated} deprecated
Generate API docs:
"Generated API documentation for 47 endpoints. All request/response examples verified against route handlers. 3 endpoints had mismatched docs -- corrected. 2 new endpoints documented."
Update README:
"README updated: setup instructions now match current package.json scripts. Added environment variable table (verified against config.ts). Removed outdated Docker instructions."
Source: calcosmic/Aether — distributed by TomeVault.