Turn any codebase into a knowledge graph. Query your architecture, not your files.
pip install graqlecd your-project
graq scan repo .This builds a knowledge graph from your codebase — modules, dependencies, risk levels, everything.
graq run "what are the most coupled modules in this codebase?"
graq run "what breaks if I change the auth module?"
graq run "show me architectural hotspots"graq mcp serveThen add to your Claude Code settings (~/.claude/settings.json):
{
"mcpServers": {
"graqle": {
"command": "graq",
"args": ["mcp", "serve"]
}
}
}Now Claude Code has 7 new tools: graq_context, graq_reason, graq_impact, graq_preflight, graq_lessons, graq_learn, graq_inspect.
In Claude Code, just ask:
"Use graqle to analyze what would break if I refactor the database layer"
"Use graq_impact on the auth module"
"Run graq_preflight before I change the API routes"
graq serve --port 8077
# Open http://localhost:3000 (if running graqle-studio frontend)
# Or visit https://graqle.com/dashboardgraq plugins list # See available plugins
graq plugins install superpowers # TDD + code review methodology
graq plugins install ui-ux-promax # Design intelligence (57 styles, 95 palettes)- Knowledge Graph — every module, function, dependency mapped
- Risk Scoring — LOW/MEDIUM/HIGH/CRITICAL per module
- Impact Analysis — "if I change X, what breaks?"
- Preflight Checks — safety warnings before you code
- Lessons — past mistakes surfaced before you repeat them
- Self-Evolving —
graq learnteaches the graph new concepts
- PyPI: https://pypi.org/project/graqle/
- GitHub: https://github.com/quantamixsol/graqle
- Studio: https://graqle.com
Built by Quantamix Solutions. Apache 2.0 licensed.