with one click
grill-plan
// Use when stress-testing a plan against the existing domain model + decisions. Challenges terminology, cross-references code, updates CONTEXT.md and ADRs inline as decisions crystallize.
// Use when stress-testing a plan against the existing domain model + decisions. Challenges terminology, cross-references code, updates CONTEXT.md and ADRs inline as decisions crystallize.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | grill-plan |
| description | Use when stress-testing a plan against the existing domain model + decisions. Challenges terminology, cross-references code, updates CONTEXT.md and ADRs inline as decisions crystallize. |
| disable-model-invocation | true |
| metadata | {"upstream":"mattpocock/skills/engineering/grill-with-docs","adapted-date":"2026-04-28"} |
Interview me relentlessly about every aspect of this 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, provide your recommended answer.
Ask the questions one at a time, waiting for feedback on each question before continuing.
If a question can be answered by exploring the codebase, explore the codebase instead.
These commands run automatically when the skill loads — output replaces each line below:
cat CONTEXT.md 2>/dev/null || truecat CONTEXT-MAP.md 2>/dev/null || truels docs/adr/ 2>/dev/null || trueUse the output above:
CONTEXT.md — glossary of domain terms. If content is in context, use its vocabulary in all output. If empty, create one when the first term is resolved.CONTEXT-MAP.md — if content is in context, the repo has multiple bounded contexts. The map points to where each one lives.docs/adr/ — architecture decision records. If files were listed, read the relevant ones. Create the directory when the first ADR is needed.When the user uses a term that conflicts with the existing language in CONTEXT.md, call it out immediately. "Your glossary defines 'cancellation' as X, but you seem to mean Y — which is it?"
When the user uses vague or overloaded terms, propose a precise canonical term. "You're saying 'account' — do you mean the Customer or the User? Those are different things."
When domain relationships are being discussed, stress-test them with specific scenarios. Invent scenarios that probe edge cases and force the user to be precise about the boundaries between concepts.
When the user states how something works, check whether the code agrees. If you find a contradiction, surface it: "Your code cancels entire Orders, but you just said partial cancellation is possible — which is right?"
When a term is resolved, update CONTEXT.md right there. Don't batch these up — capture them as they happen.
Don't couple CONTEXT.md to implementation details. Only include terms that are meaningful to domain experts.
Only offer to create an ADR when all three are true:
If any of the three is missing, skip the ADR.
ADRs live in docs/adr/ with sequential numbering (0001-slug.md). Keep them minimal:
# <number>. <Title>
<1-3 sentence context/decision/rationale>
Add Status, Considered Options, or Consequences sections only when they add genuine value.