Grill With Docs

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

kimtth 151b092 1.1 KB Updated

File contents

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

kimtth/agent-skill-100-lines-or-less/tree/main/skills/grill-with-docs commit 151b09241f

Frequently asked questions

npx skillmds@latest add kimtth/grill-with-docs