codeix 0.1.8 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,13 +63,14 @@ Works with Git repos, npm, PyPI, and crates.io.
|
|
|
63
63
|
|
|
64
64
|
## MCP tools
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
Seven tools, zero setup. The agent queries immediately — no init, no config, no refresh.
|
|
67
67
|
|
|
68
68
|
| Tool | What it does |
|
|
69
69
|
|---|---|
|
|
70
|
-
| `
|
|
71
|
-
| `
|
|
72
|
-
| `
|
|
70
|
+
| `list_projects` | List all indexed projects |
|
|
71
|
+
| `search_symbols` | Fuzzy search across all symbols (FTS5, BM25-ranked), optionally filtered by project |
|
|
72
|
+
| `search_files` | Find files by name, path, or language, optionally filtered by project |
|
|
73
|
+
| `search_texts` | Full-text search on comments, docstrings, strings, optionally filtered by project |
|
|
73
74
|
| `get_file_symbols` | List all symbols in a file |
|
|
74
75
|
| `get_symbol_children` | Get children of a class/module |
|
|
75
76
|
| `get_imports` | List imports for a file |
|
|
@@ -169,7 +170,7 @@ Add to your MCP client config (e.g. Claude Desktop, Cursor):
|
|
|
169
170
|
- **Local only** — no network, no API keys, works offline and air-gapped
|
|
170
171
|
- **Deterministic** — same source always produces the same index (clean diffs)
|
|
171
172
|
- **Composable** — dependency indexes are auto-discovered and mounted at query time
|
|
172
|
-
- **Minimal surface** —
|
|
173
|
+
- **Minimal surface** — 7 query tools, zero management plumbing
|
|
173
174
|
|
|
174
175
|
## Architecture
|
|
175
176
|
|