Help us improve
Share bugs, ideas, or general feedback.
From flow
Looks up API docs, SDK references, library versions, breaking changes, migration guides, changelogs, release notes, and deprecations via local skill references or targeted web searches.
npx claudepluginhub cofin/flow --plugin flowHow this skill is triggered — by the user, by Claude, or both
Slash command
/flow:apilookupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Look up API documentation, SDK references, library versions, and migration guides using a three-tier resolution strategy that starts with local Flow skill references and escalates to targeted web searches only when needed.
Conducts web research to verify current APIs, check latest versions, detect deprecations, and fetch up-to-date implementations using specialized search tools.
Gathers read-only external knowledge on libraries, frameworks, SDKs, APIs, CLIs via 5-tier doc ladder from official docs to community sources, verifying claims with primary citations.
Fetches latest library and framework documentation via Context7 API for Claude Code. Useful when needing up-to-date info on React, Next.js, Prisma, or similar.
Share bugs, ideas, or general feedback.
Look up API documentation, SDK references, library versions, and migration guides using a three-tier resolution strategy that starts with local Flow skill references and escalates to targeted web searches only when needed.
Three tiers of resolution, applied in order:
references/ docs directly. No network needed.Example queries this skill handles:
references/registry.json maps every Flow skill to:
| Age of registry entry | Action |
|---|---|
| < 30 days | Trust local skill references, answer directly |
| 30-90 days | Use local refs as baseline, verify version via web |
| > 90 days | Treat as potentially outdated, do full version check |
All web lookups are capped at 2-4 searches max. Prefer WebFetch on known URLs over WebSearch when registry URLs are available — it is faster and more precise.
See references/lookup-strategy.md for the full decision tree. Key principles:
Before delivering an answer based on an API lookup, verify:
registry.json for known skillsQuery: "How do I use React Server Components in Next.js?"
react skill. last_checked is 45 days ago (Tier 2).https://github.com/facebook/react/releases -> React 19 is latest.site:nextjs.org react server components pattern 2026.use client vs default server components.