Summary
アーキテクチャ知識グラフ(memory MCP / memory.jsonl)の初期作成。「知識グラフを初期化して」「memory グラフを作って」「アーキテクチャグラフを登録して」といった依頼、またはプロジェクト初期構築完了後の仕上げとして使用する。コードベースを調査し、モジュール構成と依存関係を entities / relations として登録する。
hukusuke1007/agent-skills · Archived
アーキテクチャ知識グラフ(memory MCP / memory.jsonl)の初期作成。「知識グラフを初期化して」「memory グラフを作って」「アーキテクチャグラフを登録して」といった依頼、またはプロジェクト初期構築完了後の仕上げとして使用する。コードベースを調査し、モジュール構成と依存関係を entities / relations として登録する。
npx skills add hukusuke1007/agent-skills --skill knowledge-graph-init
アーキテクチャ知識グラフ(memory MCP / memory.jsonl)の初期作成。「知識グラフを初期化して」「memory グラフを作って」「アーキテクチャグラフを登録して」といった依頼、またはプロジェクト初期構築完了後の仕上げとして使用する。コードベースを調査し、モジュール構成と依存関係を entities / relations として登録する。
This repository is archived — consider an actively maintained alternative.
Implement Feature-First architecture with Riverpod state management and Flutter Hooks in Flutte…
41 installsNext.js + Better Auth + PostgreSQL を Docker で構築し、Cloud Run へデプロイするスキル。ローカル…
13 installsAI事業者ガイドライン(経済産業省・総務省、第1.2版、2026年3月31日)に基づいて、AIに関する取り組…
12 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Helps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsOther skills from hukusuke1007/agent-skills.
npx skills add hukusuke1007/agent-skills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Parsed from SKILL.md frontmatter.
Files included with this skill beyond the listing page.
SKILL.md
3,555 B
SUMMARY.md
456 B
AGENTS.md の運用ルールに従い、memory MCP(server-memory、保存先 memory.jsonl)へアーキテクチャ知識グラフを初期作成する。
read_graph で既存グラフを確認する。既にエンティティが存在する場合は上書きせず、不足分の追加に留める(必要ならユーザーに確認)。- リポジトリ全体(モノレポなら 1 エンティティ。サブディレクトリ構成を observations に) - ビルド・パッケージ定義から分かる単位(Xcode ターゲット、npm workspace、Gradle モジュール等。使用フレームワーク・外部依存を observations に) - ソースディレクトリの主要モジュール(共通基盤・ドメイン層・機能単位など、プロジェクトのレイヤ構成に沿って) - エントリポイント(main 関数、App 構造体、サーバ起動スクリプト等) - インフラ・運用まわり(IaC、CI/CD、デプロイ設定、リリース自動化等)
createentities でエンティティを、createrelations で依存関係を登録する。- entityType の例: monorepo, build target, entry point, core module, feature, infra - relation の例: depends on, contains, injects, configures, deploys - observations には「何をするか」だけでなく、構成上の注意点(ビルド設定の例外、環境・モック切替の仕組み等)と調査日付を含める。
read_graph で登録結果を確認し、主要モジュールの登録漏れがないかコードのディレクトリ一覧と突き合わせる。AGENTS.md(または CLAUDE.md)に以下のセクションがなければ追加する。既に同等のルールがある場合は重複して追加しない。```markdown ## アーキテクチャ知識グラフ
モジュール構成・依存関係の知識グラフを memory MCP(server-memory、保存先 memory.jsonl)で管理している。
- 実装・調査の前に searchnodes や opennodes で関係するモジュールの entities / relations を参照し、既存の構成・依存関係に沿って作業すること(全体像が必要なら readgraph)。 - モジュールの追加・削除や依存関係の変更を行ったら、createentities / createrelations / addobservations 等でグラフも更新すること。 ```
searchnodes / opennodes を先に参照し、モジュールの追加・変更時にグラフも更新する(AGENTS.md 参照)。