Metadata-Version: 2.4
Name: vinemap
Version: 0.1.0
Summary: Vinemap — a local-first, graph-based context engine for AI coding agents
Project-URL: Homepage, https://vinemap.dev
Project-URL: Repository, https://github.com/rohit0x62/vinemap
Project-URL: Issues, https://github.com/rohit0x62/vinemap/issues
Author: WINK
License: Apache-2.0
Keywords: ai,code-graph,coding-agent,context,llm,mcp
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == 'dev'
Provides-Extra: treesitter
Requires-Dist: tree-sitter-language-pack>=0.7; extra == 'treesitter'
Requires-Dist: tree-sitter>=0.23; extra == 'treesitter'
Description-Content-Type: text/markdown

# vinemap

Local-first, graph-based context engine for AI coding agents. Builds a graph of
your codebase (files, symbols, imports, call edges) and delivers token-budgeted
context packs to Claude Code, Cursor, Codex CLI, and any MCP client.

```bash
pip install vinemap

vinemap index .        # build the code graph -> .vinemap/
vinemap query "where is auth handled"
vinemap pack  "how do sessions work"
vinemap mcp .          # stdio MCP server for your agent
```

Zero runtime dependencies. 100% local — nothing leaves your machine.

See the repository root for full documentation, architecture, and roadmap.
