Vaner
Integrations

Python SDK Mode

Use Vaner directly from Python applications and automation scripts.

Ask ChatGPTAsk Claude

[!TIP] Prefer MCP mode for interactive IDE agents. Use SDK mode when you are writing your own automation code.

Install from source or package first, then call Vaner directly:

from vaner import api

package = api.query("review auth middleware", ".", client_id="agent-a")
print(package.injected_context)

Good fit for SDK mode

  • CI checks that need deterministic context assembly
  • migration/review scripts that run outside an IDE
  • custom orchestration where you own prompt/model execution

On this page