/graphify
Turn any folder of files into a navigable knowledge graph with community detection, an honest audit trail, and three outputs: interactive HTML, GraphRAG-ready JSON, and a plain-language GRAPH_REPORT.md.
When to Use
- The request matches the skill description: any input (code, docs, papers, images) → knowledge graph → clustered communities → HTML + JSON + audit report. Use when user asks any question about a codebase, project content, architecture, or file relationships — especially if graphify-out/ exists. Provides persistent graph with god nodes, community detection, and BFS/DFS query tools.
- The task needs the implementation patterns, examples, validation checks, or edge cases listed in the topic map.
- The work would benefit from the complete guidance preserved in
references/full-guidance.md.
Core Workflow
- Confirm the request matches this skill's trigger, scope, and risk profile.
- Use the topic map to identify the relevant pattern, checklist, or example before writing detailed guidance or code.
- Load
references/full-guidance.md when implementation details, examples, anti-patterns, validation checks, or edge cases are needed.
- Apply only the relevant guidance instead of loading or repeating the entire reference by default.
- Verify the result against any validation checks, limitations, security notes, or platform constraints in the reference.
Topic Map
- Usage
- What graphify is for
- What You Must Do When Invoked
- Step 1 - Ensure graphify is installed
- Step 2 - Detect files
- Step 2.5 - Transcribe video / audio files (only if video files detected)
- Step 3 - Extract entities and relationships
- Step 4 - Build graph, cluster, analyze, generate outputs
- Step 5 - Label communities
- Step 6 - Generate Obsidian vault (opt-in) + HTML
- Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)
- Step 7b - SVG export (only if --svg flag)
- Step 7c - GraphML export (only if --graphml flag)
- Step 7d - MCP server (only if --mcp flag)
- Step 8 - Token reduction benchmark (only if total_words > 5000)
- Step 9 - Save manifest, update cost tracker, clean up, and report
- For --update (incremental re-extraction)
- For --cluster-only
Reference Map
references/full-guidance.md preserves the complete original guidance, including examples and detailed edge cases.
Progressive Loading
Keep this SKILL.md as the compact routing and workflow entrypoint. Load the reference file only when the user task requires the deeper implementation material.
1---2name: graphify3description: any input (code, docs, papers, images) → knowledge graph → clustered communities → HTML + JSON + audit report. Use when user asks any question about a codebase, project content, architecture, or file relationships — especially if graphify-out/ exists. Provides persistent graph with god nodes, community detection, and BFS/DFS query tools.4license: MIT5---67# /graphify89Turn any folder of files into a navigable knowledge graph with community detection, an honest audit trail, and three outputs: interactive HTML, GraphRAG-ready JSON, and a plain-language GRAPH_REPORT.md.1011## When to Use12- The request matches the skill description: any input (code, docs, papers, images) → knowledge graph → clustered communities → HTML + JSON + audit report. Use when user asks any question about a codebase, project content, architecture, or file relationships — especially if graphify-out/ exists. Provides persistent graph with god nodes, community detection, and BFS/DFS query tools.13- The task needs the implementation patterns, examples, validation checks, or edge cases listed in the topic map.14- The work would benefit from the complete guidance preserved in `references/full-guidance.md`.1516## Core Workflow171. Confirm the request matches this skill's trigger, scope, and risk profile.182. Use the topic map to identify the relevant pattern, checklist, or example before writing detailed guidance or code.193. Load `references/full-guidance.md` when implementation details, examples, anti-patterns, validation checks, or edge cases are needed.204. Apply only the relevant guidance instead of loading or repeating the entire reference by default.215. Verify the result against any validation checks, limitations, security notes, or platform constraints in the reference.2223## Topic Map24- Usage25- What graphify is for26- What You Must Do When Invoked27- Step 1 - Ensure graphify is installed28- Step 2 - Detect files29- Step 2.5 - Transcribe video / audio files (only if video files detected)30- Step 3 - Extract entities and relationships31- Step 4 - Build graph, cluster, analyze, generate outputs32- Step 5 - Label communities33- Step 6 - Generate Obsidian vault (opt-in) + HTML34- Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)35- Step 7b - SVG export (only if --svg flag)36- Step 7c - GraphML export (only if --graphml flag)37- Step 7d - MCP server (only if --mcp flag)38- Step 8 - Token reduction benchmark (only if total_words > 5000)39- Step 9 - Save manifest, update cost tracker, clean up, and report40- For --update (incremental re-extraction)41- For --cluster-only4243## Reference Map44- `references/full-guidance.md` preserves the complete original guidance, including examples and detailed edge cases.4546## Progressive Loading47Keep this `SKILL.md` as the compact routing and workflow entrypoint. Load the reference file only when the user task requires the deeper implementation material.