Show HN: AI that edits your files directly, no approvals [demo]
Hey HN,
I am building Aye Chat, an open-source terminal workspace that integrates AI code generator directly into your shell, allowing you to edit files and run commands as well as prompt AI seamlessly.
The AI writes code directly to your files immediately, eliminating the "review and approve" out of the loop.
At the same time, every AI edit is snapshotted locally, so you can instantly undo any change with a single command. This automatic file update with a safety net is the core idea.
Also, in the same session, you can run shell commands, open Vim, and ask the AI to modify your code, turning it into an AI-powered terminal.
I built this because I got tired of the "suggest -> review -> approve -> changes applied" loop in existing AI coding tools. As models improve and generate proper code more often than not, manual approval started to feel unnecessary as long as there is a strong safety net to allow easy rollback of the changes. Yes, the idea is not exactly groundbreaking: other tools already offer "set a dangerous flag and remember to recover later" settings, but what I am exploring is defaults, not capability. With Aye Chat, the default is the opposite: apply immediately and make undo trivial. There are no flags to remember, no mode switches, and you don't need to exit the tool to roll back.
You can watch a 1-minute demo here: https://youtu.be/h5laV5y4IrM
Basically, the typical workflow goes like this (instead of a chat window, you stay in your terminal):
$ aye chat # starts the session
> fix the bug in server.py
Fixed undefined variable on line 42
> vim server.py
[opens real Vim, returns to chat after]
> refactor: make it async
Updated server.py with async/await
> pytest
Tests fail
> restore
Reverted last changes
I use Aye Chat both in my work projects and to build Aye Chat itself. Recently, I used it to implement a local vector search engine in just a few days.Lower-level technical details that went into the tool:
The snapshot engine is a Python-based implementation that serves as a lightweight version control layer.
For retrieval, we intentionally avoided PyTorch to keep installs lightweight. Instead, we use ChromaDB with ONNXMiniLM-L6_V2 running on onnxruntime.
File indexing runs in the background using a fast coarse pass followed by AST-based refinement.
What I learned:
The key realization was that the bottleneck in AI coding is often the interface, not the model. By shifting to the AI writing code immediately with users still maintaining full control to undo those changes - we eliminate the cognitive load of the review-and-approve loop.
I also learned that early users do not accept a custom snapshot engine, so to make it professional-grade we are now integrating it with git refs.
What I’d love feedback on: - After using it for a while, did replacing approvals with undo actually change how you work, or did it feel no different from existing terminal-based AI tools (GitHub Copilot CLI, Claude Code)? - Was there a moment when this started to feel natural to use, or did it never quite click?
There is a 1-line quick install:
pip install ayechat
Homebrew and Windows installer are also available.Repo: https://github.com/acrotron/aye-chat. If you find it interesting, a repo star would mean a lot!
It's early days, but Aye Chat is working well for me. I would love to get your feedback. Feel free to hop into the Discord (https://discord.gg/ZexraQYH77) and let me know how it goes.
No comments yet.