What's new in v0.3.0
Multi-platform support
graphify now works on Claude Code, Codex, OpenCode, and OpenClaw.
| Platform | Skill install | Always-on |
|---|---|---|
| Claude Code | graphify install
| graphify claude install
|
| Codex | graphify install --platform codex
| graphify codex install
|
| OpenCode | graphify install --platform opencode
| graphify opencode install
|
| OpenClaw | graphify install --platform claw
| graphify claw install
|
Each platform gets its own optimized skill file. Codex uses spawn_agent, OpenCode uses @mention, OpenClaw uses sequential extraction.
Always-on project hooks for all platforms
graphify claude installadds CLAUDE.md rules and a PreToolUse hook so Claude checks the graph before every file search (Claude Code only)graphify codex install/opencode install/claw installwrites the same rules toAGENTS.mdfor always-on graph-first behaviour on those platforms
MIT license
graphify is now open source under the MIT license.
Bug fixes
- Hyperedges were silently dropped when merging multiple extraction passes, now fixed
What's next (v0.4.0)
- Local embeddings via quantized Gemma 4 (Q4/Q8, runs locally, no API cost) to generate semantic similarity edges across all nodes without any API calls. Opt-in via
pip install graphifyy[embeddings] - More sources for
/graphify addincluding YouTube transcripts, GitHub issues, and Notion pages - Graph diff showing what changed between two graph snapshots (new nodes, dropped edges, community shifts)
- Worked examples for Codex, OpenCode, and OpenClaw with honest evaluations
Install
pip install graphifyy==0.3.0
graphify install # Claude Code
graphify install --platform codex # Codex
graphify install --platform opencode # OpenCode
graphify install --platform claw # OpenClaw