Help us improve
Share bugs, ideas, or general feedback.
CodeEagle - Codebase knowledge graph and AI-powered code intelligence
npx claudepluginhub imyousuf/codeeagleCodebase knowledge graph and AI-powered code intelligence. Index codebases into a knowledge graph and query symbols, interfaces, dependencies, test coverage, and unused code.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
CodeEagle is a CLI tool that indexes codebases into a knowledge graph and exposes AI agents for planning, design review, and code review — all grounded in deep codebase understanding.
It supports monorepos, multi-repo setups, and multi-language codebases (Go, Python, TypeScript, JavaScript, Java, Rust, C#, Ruby, HTML, Markdown, Makefile, Shell, Terraform, YAML). No external database required — the embedded graph store runs locally with zero setup.
dslipak/pdf). Documents are indexed, topic-extracted via LLM, and semantically searchableEdgeTests linking to source counterpartsDownload the latest release for your platform from GitHub Releases:
codeeagle-linux-amd64.tar.gz, codeeagle-linux-arm64.tar.gzcodeeagle-darwin-amd64.tar.gz, codeeagle-darwin-arm64.tar.gzExtract and move to your PATH:
tar -xzf codeeagle-<platform>.tar.gz
sudo mv codeeagle /usr/local/bin/
To update to the latest version:
codeeagle update
Requires Go 1.24+ and a C compiler (gcc or clang) — needed for tree-sitter parsing via CGO.
go install github.com/imyousuf/CodeEagle/cmd/codeeagle@latest
Or clone and build:
git clone https://github.com/imyousuf/CodeEagle.git
cd CodeEagle
make build
# Binary: bin/codeeagle
# 1. Initialize a project (creates .CodeEagle/ directory)
codeeagle init # quick setup with defaults
codeeagle init --interactive # guided setup wizard
# 2. Index the codebase
codeeagle sync
# 3. Check indexing status
codeeagle status
# 4. Ask an AI agent a question
codeeagle agent plan "What would be affected if I change the Store interface?"
codeeagle agent design "How is authentication handled across services?"
codeeagle agent review --diff HEAD~1
codeeagle agent ask "What are the largest packages by node count?"
codeeagle init [--interactive|-i] Initialize project config
codeeagle config View current configuration
codeeagle config edit Edit configuration interactively
codeeagle sync [--full] Sync knowledge graph (incremental or full)
codeeagle sync --export Export graph to portable file
codeeagle sync --import Import a graph export
codeeagle watch Watch for file changes and sync continuously
codeeagle status Show indexing status and graph stats
codeeagle agent plan <query> Impact analysis, dependency mapping, scope estimation
codeeagle agent design <query> Architecture review and pattern recognition
codeeagle agent review <query> Code review against codebase conventions
codeeagle agent review --diff <ref> Review a git diff
codeeagle agent ask <query> Freeform Q&A about the codebase