opencode-codebase-index 0.18.1 → 0.19.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 +33 -8
- package/commands/call-graph.md +5 -4
- package/dist/cli.cjs +3990 -1293
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +3895 -1198
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +4927 -2231
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5448 -2752
- package/dist/index.js.map +1 -1
- package/dist/pi-extension.cjs +3714 -906
- package/dist/pi-extension.cjs.map +1 -1
- package/dist/pi-extension.js +3635 -827
- 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.win32-x64-msvc.node +0 -0
- package/package.json +2 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-codebase-index",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "Semantic codebase indexing and search for OpenCode - find code by meaning, not just keywords",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"eval:ci": "npx tsx src/cli.ts eval run --reindex --ci --budget benchmarks/budgets/default.json --against benchmarks/baselines/eval-baseline-summary.json",
|
|
50
50
|
"eval:ci:ollama": "npx tsx src/cli.ts eval run --config .github/eval-ollama-config.json --reindex --ci --budget benchmarks/budgets/default.json --against benchmarks/baselines/eval-baseline-summary.json",
|
|
51
51
|
"eval:compare": "npx tsx src/cli.ts eval compare",
|
|
52
|
+
"eval:effectiveness": "npx tsx scripts/effectiveness-report.ts",
|
|
52
53
|
"dev:link-mcp": "node scripts/link-local-mcp-bin.mjs",
|
|
53
54
|
"test": "vitest",
|
|
54
55
|
"pretest:run": "node scripts/run-build-native-with-rustflags.mjs",
|