Graph analysis plugin for cortex-engine. Inspect, link, and enrich the memory graph with connectivity reports, manual edges, and semantic suggestions.
npm install @fozikio/tools-graph
| Tool | Description |
|---|---|
graph_report |
Graph connectivity report -- orphaned concepts, most/least connected nodes, category breakdown |
link |
Manually create a typed edge between two concepts (extends, refines, contradicts, supports, etc.) |
suggest_links |
Find potential links between a text and known concepts using embeddings |
suggest_tags |
Suggest tags for content based on semantic similarity to existing concepts |
# cortex-engine config
plugins:
- package: "@fozikio/tools-graph"import graphPlugin from "@fozikio/tools-graph";
import { CortexEngine } from "cortex-engine";
const engine = new CortexEngine({
plugins: [graphPlugin],
});- Wiki — Guides, architecture, and full tool reference
- Plugin Authoring — Build your own plugins
- Contributing — How to contribute
MIT