Grill 上下文创建
- 作者仓库星标 0
- 作者仓库 claude-code-expert
Grill Me - Design Tree Exploration
Goal
Reach a shared, unambiguous understanding of what the user wants to build before any implementation begins. Success = a concrete implementation plan the user has approved, with all blocking decisions resolved.
Dependencies
- Tools: Read, Grep, Glob (read-only — this skill gathers information, never modifies files)
- No external services or MCP servers required
Context
This skill reads the existing project (CLAUDE.md, README, config files) to pre-fill known answers before asking any questions. The less the user has to repeat themselves, the better. Reference reference/02-best-practices.md if uncertain about Claude Code patterns.
Interview the user about their plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one by one.
Modes
Full Mode (default): /grill-me [topic]
Relentless, thorough interview. Explores every branch of the design tree until zero ambiguity remains. Use for complex features, architecture decisions, or anything where getting it wrong is expensive.
Light Mode: /grill-me lightly [topic]
Quick, focused interview — 5-8 questions max. Gets the essential decisions made without deep-diving every branch. Use for quick setups, small features, or when the user just needs to fill in a few gaps. Skip edge cases and failure modes unless they're critical. Aim for "good enough to start" not "perfectly specified."
Pre-Fill: Check the Codebase First
Before asking ANY questions, check if you're in an existing project:
- Look for: CLAUDE.md, README.md, package.json, pyproject.toml, Cargo.toml, go.mod, Makefile, Dockerfile, src/, tests/
- If an existing project is found:
- Read CLAUDE.md, README, and config files to understand the project
- Identify: tech stack, architecture, conventions, existing patterns
- Note what you already know and what's still unclear
- Only ask about the gaps — don't ask questions the codebase already answers
- Start by saying: "I've looked at your project. Here's what I understand: [summary]. Let me ask about what I'm less sure about..."
- If no project exists (empty directory or new project):
- Start from scratch with the full interview
Rules
- If a question can be answered by exploring the codebase, explore the codebase instead of asking
- Ask one focused question at a time, not batches
- When a decision opens new branches (e.g., "advanced search" → filters, sorting, pagination), explore each branch (full mode) or note it for later (light mode)
- Don't accept vague answers — ask follow-ups until the answer is specific and implementable
- Track decisions made so far to avoid re-asking
Process (Full Mode)
Phase 1: Big Picture
- What is the user trying to build?
- Who is it for?
- What does success look like?
Phase 2: Design Tree
For each major component:
- What are the options?
- What are the tradeoffs?
- Which option fits the constraints?
- What does this decision imply for other decisions?
Phase 3: Edge Cases & Failure Modes
- What happens when things go wrong?
- What are the performance constraints?
- What are the security considerations?
- What data validation is needed?
Phase 4: Synthesis
After all questions are answered:
- Summarize all decisions made
- Highlight any tensions or tradeoffs
- Propose a concrete implementation plan
- Ask if anything was missed
CHECKPOINT: Present the full synthesis to the user. Do NOT recommend next steps until they confirm. Ask: "Does this capture everything accurately? Anything missing or wrong before we move to implementation?"
Process (Light Mode)
Phase 1: Quick Context
- What are you building? (one sentence)
- What's the most important thing it needs to do?
- Any hard constraints? (tech stack, timeline, platform)
Phase 2: Key Decisions Only
- Ask about the 3-5 biggest decisions that would block progress
- Skip theoretical edge cases — focus on "what do I need to know to start building?"
Phase 3: Quick Summary
- Summarize decisions in bullet points
- Note anything deferred for later
- Recommend next step (usually
/wizardor/plan-and-spec)
CHECKPOINT: Present the summary to the user before recommending next steps. Ask: "Does this look right? Ready to move forward, or anything to adjust?"
Output
- Format: Inline chat — a structured summary presented in the conversation, not saved to a file
- Full mode deliverable: Decisions list + tensions/tradeoffs + concrete implementation plan
- Light mode deliverable: Bullet-point decisions + deferred items + recommended next step
- Save location: None by default. If the user wants it persisted, write to
PLAN.mdorPROGRESS.mdin the project root and note it survives context compaction.
Key Principle
The goal is NOT to ask a fixed list of questions. The goal is to dynamically explore the design tree until the level of clarity matches the mode: Full mode = zero ambiguity. Light mode = enough to start.
- 流狐分类
- 工程开发
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @reedmayhew18 · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- Docker
- 底层运行要求
- Docker
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Process (Full Mode)
What is the user trying to build? Who is it for? What does success look like?
# Grill Me - Design Tree Exploration
## Goal
Reach a shared, unambiguous understanding of what the user wants to build before any implementation begins. Success = a concrete implementation plan the user has approved, with all blocking decisions resolved.
## Dependencies
- Tools: Read, Grep, Glob (read-only — this skill gathers information, never modifies files)
- No external services or MCP servers required
## Context
This skill reads the existing project (CLAUDE.md, README, config files) to pre-fill known answers before asking any questions. The less the user has to repeat themselves, the better. Reference `reference/02-best-practices.md` if uncertain about Claude Code patterns.
---
Interview the user about their plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one by one.
## Modes
### Full Mode (default): `/grill-me [topic]`
Relentless, thorough interview. Explores every branch of the design tree until zero ambiguity remains. Use for complex features, architecture decisions, or anything where getting it wrong is expensive.
### Light Mode: `/grill-me lightly [topic]`
Quick, focused interview — 5-8 questions max. Gets the essential decisions made without deep-diving every branch. Use for quick setups, small features, or when the user just needs to fill in a few gaps. Skip edge cases and failure modes unless they're critical. Aim for "good enough to start" not "perfectly specified."
## Pre-Fill: Check the Codebase First
**Before asking ANY questions**, check if you're in an existing project:
1. Look for: CLAUDE.md, README.md, package.json, pyproject.toml, Cargo.toml, go.mod, Makefile, Dockerfile, src/, tests/
2. If an existing project is found:
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Goal → Dependencies → Context → Modes → Full Mode (default): /grill-me [topic] → Light Mode: /grill-me lightly [topic]
要点 -> Before asking ANY questions · Only ask about the gaps · CHECKPOINT · Format · Full mode deliverable · Light mode deliverable · Save location · Full mode = zero ambiguity. Light mode = enough to start.
文件/命令 -> reference/02-best-practices.md · /grill-me [topic] · /grill-me lightly [topic] · /wizard · /plan-and-spec · PLAN.md · PROGRESS.md
内容 SHA-256 -> 34318576ca9b
方法与流程
适用与边界
原文中的明确线索
reference/02-best-practices.md、/grill-me [topic]、/grill-me lightly [topic]、/wizard、/plan-and-spec、PLAN.md、PROGRESS.md