/cs:grill-with-docs <path-to-plan> — Start a docs-anchored grilling session. Pre-flights CONTEXT.md + docs/adr/ linters, then interrogates the plan one decision
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-claude-skills-87de149cfa78 ,按照其中的说明把「cs-grill-with-docs」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Command: /cs:grill-with-docs <path-to-plan>
The cs-grill-with-docs persona pre-flights the project's documented language and decisions, then walks the plan one branch at a time — challenging fuzzy terms against CONTEXT.md, surfacing code-vs-glossary contradictions, and writing ADRs only when the 3-criteria gate is met.
/cs:grill-me instead)CONTEXT.md and no docs/adr/ and you don't want to seed themgrep / Read / lint resolves before asking.# 1. Pre-flight — snapshot the docs state
python ../skills/grill-with-docs/scripts/context_md_linter.py CONTEXT.md
python ../skills/grill-with-docs/scripts/adr_scanner.py docs/adr/
python ../skills/grill-with-docs/scripts/glossary_code_consistency.py \
--context CONTEXT.md --code src/
# 2. Read the plan
# Use the linter findings as opening question seeds.
# 3. Walk one question at a time:
# Persona asks Q1 with recommendation (anchored to docs/code).
# User answers.
# Apply edits inline if the answer changes the glossary or warrants an ADR.
# 4. Re-lint after any structural CONTEXT.md edit:
python ../skills/grill-with-docs/scripts/context_md_linter.py CONTEXT.md
# 5. Re-scan after any new ADR:
python ../skills/grill-with-docs/scripts/adr_scanner.py docs/adr/
# 6. At close — final consistency sweep:
python ../skills/grill-with-docs/scripts/glossary_code_consistency.py \
--context CONTEXT.md --code src/
Produce a "glossary changes + ADRs + open items" summary at close.
Q[i]/[total] (anchor: CONTEXT.md§Language | ADR-0003 | code:src/orders/cancel.ts:42 | plan:L18):
[question]
Recommended: [position] because [rationale grounded in the anchor]
cs-grill-with-docsgrill-with-docs/cs:grill-me (plan-only grill)/cs:caveman, /cs:handoff, /cs:write-a-skillVersion: 1.0.0 Derived: Matt Pocock's grill-with-docs (MIT) + this repo's wrapper