opencode-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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +7 -2
- package/dist/cbi.cjs +2322 -1135
- package/dist/cbi.cjs.map +1 -1
- package/dist/cbi.js +2313 -1126
- package/dist/cbi.js.map +1 -1
- package/dist/cli.cjs +3236 -1097
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +3226 -1087
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +2379 -1031
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2374 -1026
- package/dist/index.js.map +1 -1
- package/dist/pi-extension.cjs +2419 -1078
- package/dist/pi-extension.cjs.map +1 -1
- package/dist/pi-extension.js +2414 -1073
- package/dist/pi-extension.js.map +1 -1
- package/native/codebase-index-native.darwin-arm64.node +0 -0
- package/native/codebase-index-native.darwin-x64.node +0 -0
- package/native/codebase-index-native.linux-arm64-gnu.node +0 -0
- package/native/codebase-index-native.linux-x64-gnu.node +0 -0
- package/native/codebase-index-native.win32-x64-msvc.node +0 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](https://www.npmjs.com/package/open-codebase-index)
|
|
6
6
|
[](https://github.com/Helweg/open-codebase-index/actions)
|
|
7
|
-
[](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
|
|
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.
|