ad-grill-me

ad-grill-me is a skill for Claude Code, Codex from CorridorTech/PoseCap. It costs 164 tokens per session (1,638 once invoked), scanned A, original, Apache-2.0.

A one-question-at-a-time interview for turning a vague software request into a precise, codebase-aware task. It checks the project’s existing terminology and routes the clarified request to the appropriate planning or implementation process.

In plain words
What is it for?
Use it to clarify fuzzy asks, challenge a proposed plan, resolve terminology, and decide whether the next step is research, a design decision, an experiment, or bug diagnosis.
Why use it?
Unclear requests often lead to premature research, unsuitable designs, or work on the wrong problem. The interview exposes missing decisions and sharpens the request before those steps begin.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/corridortech/posecap/ad-grill-me
Any agent
npx skills add CorridorTech/PoseCap --skill ad-grill-me
Clone the repo
git clone --depth 1 https://github.com/CorridorTech/PoseCap

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ad-grill-me

README.md
[![agentmods](https://agentmods.dev/badge/skills/corridortech/posecap/ad-grill-me.svg)](https://agentmods.dev/skills/corridortech/posecap/ad-grill-me)
Your own site
<a href="https://agentmods.dev/skills/corridortech/posecap/ad-grill-me"><img src="https://agentmods.dev/badge/skills/corridortech/posecap/ad-grill-me.svg" alt="Measured on agentmods" height="20"></a>
Per session 164 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,638 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00164 $0.01638
Opus 5 $0.00082 $0.00819
Sonnet 5 $0.00033 $0.00328
Haiku 4.5 $0.00016 $0.00164

Measured 5d ago against content hash 437d1df8f662, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ad-grill-me scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/ad-grill-me/SKILL.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.

<background_information> Implements ADR-0022 — the upstream-of-research phase. Process scaffold for sharpening fuzzy asks before any code, research, or spec work begins. Sits upstream of ad-ground; routes to it (and the other implementation-phase skills) when the question is sharp enough to act on.

No primary file output. Side-effects land in CONTEXT.md (via ad-domain) and ADRs (via ad-adr) — both lazy, both belonging to other skills.

Codex auto-trigger on description keywords is less mature than Claude Code's. If auto-invocation does not fire when the user mentions grilling, interview, fuzzy ask, or "stress test the plan", invoke this skill manually. </background_information>

Route elsewhere when:

  • The question is sharp and research-ready → ad-ground (WORKFLOW §4 + §5).
  • The technique is known and the ask is implementation-strategy choice → ad-tdg (WORKFLOW §9).
  • The technique itself is uncertain across multiple plausible approaches → ad-spike (WORKFLOW §14).
  • The ask is "this is broken" / "fix this bug" → ad-diagnose (WORKFLOW §15).

A well-scoped routine ask ("rename foo to bar everywhere") does not need grilling — just do the work.

Step 1 — codebase-first. Before asking a single question, look. Most "what does this do?" questions are answered by the code.

Process:

  1. Read CONTEXT.md if it exists. Anchor vocabulary first; nothing else makes sense without it.
  2. Read CONTEXT-MAP.md if it exists; load the per-context glossaries that match the surface.
  3. Glob / Grep the surface the question touches — file names, function names, the user's nouns and their plausible aliases.
  4. Read the matched files in the order most likely to answer the surface question.

Only after the codebase pass produces no answer does the skill ask the user.

Step 2 — one question at a time. Each question:

  • Stands alone. Self-contained, no "and also...". Never a numbered list of three.
  • Carries a recommended answer. The user can confirm with one word.
  • Walks the decision tree. Resolve the parent decision before its children.
  • Waits for feedback. No proceeding past an unanswered question, no parallel branches.

Format:

[Branch: data model]
Q1: Should an Order own its Line Items, or should Line Items reference an Order by id?
Recommendation: Order owns Line Items. Locality wins — partial cancellation is the only operation that crosses the boundary, and it stays inside the aggregate.

After the user answers, the next question follows from the answer (depth-first), not from a pre-planned list.

Step 3 — challenge, sharpen, scenario-test. Three discipline patterns; mix as the conversation needs.

Challenge against the glossary. When the user's term conflicts with an entry in CONTEXT.md, surface the conflict immediately:

"Your glossary defines Cancellation as full-order rollback, but you said partial cancellation is in scope — which is it? If both, are they the same domain concept or two distinct events?"

Sharpen fuzzy language. When the user uses a vague or overloaded term, propose the canonical resolution:

"You're saying 'account' — do you mean Customer or User? Those are different things in this codebase: Customer carries billing, User carries auth. Which one drives this requirement?"

Scenario-test relationships. When two concepts interact, invent a concrete edge case that forces precision:

"Concrete scenario: a Customer cancels Order #42 while the warehouse is mid-pick on Line Item 3. Who decides whether the in-flight pick continues?"

The scenarios are fabricated, not historical. Their job is to expose the boundary.

Read the full file on GitHub · 107 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 107 lines · 164 tokens per session scan A 437d1df8f662

Subscribe to this mod's changes

ad-grill-me is a skill published in the GitHub repository CorridorTech/PoseCap (202 stars, last pushed 4d ago), licensed Apache-2.0. It adds 164 tokens to every session and 1,638 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens