skills/grill-me/SKILL.md
Grilling session (grill-with-docs) that challenges your plan against the existing domain model, sharpens terminology, and updates CONTEXT.md and ADRs as decisions crystallise — persisted via scribe. Architect Mode A loads this after plan type + first substantive requirements and before architect-plan. Also when the user wants stress-test against project language, documented decisions, or says "grill me".
npx skillsauth add roborew/opencode grill-meInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
During codebase exploration, also look for existing documentation:
Most repos have a single context:
/
├── CONTEXT.md
├── docs/
│ └── adr/
│ ├── 0001-event-sourced-orders.md
│ └── 0002-postgres-for-write-model.md
└── src/
If a CONTEXT-MAP.md exists at the root, the repo has multiple contexts. The map points to where each one lives:
/
├── CONTEXT-MAP.md
├── docs/
│ └── adr/ ← system-wide decisions
├── src/
│ ├── ordering/
│ │ ├── CONTEXT.md
│ │ └── docs/adr/ ← context-specific decisions
│ └── billing/
│ ├── CONTEXT.md
│ └── docs/adr/
Lazy creation (OpenCode): Create CONTEXT.md, CONTEXT-MAP.md, or docs/adr/ only when you have substantive content to persist. Do not create empty stubs. You do not write these files yourself — the Architect agent is read-only. After each resolved term or ADR body is ready, Task scribe with explicit target_path and full file content (and mode: create or update). Scribe is the only write path.
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, produce the complete updated CONTEXT.md body for the active context (root CONTEXT.md or the path indicated by CONTEXT-MAP.md) immediately — do not batch many unresolved terms into one silent update. Use the format in CONTEXT-FORMAT.md.
Then invoke scribe via Task with:
target_path: the context file (e.g. CONTEXT.md or src/ordering/CONTEXT.md)content: full markdown file bodymode: create or updateCONTEXT.md should be totally devoid of implementation details. Do not treat CONTEXT.md as a spec, a scratch pad, or a repository for implementation decisions. It is a glossary and nothing else.
Only offer to create an ADR when all three are true:
If any of the three is missing, skip the ADR. Use the format in ADR-FORMAT.md.
When an ADR is warranted, determine the next filename under docs/adr/ (or context-specific docs/adr/ per CONTEXT-MAP) per ADR-FORMAT numbering, then Task scribe with target_path (e.g. docs/adr/0003-choose-postgres.md) and full content.
tools
AI-powered code review using CodeRabbit CLI. Use only on explicit user request or when parent passes execution_mode orchestrate_coderabbit_gate. Do not run during orchestrated stage/issue work.
tools
Cross-repo companion to to-prd: after PRD frontmatter is filled, run bin/fanout <slug> from this spec repo to create child GitHub issues (one per ticket or legacy slice).
tools
Issue state machine — transition GitHub issue labels per docs/agents/triage-labels.md. Batch helpers via lib/triage.sh.
documentation
Synthesise a PRD from grill-me / research context, write docs/prd/<slug>.md, publish a GitHub issue with prd + state:ready-for-agent + feature:<slug>. Halt after publish — do not invoke fanout.