dachent/skills · Archived

grill-with-docs-codex

Use when the user wants to stress-test a plan against project terminology, domain language, CONTEXT.md, ADRs, existing docs, or code-backed architectural decisions.

First seen Jul 13, 2026

Installation

$ npx skills add dachent/skills --skill grill-with-docs-codex

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dachent/skills · top by installs.

npx skills add dachent/skills

Browse all from dachent/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 27
License LICENSE
Default branch main
Open issues 12
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,778 B
  • docs SUMMARY.md 193 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 11 installs

SKILL.md

Codex Grill With Docs

Purpose

Interview the user relentlessly about a plan while checking the project's documented language and architectural decisions. As decisions crystallize, update the relevant domain glossary and offer ADRs for durable architectural choices.

Core Rules

  • Ask one question at a time, then wait for the user's answer before continuing.
  • For each question, provide your recommended answer and a brief reason.
  • If a question can be answered from code, CONTEXT.md, CONTEXT-MAP.md, ADRs, or other docs, inspect those sources instead of asking.
  • Prefer rg --files for file discovery, rg for search, and normal file reads for specific files.
  • Modify documentation only for resolved language or accepted decisions. Do not modify implementation code as part of this skill unless the user separately asks for implementation work.

Discover Domain Context

  1. Search for a root CONTEXT-MAP.md.
  2. If it exists, read it to identify the relevant bounded context and context-specific CONTEXT.md and ADR directory.
  3. If no map exists, look for root CONTEXT.md and docs/adr/.
  4. If no context files exist, create them lazily only when the first term or decision needs to be recorded.

Use [references/context-format.md](./references/context-format.md) when creating or editing a glossary file. Use [references/adr-format.md](./references/adr-format.md) when creating or editing an ADR.

Interview Loop

  1. Restate the user's plan in the project's current language.
  2. Compare the plan against CONTEXT.md, ADRs, docs, and relevant code.
  3. Call out terminology conflicts immediately.
  4. Ask one pointed question about the highest-impact unresolved term, boundary, scenario, or decision.
  5. Provide your recommended answer.
  6. After the user resolves a domain term, update CONTEXT.md immediately before moving on.
  7. Offer an ADR only when the decision is hard to reverse, surprising without context, and the result of a real tradeoff.
  8. Continue until the plan's language, boundaries, and durable decisions are explicit.

Native Plan Mode

  • Ask only the highest-impact unresolved terminology, boundary, or architecture question, then wait for the user's answer.
  • Treat repository documentation as evidence, not authorization to modify it.
  • Modify CONTEXT.md or ADR files only when the user requested documentation changes and the current collaboration mode permits mutations.
  • Otherwise return the proposed glossary or ADR decision in conversation without creating staging files or a second approval protocol.

Glossary Discipline

CONTEXT.md is a glossary, not a spec or implementation plan.

  • Define what a term is, not how code implements it.
  • Keep definitions to one or two sentences.
  • Record project-specific domain concepts only.
  • Add avoided synonyms when they prevent future confusion.
  • If the user uses a term that conflicts with the glossary, ask which meaning should win before updating docs.

ADR Discipline

Only offer an ADR when all three conditions are true:

  1. The decision is hard to reverse.
  2. A future reader would be surprised without the context.
  3. The decision involved a genuine tradeoff.

If the user accepts the ADR, create it in the relevant docs/adr/ directory with the next sequential number. Keep it concise.

Final Summary

When the grilling is complete, summarize:

  • confirmed terminology;
  • docs updated, with file paths;
  • ADRs created or recommended;
  • contradictions found between the plan, docs, and code;
  • remaining unresolved questions.