Ory Lumen: Open Source Local Semantic Search Plugin for Claude Code

Ory Lumen is a Claude Code plugin designed to solve performance issues when working with large codebases. The developer built it after observing that Claude Code takes too long re-reading the same files, sometimes fails to find all files, and degrades in quality with large projects.
How It Works
The plugin indexes your codebase using a code embedding model via Ollama (which is free and fast), then tells Claude Code to use Ory Lumen for semantic code search. It uses SQLite-vec for the vector database functionality.
Development Details
The project was built using Claude Code itself and went through several cycles of fixing performance issues and improving retrieval quality. Claude handled design proposals, implementation, and building the benchmarks. Significant time was invested in improving the TreeSitter and AST parser plus the content chunker. Recent updates include support for efficient git worktree indexing.
Performance and Testing
The developer created a SWE-style benchmark test harness that users can employ to reproduce the results Ory Lumen delivers. In their work, it regularly increases speed versus using vanilla Claude Code, with results that are equal or better in quality.
Availability and Maintenance
The tool is completely free and local-only. The developer is actively maintaining it and encourages users to create issues or submit pull requests.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code AFK Agent: Run Discord-Backed Autonomous Workers via Teams Plugin
Use the official channels plugin and teams agent with env var CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 to spawn single workers from Discord. Includes full CLAUDE.md for a lead agent that dispatches, never works, and force-shuts down silent workers after 60 minutes.

VibeSmith: Local Tool for Detecting Skill Conflicts in Claude Code Projects
VibeSmith is a local macOS desktop app that provides unified visibility across Claude Code projects, detecting conflicts when global and project-level components share names, visualizing dependencies as DAGs, and tracking context token usage.

Claude Code v2.1.217: Subagent Depth Cap, Emoji Autocomplete, and Critical Fixes
Claude Code v2.1.217 caps concurrent subagents at 20, adds emoji autocomplete, fixes memory leak in MCP tool outputs, and resolves Windows auto-update issues.

Comparing Multi-Agent AI Systems: Anthropic's Harness vs Agyn's Engineering Org Model
Anthropic published a harness design for long-running application development, while Agyn's multi-agent system for team-based autonomous software engineering was open-sourced last month. Both systems reject monolithic agents in favor of role separation, structured handoffs, and review loops.