docs/ja-JP/skills/documentation-lookup/SKILL.md
訓練データの代わりにContext7 MCP経由で最新のライブラリとフレームワークドキュメント使用。セットアップの質問、APIリファレンス、コード例、またはユーザーがフレームワーク(例:React、Next.js、Prisma)に名前を付けるときにアクティベーション。
npx skillsauth add affaan-m/everything-claude-code documentation-lookupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
ユーザーがライブラリ、フレームワーク、またはAPIについて尋ねるときは、訓練データに依存する代わりにContext7 MCP(ツールresolve-library-idおよびquery-docs)を通じて現在のドキュメントをフェッチします。
/vercel/next.js)を返す。ユーザーが以下の場合にアクティベーション:
リクエストがライブラリ、フレームワーク、またはAPIの正確で最新の動作に依存するときはいつでもこのスキルを使用。Context7 MCPが構成されたハーネス全体に適用されます(例:Claude Code、Cursor、Codex)。
resolve-library-id MCPツールを以下で呼び出す:
Next.js、Prisma、Supabase)。クエリドキュメントを呼び出す前に、Context7互換のライブラリID(形式/org/projectまたは/org/project/version)を取得する必要があります。このステップから有効なライブラリIDなしでquery-docsを呼び出さないでください。
解決結果から、以下を使用して1つの結果を選択:
/org/project/v1.2.0)。query-docs MCPツールを以下で呼び出す:
/vercel/next.js)。制限:質問ごとにquery-docs(またはresolve-library-id)を3回以上呼び出さない。3回の呼び出し後も答えが不明確の場合は、不確実性を述べ、推測するのではなく最良の情報を使用。
libraryName: "Next.js"、query: "Next.jsミドルウェアを設定する方法は?"でresolve-library-idを呼び出す。/vercel/next.js)を選択。libraryId: "/vercel/next.js"、query: "Next.jsミドルウェアを設定する方法は?"でquery-docsを呼び出す。middleware.ts例を含める。libraryName: "Prisma"、query: "関係を持つクエリ方法は?"でresolve-library-idを呼び出す。/prisma/prisma)を選択。libraryIdとクエリでquery-docsを呼び出す。includeまたはselect)とドキュメントの短いコードスニペットを返す。data-ai
Design task-local harnesses, eval gates, and reusable skill extraction for Claude dynamic workflow mode and other adaptive agent harnesses.
development
React component testing with React Testing Library, Vitest/Jest, MSW for network mocking, accessibility assertions with axe, and the decision boundary between component tests and Playwright/Cypress end-to-end runs. Use when writing or fixing tests for React components, hooks, or pages.
tools
React and Next.js performance optimization patterns adapted from Vercel Engineering's React Best Practices (https://github.com/vercel-labs/agent-skills). Organizes 70+ rules across 8 priority categories — waterfalls, bundle size, server-side, client fetching, re-render, rendering, JS micro-perf, advanced. Use when writing, reviewing, or refactoring React/Next.js code for performance.
tools
React 18/19 patterns including hooks discipline, server/client component boundaries, Suspense + error boundaries, form actions, data fetching, state management decision trees, and accessibility-first composition. Use when writing or reviewing React components.