Your entire monorepo in one file.
supergraph analyzes your monorepo and generates a unified text map — every module, schema, endpoint, type, and cross-package edge. Query it interactively with impact analysis, change detection, and symbol context. Expose it to AI agents via the built-in MCP server. Fits in one context window.
Also installs /deep-audit, /deep-read, /high-level, and the MCP server for AI agents.
Domains, schemas, modules, types, and edges — unified into one file. An agent reads it once and knows the entire architecture. A human greps it and gets answers.
SUPERGRAPH | 2026-03-05
# PART 1 — DOMAINS
[guild]
r/guild GET /v2/guilds/:id cache:60s
c/guild createGuild,updateGuild,deleteGuild
z/GuildSchema id:str name:str urlName:str? imageUrl:str? +8
t/guilds id:int name:varchar url_name:varchar +12
# PART 2 — PACKAGES
[fortress]
actors/orchestrator [68/93]<-2 OrchestratorActorContext,actor,+63
events [119/120]<-16 AbortEvent,ActorErrorLog,+111
# PART 3 — TYPES
GuildResponse { id:num name:str urlName:str roles:Role[] +6 }
CreateGuildInput { name:str urlName:str? description:str? }
Claude Code slash command. Point it at a package, it reads the supergraph map, audits source files across 10 phases, writes findings and fix plans to disk. Say "do all" and it executes them.
audit/<pkg>/findings.md + audit/<pkg>/plans/. No subagent delegation during analysis — full cross-file context throughout.
Loads symbols-full.txt — every function body, every type definition, every signature in the entire codebase. Then answers implementation questions with full source context.
Parse once, query many times. Impact analysis, change detection, and 360-degree symbol context — all instant via persistent graph cache.
$ supergraph impact createGuild
# Impact Analysis: createGuild
# Risk: CRITICAL — 23 dependents across 4 packages
Depth 0 (direct)
[fortress] orchestrator ← calls createGuild
[fortress] guild-handler ← imports createGuild
[api] guild-router ← imports createGuild
Depth 1 (transitive)
[fortress] actor-system ← imports orchestrator
[api] v2-routes ← imports guild-router
[dashboard] guild-form ← imports guild-handler
...+17 more
$ supergraph context GuildSchema
# Symbol Context: GuildSchema
# Package: @app/schemas — Type: zod-schema
Incoming (who uses this)
guild-router validates with GuildSchema
guild-handler validates with GuildSchema
guild-form imports GuildSchema
guild.test imports GuildSchema
Outgoing (what this uses)
RoleSchema extends
ImageUrlSchema references
$ supergraph detect-changes
# Changed symbols (from git diff)
createGuild [guild] MODIFIED risk:CRITICAL
GuildSchema [schemas] MODIFIED risk:HIGH
guildUtils [utils] MODIFIED risk:LOW
# Suggested re-analysis
supergraph impact createGuild — 23 dependents
supergraph impact GuildSchema — 11 dependents
Model Context Protocol server that exposes supergraph intelligence as tools for AI agents. Your agent queries the graph directly — no copy-pasting, no context window waste.
{
"mcpServers": {
"supergraph": {
"command": "supergraph",
"args": ["serve"]
}
}
}
supergraph serve and your agent gains full codebase intelligence.
Self-contained interactive module graph. Zero dependencies. The background of this page is a live one.
| Key | Action |
|---|---|
| p | Toggle physics |
| l | Toggle labels |
| scroll | Zoom |
| drag | Pan / pin nodes |
| click | Inspect node symbols |