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.
Files changed (2) hide show
  1. package/README.md +6 -5
  2. 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
- Six tools, zero setup. The agent queries immediately — no init, no config, no refresh.
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
- | `search_symbols` | Fuzzy search across all symbols (FTS5, BM25-ranked) |
71
- | `search_files` | Find files by name, path, or language |
72
- | `search_texts` | Full-text search on comments, docstrings, strings |
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** — 6 query tools, zero management plumbing
173
+ - **Minimal surface** — 7 query tools, zero management plumbing
173
174
 
174
175
  ## Architecture
175
176
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeix",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "description": "Portable, composable code index — build with tree-sitter, query via MCP",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "repository": {