docs/ja-JP/skills/knowledge-ops/SKILL.md
複数のストレージレイヤー(ローカルファイル、MCP メモリ、ベクターストア、Git リポジトリ)にわたるナレッジベースの管理、取り込み、同期、検索。ユーザーが知識システム全体で保存・整理・同期・重複排除・検索を行いたい場合に使用します。
npx skillsauth add affaan-m/everything-claude-code knowledge-opsInstall 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.
複数のストアにわたって知識を取り込み・整理・同期・検索するための多層ナレッジシステムを管理します。
ライブワークスペースモデルを優先してください:
~/.claude/projects/*/memory/新しい知識を取り込む必要がある場合:
どのタイプの知識か?
この知識がすでに存在するか確認する:
適切なレイヤーに書き込む:
関連するインデックスまたはサマリーファイルを更新する。
会話履歴を定期的にナレッジベースに同期する:
重要なワークスペース設定とスクリプトをナレッジベースにミラーする:
情報がアクティブな実行に影響する場合:
複数のソースから一箇所に知識を集める:
# 短期: 現在のセッションコンテキスト
セッション内タスク追跡には TodoWrite を使用
# 中期: プロジェクトメモリファイル
クロスセッション呼び出しのために ~/.claude/projects/*/memory/ に書き込む
# 長期: GitHub / Linear / KB
アクティブな実行の真実は GitHub + Linear に
耐久性のある合成コンテキストはナレッジベースリポジトリに
# セマンティックレイヤー: MCP ナレッジグラフ
永続的な構造化データには mcp__memory__create_entities を使用
関係マッピングには mcp__memory__create_relations を使用
既知エンティティへの新しい事実には mcp__memory__add_observations を使用
既存の知識を見つけるには mcp__memory__search_nodes を使用
ナレッジ操作を完了する前に:
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.