Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"name": "codebase-index",
"description": "Semantic code search and codebase graph tools for Claude Code",
"source": "./",
"version": "0.24.0"
"version": "0.25.0"
}
]
}
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codebase-index",
"version": "0.24.0",
"version": "0.25.0",
"description": "Semantic code search and codebase graph tools for Claude Code",
"displayName": "Codebase Index",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codebase-index",
"version": "0.24.0",
"version": "0.25.0",
"description": "Semantic code search and codebase graph tools for Codex",
"author": {
"name": "Kenneth",
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.25.0] - 2026-08-19

### Added

- Added a `dryRun` option to `index_codebase` and an `index --dry-run` CLI flag: a read-only preflight that parses the real file set and reports the exact embedding token total (files, source chunks, tokens) without requesting embeddings or writing to the index. The total serves as a fixed, monotonic denominator for live indexing progress (a force index climbs to ~100%; an incremental index tops out below 100% because cached chunks are counted but not re-embedded) and as a cost preview before committing GPU or time.
- Added query-weighted quality aggregates to cross-repository benchmark reports, alongside clearly labelled per-repository macro averages, so uneven cohort sizes cannot obscure the headline Hit@k, MRR, or nDCG results.
- Added a concise `cbi` terminal command for status, indexing, search, definition lookup, and direct caller or callee inspection, while keeping the existing MCP binary unchanged.

### Changed

- Documented optional `codebase_edit_context` guidance for Pi, MCP, and OpenCode workflows, while leaving retrieval discretionary rather than mandatory.

### Fixed

- **Definition retrieval**: Ruby classes and modules are retained in the call-graph symbol catalog so nested Ruby declarations can be resolved by definition lookup.

## [0.24.0] - 2026-08-18

### Added
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opencode-codebase-index",
"version": "0.24.0",
"version": "0.25.0",
"description": "Host-neutral semantic codebase search with embeddings, symbol discovery, and call-graph tooling",
"type": "module",
"main": "dist/index.js",
Expand Down
Loading