From razorback
Use when writing code against an external framework, library, or API — especially a version or feature newer than your training data, an unfamiliar dependency, or behavior that may have changed (new directives, breaking changes, renamed options, deprecations, changed defaults).
How this skill is triggered — by the user, by Claude, or both
Slash command
/razorback:grounding-in-current-docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Miller is the source of truth for the repo. This skill covers truth *outside* the repo: external framework, library, and API behavior. Training knowledge of external APIs goes stale, and plausible-from-memory code that compiles can still be semantically wrong.
Miller is the source of truth for the repo. This skill covers truth outside the repo: external framework, library, and API behavior. Training knowledge of external APIs goes stale, and plausible-from-memory code that compiles can still be semantically wrong.
Before writing code against an external API where your knowledge could be stale:
search for existing usage of the same API in this codebase — working code already in the repo is the cheapest ground truth, and repo conventions win over docs.If the docs are unreachable, this is not a blocker: prefer the repo's existing pattern, proceed with the best available evidence, and flag the unverified assumption in the task notes so review can check it.
This applies to dispatched implementers too: if a task touches a staleness-risk API, the lead puts the verified surface (or the doc URL) in the task prompt so workers don't code from memory.
| Excuse | Reality |
|---|---|
| "I know this API" | New-in-version features are exactly where memory is wrong. Check the version. |
| "It compiles / tests pass" | Tests rarely encode semantics like caching, defaults, or ordering. Verify the documented behavior. |
| "Fetching docs wastes tokens" | One bounded fetch is cheaper than a wrong-semantics bug found in review — or in production. |
| "The blog post / old answer says…" | Secondary sources fossilize old versions. Official docs for the version in the lockfile. |
npx claudepluginhub anortham/razorback --plugin razorbackCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.