Skip to content

nicobailon/grill-for-unknowns

Repository files navigation

grill-for-unknowns

An agent skill for finding unknowns, grilling plans, and reaching shared understanding before implementation.

grill-for-unknowns combines docs/source-grounded plan interrogation with the “finding your unknowns” strategy: known knowns, known unknowns, unknown knowns, and unknown unknowns.

The intended behavior is simple:

Inspect the real territory first, grill the plan and user only where decisions matter, surface blindspots, write down the shared understanding, then build.

What it does

Use this skill when an agent should not rush straight into implementation:

  • unfamiliar codebase area,
  • unfamiliar API/library/platform docs,
  • vague product/design direction,
  • long-running subagent or coding-agent launch,
  • complex architecture or domain-model decision,
  • failed previous attempt due to assumptions,
  • or any plan that needs to be pressure-tested before building.

The skill asks the agent to separate:

  • facts it can discover from docs/source/tests/config,
  • decisions it needs the user to make,
  • domain language that should be clarified and recorded,
  • and unknowns that could materially change implementation.

Install

Claude Code (recommended: plugin marketplace)

/plugin marketplace add nicobailon/grill-for-unknowns
/plugin install grill-for-unknowns@grill-for-unknowns-marketplace

Invoke it as /grill-for-unknowns or let it trigger from the description. Update later with:

/plugin update grill-for-unknowns

Prefer a manual install? Copy the folder instead:

git clone https://github.com/nicobailon/grill-for-unknowns.git /tmp/grill-for-unknowns
mkdir -p ~/.claude/skills
cp -R /tmp/grill-for-unknowns/plugins/grill-for-unknowns ~/.claude/skills/grill-for-unknowns

For a project-scoped install, copy into .claude/skills/ inside the repo instead.

Codex and Hermes (recommended: clone + symlink)

Clone once to a stable location, then symlink into each agent's skills directory — updating every agent later is a single git pull:

git clone https://github.com/nicobailon/grill-for-unknowns.git ~/.local/share/grill-for-unknowns
SKILL_SRC=~/.local/share/grill-for-unknowns/plugins/grill-for-unknowns

# Codex
mkdir -p ~/.agents/skills
ln -s "$SKILL_SRC" ~/.agents/skills/grill-for-unknowns

# Hermes
mkdir -p ~/.hermes/skills/software-development
ln -s "$SKILL_SRC" ~/.hermes/skills/software-development/grill-for-unknowns

If you prefer a plain copy, replace ln -s with cp -R (and re-copy to update).

Codex picks up skills from ~/.agents/skills (personal) or .agents/skills inside a repo (project-scoped); invoke with $grill-for-unknowns or let implicit matching select it from the description. See the Codex skills docs.

For Hermes, start a fresh session or reload skills, then load it explicitly when needed:

/skill grill-for-unknowns

Other agents

Any agent that supports SKILL.md skill folders can use the same clone-and-symlink (or copy-the-folder) approach.

Updating

  • Claude Code (marketplace install)/plugin update grill-for-unknowns, then restart the session.
  • Symlink installsgit -C ~/.local/share/grill-for-unknowns pull updates every symlinked agent at once.
  • Copied installs — re-run the copy command from the install section.

Releases are tagged and listed at Releases; see CHANGELOG.md for what changed.

Example prompts

Use grill-for-unknowns before implementing this. Inspect the relevant docs/source first, then interview me one material question at a time until we have shared understanding.
Grill this plan against the codebase and official docs. Do not build yet. Surface unknown unknowns, challenge domain terms, and produce a launch packet.
I know what I want when I see it. Use grill-for-unknowns to prototype options and extract my unknown knowns before implementation.
Before spawning subagents, use grill-for-unknowns to turn this fuzzy request into a clear launch packet with assumptions, open questions, verification steps, and rollback risks.

Package contents

grill-for-unknowns/
├── README.md
├── CHANGELOG.md
├── LICENSE
├── NOTICE.md
├── package.json
├── .claude-plugin/
│   └── marketplace.json
└── plugins/
    └── grill-for-unknowns/
        ├── SKILL.md
        ├── README.md
        ├── LICENSE
        ├── .claude-plugin/
        │   └── plugin.json
        ├── references/
        │   ├── upstream-lineage.md
        │   └── domain-modeling-add-on.md
        └── templates/
            ├── ADR.md
            ├── CONTEXT.md
            ├── grill-session.md
            ├── implementation-notes.md
            └── launch-packet.md

Credits and lineage

This skill is substantially inspired by, and should be treated as an adaptation/fork of, Matt Pocock’s skill composition around grill-with-docs:

Additional inspiration comes from Thariq’s X article:

How this differs from the upstream skills

The upstream skills are deliberately minimal and compositional: grilling is a ~10-line relentless-interview loop, and grill-with-docs composes it with domain-modeling. grill-for-unknowns keeps that core loop and expands it in five ways:

  1. It covers gaps an interview can't see. The upstream loop only handles known unknowns — questions someone already knows to ask. The four-quadrant taxonomy adds explicit tactics for unknown knowns (the user's unverbalized taste, extracted through cheap prototypes and contrasting references instead of questions the user can't answer) and unknown unknowns (a blindspot pass over docs/source/tests before the interview starts).
  2. It defines what a good question is. "Relentless" is a personality, not a quality bar. Here every question must be material, grounded in evidence, and answerable, using a template that forces a citation, a why-it-matters, and a recommended default. Low-risk unknowns become labeled assumptions instead of questions at all.
  3. It is self-contained. grill-with-docs silently depends on two other skills being installed; an agent that loads only the headline file gets almost nothing. This skill inlines the grilling loop and the domain-modeling rules, so it works dropped into any agent — Hermes, Claude Code, or Codex.
  4. It extends past the planning boundary. Upstream ends at "don't build until shared understanding is confirmed." This skill covers what happens after alignment: a launch packet for subagents and long-running coding agents, a deviation policy (continue-and-log vs. stop-and-ask), implementation notes for newly discovered unknowns, and a post-implementation explainer/quiz.
  5. It produces durable artifacts. Session ledgers, launch packets, implementation notes, CONTEXT.md, and ADRs give the shared understanding a reusable written shape instead of leaving it in the chat transcript.

License

MIT. See LICENSE.

The upstream mattpocock/skills repository is MIT licensed with copyright held by Matt Pocock. Because this skill is an adaptation/fork rather than a totally original work, the license preserves Matt Pocock’s MIT copyright notice and adds Nico Bailon’s copyright notice for this adaptation.

About

Agent skill for finding unknowns, grilling plans, and reaching shared understanding before implementation

Resources

License

Stars

184 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors