Agent Skills
› parcadei/Continuous-Claude-v3
› leann-search
leann-search
GitHub提供基于向量索引的语义代码搜索能力,支持自然语言查询以理解代码概念、模式和关联逻辑。适用于需要查找语义相似代码而非精确匹配的开发场景。
Trigger Scenarios
使用自然语言描述功能或概念进行代码检索
理解代码架构模式或寻找语义相关的实现
当精确关键字搜索无法找到意图相关的代码时
Install
npx skills add parcadei/Continuous-Claude-v3 --skill leann-search -g -y
SKILL.md
Frontmatter
{
"name": "leann-search",
"description": "Semantic search across codebase using LEANN vector index",
"allowed-tools": [
"Bash",
"Read"
]
}
LEANN Semantic Search
Use LEANN for meaning-based code search instead of grep.
When to Use
- Conceptual queries: "how does authentication work", "where are errors handled"
- Understanding patterns: "streaming implementation", "provider architecture"
- Finding related code: code that's semantically similar but uses different terms
When NOT to Use
- Exact matches: Use Grep for
class Foo,def bar, specific identifiers - Regex patterns: Use Grep for
error.*handling,import.*from - File paths: Use Glob for
*.test.ts,src/**/*.py
Commands
# Search the current project's index
leann search <index-name> "<query>" --top-k 5
# List available indexes
leann list
# Example
leann search rigg "how do providers handle streaming" --top-k 5
MCP Tool (in Claude Code)
leann_search(index_name="rigg", query="your semantic query", top_k=5)
Rebuilding the Index
When codebase changes significantly:
cd /path/to/project
leann build <project-name> --docs src tests scripts \
--file-types '.ts,.py,.md,.json' \
--no-recompute --no-compact \
--embedding-mode sentence-transformers \
--embedding-model all-MiniLM-L6-v2
How It Works
- LEANN uses sentence embeddings to understand meaning
- Searches find conceptually similar code, not just text matches
- Results ranked by semantic similarity score (0-1)
Grep vs LEANN Decision
| Query Type | Tool | Example |
|---|---|---|
| Natural language | LEANN | "how does caching work" |
| Class/function name | Grep | "class CacheManager" |
| Pattern matching | Grep | error|warning |
| Find implementations | LEANN | "rate limiting logic" |
Version History
- d07ff4b Current 2026-08-20 12:45


