安装方式
手动下载安装
下载 ZIP 后解压到技能目录即可安装。若在桌面客户端 WebView中直接下载出现异常,本站会改为提示页 + 原始链接,请按页内说明操作。
下载 ZIP (kqb-grill-me-v1.0.0.zip)使用指南
grill-me
概述
深度追问式方案审查:逐层拆解设计决策,直到达成共识
与 oss-* 官方示例技能相同:完整命令、参数与进阶说明见本技能 ZIP 包内 SKILL.md(与上游一致)。若需在本站展示长文中文指南,请新增 resources/skill-docs/zh/kqb-grill-me.md(首行 <!-- zh-only -->)。
技能信息
- 版本:1.0.0
- 作者:KQBOT
- 分类:效率工具
- 来源:https://kqbot.ai/marketplace/skill/grill-me
触发方式
请下载技能包并查阅包内 SKILL.md 中的触发与用法说明。
相关标签
design
# Grill Me
## What to do
Interview the user relentlessly about every aspect of their plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one.
**For each question**:
1. Provide your recommended answer before asking
2. Ask the question
3. Wait for the user's response before moving to the next question
If a question can be answered by exploring the codebase, use Read/Grep to answer it yourself — don't ask the user.
**How to structure the session**:
1. Start by listing the top-level decision branches you see in the plan (3–6 items)
2. Pick the most foundational branch first (others often depend on it)
3. Walk each branch to completion before moving to the next
4. Within a branch, resolve sub-decisions in dependency order
**When to stop**: The session is complete when all branches are resolved and there are no open "it depends" answers remaining. Close with a one-paragraph summary of the key decisions made.
## Difference from grill-with-docs
**grill-me** = pure conversational interrogation of a plan. No documentation is read or updated. Use when the plan is still conceptual and you just need to think it through.
**grill-with-docs** = interrogation anchored to the project's existing domain model (CONTEXT.md, ADRs). Terminology is challenged against the glossary, and decisions that crystallise are written into CONTEXT.md / ADRs in real time. Use when the project has an established domain model that the new plan must align with.
## When to use
Invoke this skill when:
- The user wants to stress-test a plan or design decision
- The user says "grill me" or "challenge my thinking"
- You need to surface hidden assumptions or unresolved trade-offs before implementation begins
- The project does NOT yet have a domain model / CONTEXT.md (if it does, prefer grill-with-docs)
## Tools
- **Read**: Read existing code, specs, or documentation to answer questions without asking the user
- **Grep**: Search the codebase to resolve factual questions about current behaviour