# Grill With Docs

> Use when: verify claims or API usage against fetched official documentation, not memory.

- Skill: `kimtth/grill-with-docs` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kimtth/grill-with-docs`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kimtth/grill-with-docs/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: kimtth (https://skillmd.com/u/kimtth)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kimtth/grill-with-docs

---


Goal: ground assertions in current docs before acting on them.

Use for:
- API signatures, config options, or behavior you are unsure of
- code that depends on version-specific details
- claims that sound right but were never checked

Workflow:
1. Identify the specific claim that must be verified.
2. Locate the authoritative doc or source for it.
3. Fetch and read the relevant section, not a summary.
4. Compare the claim to what the doc actually states.
5. Note version, defaults, and edge cases that apply.
6. Correct the claim and cite the source you used.

Check for:
- deprecated or renamed APIs
- default values and required parameters
- version differences from your assumption
- behavior at boundaries and on error

Rules:
- prefer primary docs over blog posts or memory
- quote the exact behavior, do not paraphrase loosely
- if docs conflict with code, trust verified runtime behavior
- record which version the answer applies to

