Installation SOP
FreshOverview
This SOP covers the complete installation of Graphify on any supported platform — from Python dependency setup through first-run verification.
Requirements Checklist
- [ ] Python 3.10 or higher installed (
python3 --version) - [ ] pip available (
pip --version) - [ ] At least one supported AI coding assistant installed
Step 1: Install the Python Package
pip install graphifyyPackage Name
The PyPI package is graphifyy (double-y). The CLI command you use after install is graphify (no double-y).
Verify the install:
graphify --versionStep 2: Install the Skill into Your Assistant
Claude Code
graphify installOr manually:
graphify claude installThis writes two things:
- A
CLAUDE.mddirective telling Claude to consult the knowledge graph - A
PreToolUsehook that fires before every file-search tool call
Codex / OpenCode
graphify install --platform codex
# or
graphify codex installCursor
graphify cursor installWrites rules to .cursor/rules/.
GitHub Copilot CLI
graphify install --platform copilotVS Code Copilot Chat
graphify vscode installAider
graphify install --platform aiderGemini CLI
graphify gemini installManual Setup (any platform)
Download SKILL.md from the repository and place it at:
~/.claude/skills/graphify/SKILL.mdThen register it in ~/.claude/CLAUDE.md:
- **graphify** (`~/.claude/skills/graphify/SKILL.md`) - any input to knowledge graphStep 3: Verify Installation
Run a quick test on a small directory:
mkdir /tmp/graphify-test
echo "# Test\nThis is a test file." > /tmp/graphify-test/README.md
/graphify /tmp/graphify-testExpected output:
graphify-out/
├── graph.html
├── GRAPH_REPORT.md
├── graph.json
└── cache/Step 4: Open the Visualization
open graphify-out/graph.html # macOS
start graphify-out/graph.html # Windows
xdg-open graphify-out/graph.html # LinuxUninstalling Platform Hooks
graphify claude uninstall
graphify codex uninstall
graphify cursor uninstall
graphify gemini uninstallTroubleshooting Installation
command not found: graphify
Run pip show graphifyy to confirm the package installed. If it shows, your pip bin directory may not be on PATH. Try python3 -m graphify --version.
Python Version Error
Graphify requires Python 3.10+. Check with python3 --version. If you have multiple Python versions, use pip3.11 install graphifyy to target the correct one.