open-codebase-index 0.26.0 → 0.27.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.
@@ -10,7 +10,7 @@
10
10
  "name": "codebase-index",
11
11
  "description": "Semantic code search and codebase graph tools for Claude Code",
12
12
  "source": "./",
13
- "version": "0.26.0"
13
+ "version": "0.27.0"
14
14
  }
15
15
  ]
16
16
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebase-index",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "description": "Semantic code search and codebase graph tools for Claude Code",
5
5
  "displayName": "Codebase Index",
6
6
  "author": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebase-index",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "description": "Semantic code search and codebase graph tools for Codex",
5
5
  "author": {
6
6
  "name": "Kenneth",
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
  [![Downloads](https://img.shields.io/npm/dm/open-codebase-index.svg)](https://www.npmjs.com/package/open-codebase-index)
6
6
  [![Build Status](https://img.shields.io/github/actions/workflow/status/Helweg/open-codebase-index/ci.yml?branch=main)](https://github.com/Helweg/open-codebase-index/actions)
7
- [![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg)](https://nodejs.org/)
7
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D22.13-brightgreen.svg)](https://nodejs.org/)
8
8
 
9
9
  > Search a codebase by meaning, then follow the result into definitions, callers, and dependency paths.
10
10
 
@@ -34,7 +34,7 @@ cbi search "retry recovery" --project /path/to/repo
34
34
 
35
35
  ## Quick start with OpenCode
36
36
 
37
- Requires Node.js 20 or newer.
37
+ Requires Node.js 22.13 or newer. Node.js 24 LTS is recommended.
38
38
 
39
39
  1. Install the package:
40
40
 
@@ -174,6 +174,9 @@ OpenCode project config lives at `.opencode/codebase-index.json`. Codex, Pi, and
174
174
  "minScore": 0.1,
175
175
  "fusionStrategy": "rrf",
176
176
  "rerankTopN": 20
177
+ },
178
+ "mcp": {
179
+ "stallTimeoutMs": 300000
177
180
  }
178
181
  }
179
182
  ```
@@ -205,6 +208,8 @@ Start with:
205
208
 
206
209
  Common provider, native module, stale index, branch, and performance issues are covered in [Troubleshooting](TROUBLESHOOTING.md).
207
210
 
211
+ MCP operations report structured, redacted failures and durable phase diagnostics through `index_status`. If a client has already lost its stdio transport, start a fresh client session before retrying.
212
+
208
213
  ## Evaluation and performance
209
214
 
210
215
  The repository includes reproducible retrieval datasets, latency and quality budgets, baseline comparison, and cross-repository benchmarking tools.