gortex
Your AI's live map of your codebase — every call, dependency, and contract indexed across your repos, shared across every running agent via
Open source Repository Open in the app JSON README (API)
About
Your AI's live map of your codebase — every call, dependency, and contract indexed across your repos, shared across every running agent via a local daemon. Gives Claude Code 52 graph-aware tools so they answer "what calls this?", "what breaks if I rename UserStore?", or "which services consume this endpoint?" in one call instead of grepping for minutes. Real AST parsing across 92 languages — deterministic, zero LLM calls during indexing. Useful before refactoring, when tracing bugs across services, exploring unfamiliar code, or any time your agent reaches for Grep or Read. Returns precise answers tagged with confidence tiers (compiler-grade vs heuristic). Local-first, source-available, free under defined thresholds.
Details
- Kind
- Plugins
- Topic
- Developer tools
- Publisher
- gortexhq
- Origin
- marketplace
- Category
- ferramentas
- Last push
- 2026-05-23T09:13:48Z
- Repository state
- ativo
- Language
- Shell
- License
- NOASSERTION
- Added
- 2026-08-30 01:48:58
- Updated
- 2026-08-30 01:48:58
- Origin id
gortexhq/claude-plugin/gortex
README
# Gortex — Claude Code Plugin
Gortex is a graph-based code intelligence engine. This plugin gives Claude
Code 52 MCP tools for navigation, refactoring, contracts, impact analysis,
and search across 92 languages — backed by a shared-graph daemon that
keeps multiple agents and editor sessions in sync.
## Install
This plugin assumes the `gortex` binary is on PATH. Install it via:
```sh
curl -fsSL https://get.gortex.dev | sh
```
The installer fetches a signed release tarball, verifies cosign + SHA256,
installs to `~/.local/bin` (or `/usr/local/bin`), and runs `gortex install`
+ `gortex init`. Homebrew users on macOS can also use:
```sh
brew install zzet/tap/gortex
```
## What this plugin adds
| Surface | What you get |
|---------|--------------|
| **MCP server** | 52 tools (`search_symbols`, `find_usages`, `get_call_chain`, `explain_change_impact`, `rename_symbol`, `scaffold`, `contracts`, …) over stdio via `gortex mcp --proxy` |
| **Slash commands** | `/gortex-guide`, `/gortex-explore`, `/gortex-debug`, `/gortex-impact`, `/gortex-refactor` |
| **Skills** | Five model-invoked skills that activate by task-shape (architecture exploration, debugging, blast-radius analysis, refactoring, tool reference) |
| **Hooks** | PreToolUse routing (Read → `get_symbol_source`, Grep → `search_symbols` / `find_usages`), PreCompact orientation snapshot, Stop post-task diagnostics, SessionStart cold briefing |
## First run
After install, point Claude Code at any code repository and ask a task that
involves understanding code structure ("how does authentication work?",
"what breaks if I rename `UserStore`?"). The hooks redirect Read/Grep/Glob
toward graph queries; the slash commands give you guided workflows.
If `gortex daemon` is running (`gortex daemon start --detach` to start it),
all your editor sessions share one in-memory graph. Otherwise this plugin
spawns a one-shot MCP server per session — same tools, slower cold start.
## Links
- Homepage: https://gortex.dev
- Source: https://github.com/zzet/gortex
- License: https://github.com/zzet/gortex/blob/main/LICENSE.md (Apache 2.0)