skills/grill-with-docs/SKILL.md
PREFERRED default grill mode. Grill-mode plus lazy documentation. Runs the grill-me interrogation and, as decisions are reached, writes them into CONTEXT.md (domain language) and docs/adr/000N-*.md (hard-to-reverse decisions) so a fresh agent can pick up cold without re-grilling the user. Use this by default any time a grill is needed; fall back to /ro:grill-me only when the user explicitly wants ephemeral grilling with no durable artefacts. Triggers on "grill me", "let's grill", "/grill" in agent-native repos, "grill with docs", "grill and document", "interview me", "pressure-test this", "before we code", "let's build / make / design / plan / spec", or when the user wants the grill output captured persistently rather than living in the chat transcript.
npx skillsauth add RonanCodes/ronan-skills 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.
Wrapper around matt-pocock/skills/grill-me and ubiquitous-language that, as the interrogation proceeds, materialises two persistent artefacts:
CONTEXT.md (or CONTEXT-MAP.md + per-context files for multi-bounded-context repos) — the domain language a future agent needs to reason inside this codebase. Built incrementally from terms that surface during grilling. Synthesises Pocock's ubiquitous-language skill output with the in-grill terms.docs/adr/000N-<slug>.md — one Architecture Decision Record per hard-to-reverse decision (database choice, auth provider, deployment substrate, framework, etc.). Format: Context / Decision / Consequences. Sequential N. Written only when a decision is irreversible enough to warrant a record.The point: the grill transcript dies with the session. CONTEXT.md and ADRs survive into the next agent's context window. Write them lazily during the grill, not after.
Before grilling, ensure Matt's upstream skills are reachable:
test -e ~/.claude/skills/grill-me || npx -y skills@latest add mattpocock/skills/skills/productivity/grill-me -g
test -e ~/.claude/skills/ubiquitous-language || npx -y skills@latest add mattpocock/skills/skills/architecture/ubiquitous-language -g
No-op if both are already symlinked.
Open with grill-me's interrogation. One question at a time, always with a recommended answer and why. Walk the decision tree foundations-first. Same rules as the base grill-me skill.
Listen for two signals as answers come back:
CONTEXT.md under the right section with a one-line definition, plus aliases-to-avoid if the user has been using competing words.docs/adr/000N-<slug>.md? y/n". On y, write it with sections: Context, Decision, Consequences, Status: accepted, Date: YYYY-MM-DD.Never write the destination PRD inside grill-me. Hand that to write-a-prd after the grill closes. grill-with-docs writes only CONTEXT.md and ADRs — they are independent of any specific PRD and outlive it.
Close with a printed manifest of files written this session:
Wrote during this grill:
- CONTEXT.md (+4 terms: Pulse run, reorder watch, lock graph, trust gradient)
- docs/adr/0007-substrate-cf-workers-not-fly.md
- docs/adr/0008-sync-via-pr-not-shared-fs.md
grill-me| Use base grill-me | Use grill-with-docs |
| --- | --- |
| Quick design check in the chat, output is throwaway | Building a real repo; documentation needs to outlive the session |
| Repo has no docs/adr/ and you don't want one | Repo is agent-native (Pocock pattern); next agent must pick up cold |
| You'll write the PRD yourself right after | You want the domain language and irreversible decisions captured separately from the PRD |
In agent-native repos following the Pocock pattern — single ready-for-agent label, PRDs as GH issues, slices as child issues — /grill should route to this skill by default. The base grill-me is the fallback for ad-hoc design conversations.
# Context
A future agent reading this file alone should be able to pick up unfamiliar work in this repo without re-asking the same questions.
## Domain
| Term | Definition | Aliases to avoid |
| --- | --- | --- |
## System shape
(Top-level components and how they talk to each other. 5-10 bullets max.)
## Conventions
(Style choices that aren't captured in lint/format config — naming, error-handling stance, test-vs-runtime invariants.)
For multi-bounded-context repos: write CONTEXT-MAP.md at the root pointing at contexts/<name>/CONTEXT.md per bounded context. Trigger this layout when the grill surfaces two or more distinct domain languages (e.g. "scheduling terms" vs "billing terms") that don't share vocabulary.
# ADR-000N: <slug>
- **Status**: accepted
- **Date**: YYYY-MM-DD
## Context
(What forces are at play. The grill question that triggered this ADR.)
## Decision
(The choice, stated as a single sentence.)
## Consequences
(What this commits us to. What we can no longer easily do. What we now have to do.)
CONTEXT.md or ADRs before the grill reaches the relevant decision — that defeats the lazy point. Write only when the user has confirmed the term or decision.docs/adr/*.md, pick max(N) + 1. Create the directory if absent.testing
--- name: linear-pipeline description: The Fable orchestrator for a single dispatched Linear ticket. Holds almost no context itself; it receives `--issue <ID> --detached`, decides the stage sequence, and fans out a sub-agent per stage, passing forward only each stage's artifact (never re-derived, never inlined into its own context). Step zero, before any planning or stage routing, is a boundary triage against `canon/security-boundary.md` (#199): a match tags Ronan Connolly and stops the run, no
development
--- name: in-your-face description: Capture a chat-only answer into a durable artifact (markdown + HTML, PDF when cheap) and launch it automatically so the user cannot miss it. Use when user says "in your face", "don't let me lose this", "save that answer", "make that durable", or right after answering a substantive side question (a recipe, comparison, how-to, or generated prompt) that would otherwise die with the context. category: workflow argument-hint: [--no-open] [--vault <short>] [hint of
tools
One-shot headless OpenAI Codex CLI calls for background/admin AI tasks — summaries, classification, extraction, admin glue. The default engine for anything that runs AI constantly in the background (daemon-driven, per-event), because it bills the flat ChatGPT subscription instead of Claude usage or per-token API spend, and it keeps working while Claude is rate-limited. NEVER for coding — coding stays Claude. Use when a skill or daemon needs a cheap always-on AI call, when the user says "use codex", "ask codex", "codex as backup", or when building a background summarizer/classifier into a listener or loop. Reads auth from ~/.codex/auth.json (ChatGPT account, no API key).
research
Turn a warranty rejection, repair quote, or RMA email into a cited decision brief — legal read (NL/EU consumer law), is the part user-serviceable, live part and new-unit prices, repair-vs-DIY-vs-new economics, before-you-send-it checklist, deadlines. Use when the user pastes or screenshots a repair quote, warranty rejection, "not covered" email, onderzoekskosten fee, or asks "should I repair or replace this".