codeseek
Rust-powered code intelligence CLI for AI coding agents. Builds call graphs and hybrid semantic search indexes (Dense + Sparse + RRF + Reranker) across 7 languages. Ships as native MCP tools for Claude Code and Codex CLI.
File Explorer
Download Latest Version (.zip)- bug_report.yml
- config.yml
- feature_request.yml
- release.yml
- ARCHITECTURE.md
- codeseek-cli-rewrite-plan.md
- js-detector.md
- SETUP_GUIDE.md
- codeseek.rb
- file_hashes.json
- file_hashes.json
- analyze.rs
- args.rs
- mod.rs
- runner.rs
- vectorize.rs
- cpp.rs
- go.rs
- java.rs
- js.rs
- python.rs
- rust.rs
- ts.rs
- utils.rs
- ast_instance_structs.rs
- file_ast_markup.rs
- language_id.rs
- mod.rs
- parsers.rs
- skeletonizer.rs
- structs.rs
- chunker.rs
- graph.rs
- mod.rs
- parser.rs
- repository.rs
- types.rs
- mod.rs
- mod.rs
- server.rs
- tools.rs
- analyzer.rs
- callgraph_service.rs
- embedding_service.rs
- hybrid_search.rs
- mod.rs
- reranker_service.rs
- snippet_service.rs
- incremental.rs
- lock.rs
- mod.rs
- persistence.rs
- petgraph_storage.rs
- prelude.rs
- tantivy_index.rs
- traits.rs
- traits_bm25.rs
- mod.rs
- progress.rs
- config.rs
- lib.rs
- main.rs
- watcher.rs
- circle.cpp
- circle.cpp.decl_json
- circle.cpp.skeleton
- main.cpp
- main.cpp.json
- main.go
- main.go.json
- shape.go
- shape.go.decl_json
- shape.go.skeleton
- main.java
- main.java.json
- person.java
- person.java.decl_json
- person.java.skeleton
- car.js
- car.js.decl_json
- car.js.skeleton
- main.js
- main.js.json
- calculator.py
- calculator.py.decl_json
- calculator.py.skeleton
- main.py
- main.py.json
- main.rs
- main.rs.json
- point.rs
- point.rs.decl_json
- point.rs.skeleton
- main.ts
- main.ts.json
- person.ts
- person.ts.decl_json
- person.ts.skeleton
- cpp.rs
- go.rs
- java.rs
- js.rs
- mod.rs
- python.rs
- rust.rs
- ts.rs
- dataProcessor.js
- index.js
- main.9d1c33d4.js
- mathUtils.js
- package.json
- stringUtils.js
- data_processor.py
- main.py
- math_utils.py
- string_utils.py
- lib.rs
- main.rs
- math.rs
- utils.rs
- Cargo.lock
- Cargo.toml
- dataProcessor.ts
- main.ts
- mathUtils.ts
- stringUtils.ts
- package.json
- tsconfig.json
- core-ouptputs.json
- run_functional_tests.sh
- test_functional.rs
- test_python_parser_debug.rs
- test_semantic_search.py
- build.rs
- Cargo.lock
- Cargo.toml
- bump-version.sh
- codeseek.ts
- download.ts
- .gitignore
- build.sh
- CLAUDE.md
- CONTRIBUTING.md
- LICENSE
- package-lock.json
- package.json
- README.md
- README_ZH.md
- tsconfig.json
๐ Installation Guide
git clone https://github.com/CodeBendKit/codeseek
Downloads the entire project code from GitHub to your computer.
cd codeseek
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommendednpm install -g codeseek
Installs the package published on the npm registry globally โ no need to clone the source.
brew tap CodeBendKit/codeseek git@github.com:CodeBendKit/codeseek.git
Registers this project's repository (tap) with Homebrew.
brew install codeseek
Installs the pre-built package via Homebrew โ no source build required.
Pulled directly from this repo's README.
3. Node.js
Easynpm install -g codeseek
Installs the package published on the npm registry globally โ no need to clone the source.
npm run build
Builds optimized production files.
Pulled directly from this repo's README.
4. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build
Compiles the Rust project.
cargo test
Type this command into your terminal and run it.
Pulled directly from this repo's README.
