百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
zvec-grep

zvec-grep

> 开发工具
免费

在整个工作空间中进行本地优先搜索,专为人类和 AI 代理程序打造。

3.3K stars0 点赞3 次浏览
GitHub

工具介绍

在整个工作空间中进行本地优先搜索,专为人类和 AI 代理程序打造。

English | 中文

**zg** (**z**vec-**g**rep), powered by [zvec](https://github.com/alibaba/zvec), unifies ripgrep, BM25, and vector search behind [one local-first interface](./docs/05-architecture.md). Use it directly from the terminal, or let your agent use it for you. ## See it in action ## Why zg? - **Ready for humans and agents** — install once, index once, then use the same workspace from the CLI or your agent on macOS, Linux, and Windows. - **Search beyond keywords** — discover by meaning, rank by relevance, then verify with exact text or regex when needed. - **Multi-format search** — search source code, documents, and structured data while preserving useful structure and source locations. - **Less searching, less context** — ranked, source-linked results surface the right evidence with fewer tool calls, fewer tokens, and less noise. - **Local by default** — files, indexes, and local models stay on your machine; remote embeddings receive data only with your permission. ## Try it yourself ### 1. Set up a sample bookshelf ```bash # Requires Node.js 22 or newer. npm install -g @zvec/zvec-grep mkdir zg-mystery && cd zg-mystery curl --retry 3 --retry-all-errors --progress-bar -fL \ -o alice-in-wonderland.txt https://raw.githubusercontent.com/GITenberg/Alice-s-Adventures-in-Wonderland_11/master/11.txt \ -o sherlock-holmes.txt https://raw.githubusercontent.com/GITenberg/The-Memoirs-of-Sherlock-Holmes_834/master/834.txt zg index --embedding local/potion-retrieval-32m ``` > [!NOTE] > The index is stored in `.zvec-grep/` under the indexed project root. > [!TIP] > If `zg index` or `zg query` fails, rerun the same command with `--debug` > for diagnostics (supported in both direct and server modes). > `zg status --mode direct --debug` reports per-file failures stored in an > existing index; rerun a failed direct command to diagnose command-level > fatal errors. Use > `zg status --mode server --debug` to inspect recorded server indexing errors. > For server connection failures, check `zg server status` and the > [server logs](./docs/06-server.md#logs-and-state). ### 2. Choose how to search #### For agents: ask with OpenCode With [OpenCode](https://opencode.ai/) configured: ```bash zg install --target opencode --yes opencode models opencode run --model opencode/nemotron-3-ultra-free \ "An unseen creature left a few marks. What did the detective infer? Cite local evidence." ``` Free model availability can change. Check `opencode models` and replace the example model with one that is currently available in your environment. OpenCode chooses zg on its own—the prompt does not name a tool. See the full agent run and answer ``` … ``` #### For humans: search directly Search the same bookshelf directly, without an agent: ```bash zg query --human "An unseen creature left a few marks. What did the detective infer?" --limit 3 ``` zg returns the relevant passages from `sherlock-holmes.txt`, ranked ahead of `alice-in-wonderland.txt`. ### Index embedding concurrency and GPU errors `zg --index --index-embedding-concurrency ` and `ZVEC_GREP_INDEX_EMBEDDING_CONCURRENCY` control embedding concurrency while building or updating an index, for both local and remote models. The environment variable also applies to automatic indexing and refresh. These controls do not change query-vector inference. The CLI option is accepted only with `--index`. For llama.cpp, the limit controls contexts per indexing model instance. For Transformers.js, it controls calls in flight on one cached pipeline and does not guarantee simultaneous native/GPU execution. Both cap positive integer values at **8**. For Potion/model2vec, it controls concurrent embedding batches without that cap; the default is **2** and the CPU worker pool has its own capacity limit. For remote models, both controls set the maximum concurrent batches without the cap of 8. Existing adaptive scheduling and its defaults remain unchanged; it may reduce concurrency after rate limits or retryable failures. The priority is the explicit CLI/API index option, then the index environment variable, then `ZVEC_GREP_LLAMA_CONTEXT_PARALLELISM` (llama.cpp indexing only), then the automatic default. For llama.cpp and Transformers.js, CPU execution or a runtime without a VRAM query uses 1 unless overridden. Transformers.js currently has no VRAM query, so its automatic limit is 1. When a GPU runtime provides free VRAM, the limit is `floor(freeVRAM × 0.25 / 150 MiB)`, clamped to 1–8; a failed or invalid VRAM query uses 2. This retains the existing 150 MiB heuristic, which is not a guarantee that a model will fit in memory. For CUDA errors, memory exhaustion, or native crashes, try a limit of 1 and retry the index. These examples run directly so the new environment takes effect immediately: ```bash export ZVEC_GREP_INDEX_EMBEDDING_CONCURRENCY=1 zg --index --mode direct ``` Windows PowerShell: ```powershell $env:ZVEC_GREP_INDEX_EMBEDDING_CONCURRENCY = "1" zg --index --mode direct ``` An explicit CLI option overrides the environment for that index operation, including when using the daemon; no daemon restart is needed for the CLI option: ```bash export ZVEC_GREP_INDEX_EMBEDDING_CONCURRENCY=8 zg --index --index-embedding-concurrency 1 ``` To change the daemon's environment-variable default, update its startup environment, then run `zg --server off` and `zg --server on` from that environment. If an agent launches zg, update its environment and restart the agent/MCP connection too. JavaScript exceptions can be caught, but native aborts can terminate the process before any CPU fallback runs. A limit of 1 reduces concurrency; it does not prevent every GPU failure. You can also retry with `--device cpu`. ## Benchmarks Each benchmark uses paired A/B runs with tasks, agent/model, prompt, environment, and limits held constant; only zg access and usage guidance differ. See the [benchmark documentation](./benchmarks/README.md) for full results and reproduction details. ### 1. Cross-Domain Agent Benchmark [SWE-QA-Bench](./benchmarks/swe-qa-bench/README.md) uses Claude Code with Claude Opus 5 at high reasoning effort; [BrowseComp-Plus](./benchmarks/browse-comp-plus/README.md) uses Codex gpt-5.6-sol at medium reasoning effort. Both zg profiles use Qwen3.7 Text Embedding.

- **Why it helps:** semantic discovery narrows the search space, ranked lexical retrieval anchors exact identifiers, and compact evidence reduces broad scans, repeated tool calls, and model context. - **Why it generalizes:** the same retrieval loop works across domains—code is indexed with symbols, signatures, and breadcrumbs, while prose is retrieved as focused sections and chunks. ### 2. Real-World Case Studies
- **[Pylint](https://github.com/pylint-dev/pylint) — Python static analysis:** the task asks how AST node handling separates annotated and non-annotated attribute initialization. Symbol-aware retrieval is useful because the architectural entry point is not known in advance. - **[Matplotlib](https://github.com/matplotlib/matplotlib) — plotting and rendering:** the task traces `FontInfo` and font selection through multiple math-text rendering stages. Ranked semantic and lexical evidence helps reconstruct the cross-file data and control flow. - **[Django](https://github.com/django/django) — web framework:** the task connects username uniqueness, ORM transactions, and formset bulk operations. Compact ranked evidence brings the distributed design rationale together. Repository questions | Repository | Question type | Question | | --- | --- | --- | | **`pylint-dev/pylint`** | What
Architecture exploration | What is the architectural pattern that distinguishes type-annotated from non-annotated instance attribute initialization using AST node type separation? | | **`matplotlib/matplotlib`** | Where
Data / Control-flow | Where does the `FontInfo` NamedTuple propagate font metrics and glyph data through the mathematical text rendering pipeline, and what control flow determines whether the `postscript_name` or the `FT2Font` object is used at different stages of character rendering? | | **`django/django`** | Why
Design rationale | Why does the User model's unique constraint on the username field interact with Django's ORM transaction handling, and what cascading effects would occur if this constraint were removed on an existing database with formset-based bulk operations? | > zg works best when evidence spans files or modules and the target location is > unknown, especially for call-chain, data-flow, and architectural questions. > Since agents decide when and how to use it, results vary by model and run; > repeated-run averages are more reliable. ## Documentation | Guide | What you can do | | :--- | :--- | | [Agent integrations](./docs/01-agents.md) | Connect zg to Codex, Claude Code, Qwen Code, Qoder, Cursor, or OpenCode and verify that it works. | | [CLI guide](./docs/02-cli.md) | Search, index, and manage your local workspaces from the terminal. | | [MCP guide](./docs/03-mcp.md) | Understand which zg tools your agent can use and how access is secured. | | [Retrieval pipeline](./docs/04-pipeline.md) | Choose what to index, keep it fresh, and get better search results. | | [Architecture](./docs/05-architecture.md) | See how zg handles your query and where your data stays. | | [Server and execution modes](./docs/06-server.md) | Choose between one-off commands and a long-running local server. | | [Embedding models](./docs/07-embedding.md) | Pick the right model for speed, search quality, privacy, and your hardware. | | [Roadmap](./docs/08-roadmap.md) | See what is coming next and help shape zg's priorities. | ## Join Our Community ## ❤️ Contributing Community contributions are always welcome—bug fixes, features, and documentation improvements all help make zvec-grep better. Check out our [Contributing Guide](./CONTRIBUTING.md) to get started!

Issues· 50 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

ai-agentsbm25cli

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年9月9日
最后更新2026年9月17日
分类开发工具
定价免费

> 相关工具

V
VS Code
流行的开源代码编辑器
G
Git
分布式版本控制系统
V
Vite
下一代前端构建工具