A simple coding agent built in ~200 lines of Python. It uses an LLM with three basic tools (read files, list files, edit files) to help you with coding tasks.
You: Make me a new file called hello.py and implement hello world in it
Assistant: Done! Created hello.py with a hello world implementation.
You: Edit hello.py and add a function for multiplying two numbers
Assistant: Added a multiply function to hello.py.