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/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumen",
"version": "0.0.41",
"version": "0.0.42",
"description": "Precise local semantic code search via MCP. Indexes your codebase with Go AST parsing, embeds with Ollama or LM Studio, and exposes vector search to Claude through an MCP server — no cloud, no npm.",
"author": {
"name": "Ory Corp",
Expand Down
2 changes: 1 addition & 1 deletion .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lumen",
"displayName": "Lumen",
"description": "Precise local semantic code search via MCP. Indexes your codebase with Go AST parsing, embeds with Ollama or LM Studio, and exposes semantic search directly in Cursor.",
"version": "0.0.41",
"version": "0.0.42",
"author": {
"name": "Ory Corp",
"url": "https://github.com/ory"
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.41"
".": "0.0.42"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.0.42](https://github.com/ory/lumen/compare/v0.0.41...v0.0.42) (2026-08-11)


### Features

* **clean:** remove stale and orphaned indexes ([#180](https://github.com/ory/lumen/issues/180)) ([f62bf57](https://github.com/ory/lumen/commit/f62bf57cc08d307f7d81801fd297c7e199ed4d66))
* **codex:** add native Lumen plugin package ([#184](https://github.com/ory/lumen/issues/184)) ([f0a2622](https://github.com/ory/lumen/commit/f0a262205fc4833e486bfe17589f413a59a35983))
* share and compress Lumen indexes across worktrees ([#183](https://github.com/ory/lumen/issues/183)) ([80fe333](https://github.com/ory/lumen/commit/80fe333f533408c4b5e5e751477e3772cbae2d69))


### Bug Fixes

* **clean:** address review feedback ([#182](https://github.com/ory/lumen/issues/182)) ([cce6305](https://github.com/ory/lumen/commit/cce6305835a9b69ee6cabb2cac6846bed1672890))
* **index:** safely seed nested worktree indexes ([#178](https://github.com/ory/lumen/issues/178)) ([ce62b60](https://github.com/ory/lumen/commit/ce62b6051ac5cb46418b8bfbc4c43ce32cb74bd2))
* qualify plugin MCP tool references ([#179](https://github.com/ory/lumen/issues/179)) ([f854abc](https://github.com/ory/lumen/commit/f854abc34d7c0f6874fd55933317035f1e8b605e))

## [0.0.41](https://github.com/ory/lumen/compare/v0.0.40...v0.0.41) (2026-05-20)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ory/lumen-opencode",
"version": "0.0.41",
"version": "0.0.42",
"description": "Precise local semantic code search plugin for OpenCode — indexes with Go AST/tree-sitter and embeds with Ollama or LM Studio",
"type": "module",
"main": ".opencode/plugins/lumen.js",
Expand Down
6 changes: 4 additions & 2 deletions plugins/lumen/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumen",
"version": "0.0.41",
"version": "0.0.42",
"description": "Precise local semantic code search for Codex, powered by local embedding models.",
"author": {
"name": "Ory Corp",
Expand All @@ -25,7 +25,9 @@
"longDescription": "Index and search a codebase semantically with local embedding models and no cloud service.",
"developerName": "Ory Corp",
"category": "Developer Tools",
"capabilities": ["Read"],
"capabilities": [
"Read"
],
"websiteURL": "https://github.com/ory/lumen",
"defaultPrompt": [
"Find the code relevant to this task with Lumen.",
Expand Down
2 changes: 1 addition & 1 deletion plugins/lumen/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "lumen",
"version": "0.0.41",
"version": "0.0.42",
"description": "Precise local semantic code search for coding agents, powered by local embedding models.",
"author": {
"name": "Ory Corp",
Expand Down
Loading