Post
91
Shipped v0.1.2 of vtx β a minimalist coding agent for the terminal.
Most agentic CLIs ship 10k+ token system prompts. Vtx is ~2,200. Less prompt overhead means more room for your code in the model's context window.
Vtx is a from-scratch Python implementation of the design philosophy behind pi-mono β same principles, pure Python, no transpiled runtime.
What ships out of the box:
β Textual TUI + headless CLI (vtx -p "fix the failing test")
β 49 LLM provider gateways, all declared in a single provider.yaml
β 5 core tools (read / edit / write / bash / find) plus web search and fetch
β Session tree with compaction, handoff, and resume
β AGENTS.md / CLAUDE.md auto-discovery
β Skills system β drop SKILL.md files in .agents/skills/ and they become slash commands
β Two OAuth flows (GitHub Copilot device flow, OpenAI Codex PKCE)
β Two-mode permissions: prompt (default) or auto, with a safe-command allowlist
This release adds a proper extension system. Register new LLM-callable tools, intercept tool calls, hook lifecycle events, and add slash commands from a single register(api) function in a Python file under ~/.vtx/agent/extensions/. Extensions can override built-in tools by name and chain handler logic across subscribers.
Apache 2.0. uv tool install vtx-coding-agent and you're running.
GitHub: https://github.com/OEvortex/vtx-coding-agent
PyPI: https://pypi.org/project/vtx-coding-agent
Built in the open. Feedback, extensions, and PRs welcome.
Most agentic CLIs ship 10k+ token system prompts. Vtx is ~2,200. Less prompt overhead means more room for your code in the model's context window.
Vtx is a from-scratch Python implementation of the design philosophy behind pi-mono β same principles, pure Python, no transpiled runtime.
What ships out of the box:
β Textual TUI + headless CLI (vtx -p "fix the failing test")
β 49 LLM provider gateways, all declared in a single provider.yaml
β 5 core tools (read / edit / write / bash / find) plus web search and fetch
β Session tree with compaction, handoff, and resume
β AGENTS.md / CLAUDE.md auto-discovery
β Skills system β drop SKILL.md files in .agents/skills/ and they become slash commands
β Two OAuth flows (GitHub Copilot device flow, OpenAI Codex PKCE)
β Two-mode permissions: prompt (default) or auto, with a safe-command allowlist
This release adds a proper extension system. Register new LLM-callable tools, intercept tool calls, hook lifecycle events, and add slash commands from a single register(api) function in a Python file under ~/.vtx/agent/extensions/. Extensions can override built-in tools by name and chain handler logic across subscribers.
Apache 2.0. uv tool install vtx-coding-agent and you're running.
GitHub: https://github.com/OEvortex/vtx-coding-agent
PyPI: https://pypi.org/project/vtx-coding-agent
Built in the open. Feedback, extensions, and PRs welcome.