
VEXI
Open-source AI coding agent for your terminal
83 followers
Open-source AI coding agent for your terminal
83 followers
VEXI is an open-source AI coding agent built for developers who prefer the terminal. Bring your own API keys, connect OpenAI, Anthropic, and other providers, and accelerate coding, debugging, refactoring, and automation through a lightweight, multilingual, privacy-friendly CLI.



VEXI
memi
Open-source terminal-first agents are where a lot of real developer workflow will shake out. BYOK + provider flexibility is a good default. What does VEXI do to keep long-running refactors inspectable before changes hit the filesystem?
VEXI
@sarveshsea Great question, Sarvesh. This was a core design goal.
Vexi keeps long-running work inspectable in three ways:
1. Nothing hits the filesystem without an explicit apply/skip/edit confirmation per change. You see a colored diff before anything is written.
2. Before any edit is applied, Vexi snapshots only the affected files, not a full-tree git mirror, so you can run "vexi undo" or "vexi redo" to step back instantly without touching your real Git history.
3. Every session is recorded and exportable via "vexi replay" as a standalone HTML, so you can review the entire refactor step by step, even after the fact.
The goal is simple: the agent proposes, you stay in control. Would love your thoughts if you try it.