用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/mindroom-ai/mindroom --skill docs-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
MindRoom documentation corpus for accurate product, configuration, and workflow guidance.
Spawns AI coding agents in isolated git worktrees. Use when the user asks to spawn or launch an agent, delegate a task to a separate agent, work in a separate worktree, or parallelize development across features.
Use when spawning and supervising multiple agent-cli Codex worktrees through tmux, especially when you must poll progress, force prompt rereads against the local TASK file, run current-context and fresh-context pr-review loops, and verify that review fixes are actually pushed before merge.
基于 SOC 职业分类
正在显示 SKILL.md
| name | docs-review |
| description | Review documentation for accuracy, completeness, and consistency against the actual codebase. |
Review documentation for accuracy, completeness, and consistency. Focus on things that require judgment—automated checks handle the rest.
Don't waste time on these—CI and pre-commit hooks handle them:
markdown-code-runner regenerates CLI help blocks via docs/run_markdown_code_runner.pyFocus on things that require judgment:
# What changed recently that might need doc updates?
git log --oneline -20 | grep -iE "feat|fix|add|remove|change|option"
# What code files changed?
git diff --name-only HEAD~20 | grep "\.py$"
Look for new features, changed defaults, renamed options, or removed functionality.
Compare docs under docs/configuration/ against the Pydantic models in the src/mindroom/config/ package, whose root model is in src/mindroom/config/main.py.
Do not rely on a fixed list of files; discover what exists in both locations and check they match.
# Find every config class declaration, including indirect Pydantic subclasses
rg -n "^class " src/mindroom/config
# Find all config doc files
ls docs/configuration/
Trace inheritance for every discovered class instead of assuming each Pydantic model directly subclasses BaseModel.
Check:
# What source files actually exist?
git ls-files "src/mindroom/**/*.py"
Check docs/architecture/ and the Architecture section of CLAUDE.md:
For every doc file under docs/, find the corresponding source module(s) and check they agree. Don't assume a fixed mapping — discover it:
ls docs/*.md docs/*/
ls src/mindroom/*.py src/mindroom/*/
Look for docs that describe features the code no longer has, or code with features the docs don't cover.
For examples in any doc:
config.yaml snippets actually work?The same info appears in multiple places. Check for conflicts between README.md, docs/, and CLAUDE.md.
Also verify that script paths and file references in CLAUDE.md and docs/deployment/ match the actual filesystem layout.
Check docs/deployment/ files against actual Dockerfiles, Helm charts, scripts, and environment variable defaults in src/mindroom/constants.py.
This prompt can become outdated too. If you notice:
Include prompt updates in your fixes.
Categorize findings:
For each issue, provide a ready-to-apply fix:
### Issue: [Brief description]
- **File**: path/to/file.md:42
- **Problem**: What's wrong
- **Fix**: What to change
- **Verify**: How to confirm