From aiagentminder
Plan interrogation — walk every branch of the decision tree
How this skill is triggered — by the user, by Claude, or both
Slash command
/aiagentminder:grillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stress-test a plan or design by walking every branch of the decision tree. This is the intensive counterpart to the Approach-First check embedded in the `dev` agent profile — use it when a design is non-obvious, high-stakes, or involves multiple interdependent decisions.
Stress-test a plan or design by walking every branch of the decision tree. This is the intensive counterpart to the Approach-First check embedded in the dev agent profile — use it when a design is non-obvious, high-stakes, or involves multiple interdependent decisions.
Read the plan or design being questioned. Sources may include:
dev agent's Approach-First checkdocs/strategy-roadmap.mdAlso read:
DECISIONS.md — for prior decisions that constrain the design spacedocs/strategy-roadmap.md — for scope contextIdentify every decision branch in the plan — any point where two or more reasonable approaches exist. Present the branches as a numbered list, noting dependencies between them.
Example:
Decision branches identified:
- Auth storage: session vs JWT
- Rate limiting: middleware vs API gateway (depends on #1)
- Error format: structured vs freeform
For each decision branch, one at a time:
Resolve one branch before moving to the next. If branches have dependencies, resolve the upstream branch first.
Continue until the user says they are satisfied or all branches are resolved.
After all branches are resolved, produce a structured summary:
Grill Summary — {plan name}
Decisions made:
1. {topic}: {choice}. Alternatives: {what was considered}. Reversal cost: {H/M/L}. Rationale: {why}.
2. ...
Open questions (deferred):
- {question} — deferred because {reason}
Constraints discovered:
- {constraint found during codebase exploration}
Ask the user: "Log these decisions to DECISIONS.md? (y/n)"
If yes, append each decision to DECISIONS.md in the project's existing format, including alternatives considered.
/aiagentminder:grill when a design is non-obvious, high-stakes, or has multiple interdependent decisions.dev agent's Approach-First check for routine check-ins — state intent, confirm, proceed./aiagentminder:grill before architecture changes touching more than 5 files.Adapted from mattpocock/skills/grill-me (MIT license).
npx claudepluginhub lwalden/aiagentminder --plugin aiagentminderGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.