skills/batch-grill-with-docs/SKILL.md
Batch-grill a plan or design round by round: whole settled frontier per round, recommended answers + close-call scores, ADRs + a glossary via domain-modeling, /pre-mortem handoff on irreversible calls.
npx skillsauth add bjornmelin/dev-skills batch-grill-with-docsInstall 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.
Stress-test this plan or design a round at a time until we reach a shared understanding, and capture the results as docs as we go.
Model the plan as a design tree: every decision branches into the decisions that hang off it. Work in rounds. The frontier is every decision whose prerequisites are already settled: the questions you can ask now without guessing at answers you haven't heard yet.
Ask the whole frontier in one round using your structured question tool (Codex's request_user_input / functions.request_user_input, or AskUserQuestion in Claude Code) so the user answers real multiple-choice questions, never a plain-text list. Give each question mutually exclusive options with your recommended option first, and batch as many of the round's questions into one call as the tool allows (AskUserQuestion takes up to 4 per call; make more calls when the frontier is larger). For genuinely close or high-stakes calls, add a weighted 0.0 to 10.0 score to each option and aim for a 9.0+ choice when realistically achievable; skip the scoring on clear-cut questions. Wait for the user's answers before the next round.
Finding facts is your job, never the user's; don't ask the user for anything you could look up yourself. For a quick fact, use your tools inline: explore the codebase, context7 for library or API docs, gh cli/api for GitHub, opensrc for package source, and web search for everything else. For a frontier question that needs real investigation, dispatch the /research skill (a background agent that returns cited findings; it can draw on deep-researcher for deep cited research). Don't block on it: a running exploration is an unsettled prerequisite, so only the questions downstream of it wait for the result: ask the rest of the frontier now. The decisions are the user's: put each to them and wait.
Each round the user answers reshapes the tree: settled decisions push the frontier outward and unblock questions that depended on them. Recompute the frontier and ask the next round. A question whose answer depends on another question still open in this round belongs to a later round, not this one.
As terms and decisions settle, use the /domain-modeling skill to capture them as you go: record resolved terminology in the glossary and each significant resolved decision as an ADR. If a settled decision is high-stakes or hard to reverse, pre-mortem that branch before moving on by offering a /pre-mortem on it.
The session is done when the frontier is empty: every branch of the design tree visited, nothing left silently assumed, every dispatched lookup rendezvoused before you synthesize or act, and the docs reflect what was decided. Before you hand back, offer to run a full /pre-mortem on the settled plan. Do not act on the plan until the user confirms you have reached a shared understanding.
development
Pre-PR multi-model review, parallel opus and codex exec adversarial lanes, then adversarial verification of merged findings. Read-only. Use before shipping nontrivial diffs.
tools
Independent gpt-5.6 diff review via the Codex CLI, normal or steerable adversarial with JSON findings. Use before shipping nontrivial changes.
development
Delegate implementation, investigation, or bulk work to gpt-5.6 codex via pinned codex exec. Use for clear-spec builds, migrations, debugging, or any task MODELS.md routes to codex.
development
Adversarial pre-mortem: imagine the plan failed, work backwards to surface risky assumptions + irreversible bets, then harden them. Proactively offer it (after the current request; confirm first) before a hard-to-reverse or one-way-door call (API, schema, framework, a hire), an all-upside plan, or unvalidated assumptions. Also on request.