Graph-powered code intelligence for AI agents by Thinqmesh Technologies.
This public GitHub repository carries the install path, public docs, branding
assets, security policy, issue templates, and downloadable npm package tarballs
for CodraGraph. The private development monorepo still owns application source
directories such as packages/, apps/, integrations/, infra/, and
marketing/.
CodraGraph indexes a repository into a local LadybugDB knowledge graph: symbols, imports, calls, routes, tools, execution flows, feature clusters, BM25 search metadata, and optional embeddings. AI agents then query that graph through the CLI, MCP, HTTP API, bundled web dashboard, or SDK.
flowchart LR
Repo["Your repo"] --> Analyze["codragraph analyze"]
Analyze --> Store[".codragraph graph store"]
Store --> CLI["CLI tools"]
Store --> MCP["MCP stdio / HTTP"]
Store --> Web["Local or hosted web UI"]
Store --> SDK["SDK / custom agents"]
MCP --> Agents["Claude, Cursor, Codex, OpenCode"]
Most users should install from npm:
npm install -g @codragraph/cli
codragraph analyze .With Bun:
bun add -g @codragraph/cli --trust
codragraph analyze .For local/offline verification, download the matching tarball from downloads/npm/ and install it directly:
npm install -g ./downloads/npm/codragraph-cli-2.1.4.tgzWindows PowerShell:
npm install -g .\downloads\npm\codragraph-cli-2.1.4.tgz
codragraph analyze .codragraph serve starts the local API and serves the bundled dashboard at
http://127.0.0.1:4747. The CLI package ships built web assets; it does not
ship apps/web/node_modules or require users to install frontend dependencies.
codragraph serve
codragraph serve --web hostedHosted mode keeps project data on the user's machine: the browser UI is hosted, but it connects back to the local API.
REST health is GET /api/info. HTTP MCP is StreamableHTTP at POST /api/mcp;
/api/mcp/tools/list is intentionally not a REST route.
| Package | Version | Purpose |
|---|---|---|
@codragraph/cli |
2.1.4 | CLI, MCP server, HTTP API, indexer, dashboard, feature-cluster context packs |
@codragraph/shared |
2.1.4 | Shared runtime/type contracts used by published packages |
@codragraph/graphstore |
2.1.4 | Content-addressed graph snapshots, diffs, branches, merges |
@codragraph/harness |
2.1.4 | Agent harness search, swarm, recipe memory |
@codragraph/compress |
2.1.4 | Context-pack compression utilities |
@codragraph/sdk |
2.1.4 | Programmatic SDK surface |
@codragraph/org |
2.1.4 | Tenant, RBAC, and audit helpers |
@codragraph/claude-plugin |
2.1.4 | Claude Code hooks and skills |
@codragraph/codex |
2.1.4 | Codex hook installer |
- Documentation index
- Install guide
- Architecture
- AI agent CLI guide
- Storage and retrieval
- Runbook
- Guardrails
- Contributing
- Testing
- LLM context file
Package and integration README mirrors live under docs/packages and docs/integrations, so users can inspect the public API and integration behavior without cloning the private development tree.
SHA-256 checksums are published in downloads/npm/SHA256SUMS.txt.
Linux/macOS:
cd downloads/npm
shasum -a 256 -c SHA256SUMS.txtWindows PowerShell:
Get-FileHash .\downloads\npm\codragraph-cli-2.1.4.tgz -Algorithm SHA256CodraGraph packages are distributed under the Apache License 2.0. See LICENSE.
Please do not open public issues for vulnerabilities. See SECURITY.md.
