Metadata-Version: 2.4
Name: egent-code-plexus
Version: 0.6.3
Summary: EgentCodePlexus (ecp) — symbol-level code intelligence graph for AI agents and LLMs
Project-URL: Homepage, https://github.com/coseto6125/egent-code-plexus
Project-URL: Repository, https://github.com/coseto6125/egent-code-plexus
Author: coseto6125
License: SEE LICENSE IN LICENSE.md
Keywords: ai-agents,ast,code-graph,code-intelligence,llm,tree-sitter
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Rust
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# egent-code-plexus (ecp)

Symbol-level code intelligence graph for AI agents and LLMs. Sub-30ms queries
answering "who calls X / what breaks if I change Y", across 30+ tree-sitter
languages. The `ecp` CLI is a native Rust binary; this PyPI package ships the
prebuilt binary for your platform — no Rust toolchain required.

## Install

```sh
# one-off run, no install
uvx egent-code-plexus --help

# install as a tool
uv tool install egent-code-plexus
ecp --version
```

`pipx install egent-code-plexus` works too.

## Usage

```sh
ecp find <symbol>                              # locate a definition
ecp impact --target <symbol> --direction upstream   # who calls it
ecp routes                                     # API route map
```

See the [project README](https://github.com/coseto6125/egent-code-plexus) for
the full command surface.
