/cs:grill-me <path-to-plan> — Start a relentless interrogation of a plan or design. Walks decision tree one branch at a time. One question per turn with recomme
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-claude-skills-9ebe3d783b71 ,按照其中的说明把「cs-grill-me」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Command: /cs:grill-me <path-to-plan>
The grill-master persona interrogates a plan one decision branch at a time.
grep / Read resolves before asking.# 1. Extract decision branches from the plan
python ../skills/grill-me/scripts/decision_tree_extractor.py path/to/plan.md
# 2. Generate forcing questions with recommendations
python ../skills/grill-me/scripts/question_generator.py path/to/plan.md
# 3. Start session
python ../skills/grill-me/scripts/grill_session_tracker.py --action start --session NAME --plan path/to/plan.md
# 4. Walk one question at a time:
# Persona asks Q1 with recommendation.
# User answers.
# Record:
python ../skills/grill-me/scripts/grill_session_tracker.py --action record --session NAME --question-id 1 --answer "..."
# 5. When complete:
python ../skills/grill-me/scripts/grill_session_tracker.py --action close --session NAME
Produce a "decisions locked" summary at close.
Q[i]/[total] (L[line]): [question]
Recommended: [position] because [1-sentence rationale]
(or: I explored — found [evidence]. Confirm?)
cs-grill-mastergrill-me/cs:caveman, /cs:handoff, /cs:write-a-skillVersion: 1.0.0 Derived: Matt Pocock's grill-me (MIT) + this repo's wrapper