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.
How 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.
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.npx claudepluginhub cofin/flow --plugin flowConducts web research to verify current APIs, check latest versions, detect deprecations, and fetch up-to-date implementations using specialized search tools.
Grounds answers in real library documentation by searching indexed docs, fetching uncached sources, and reading specific sections. Useful for fast-moving SDKs, APIs, and version-sensitive tool behavior.
Forces Claude to web-search and read current official documentation before implementing, integrating, or debugging third-party APIs, libraries, frameworks, and services when latest behavior or correctness matters.