ソース情報
- リポジトリ
- BEKO2210/Firstbrain
- ソースの最終更新活動
- 2026年5月17日 12:40
- 検出された SKILL.md の言語
- 英語
- スター
- 15
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/BEKO2210/Firstbrain --skill graphコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Diagnostica y traza la hoja de ruta óptima para proyectos de IA en español.
Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any project.
Ingeniero de Sistemas de Andru.ia. Diseña, redacta y despliega nuevas habilidades (skills) dentro del repositorio siguiendo el Estándar de Diamante.
| name | graph |
| description | Knowledge graph analysis -- statistics, clusters, paths, bridges, PageRank |
| version | 3.0.0 |
| triggers | ["/graph"] |
| type | skill |
| tags | ["skill","agent","discovery","graph","analysis"] |
Builds a directed graph from vault notes and their wiki-links, then runs graph algorithms to reveal structure, importance, and hidden patterns.
/graph → Full graph statistics
/graph clusters → Topic clusters by shared tags
/graph rank → Top notes by PageRank importance
/graph path "Note A" "Note B" → Shortest path between two notes
/graph bridges → Notes that connect otherwise separate groups
/graph similar "Note" → Notes with similar connection patterns
/graph hops "Note" → Hidden connections 2-3 hops away
ensureFreshIndexes('.') from scan utils (rebuild if stale)loadAndBuild('.') from graph-engine.cjs to construct the graph| Command | Algorithm | What it reveals |
|---|---|---|
| (default) | graphStats() | Node/edge count, density, components, degree distribution, orphans |
| clusters | findTagClusters() | Groups of 3+ notes sharing the same tag |
| rank | pageRank() | Notes ranked by structural importance (link authority) |
| path | shortestPath() | Minimum hops between any two notes |
| bridges | findBridgeNotes() | Notes whose removal would split the graph |
| similar | findStructurallySimilar() | Notes linking to/from the same neighbors (Jaccard similarity) |
| hops | findMultiHopConnections() | Notes reachable in 2-3 hops but not directly linked |
const { loadAndBuild, graphStats, pageRank, findTagClusters, shortestPath,
findBridgeNotes, findStructurallySimilar, findMultiHopConnections
} = require('./.agents/skills/graph/graph-engine.cjs');
const { ensureFreshIndexes } = require('./.agents/skills/connect/connect-utils.cjs');
Results are presented as formatted text tables. Example:
Knowledge Graph | 57 nodes, 238 edges
Density: 0.074 (sparse -- room to grow)
Components: 2 (1 main + 1 isolated)
Avg degree: 8.35 links per note
Top 5 by PageRank:
1. Home (0.082)
2. Universal AI Clothing Kit (0.041)
3. Projects MOC (0.038)
...