A simple Claude Code-style TUI (terminal UI) for coding assistance, powered by Ollama and huihui_ai/qwen3-coder-abliterated:30b.
- Stream responses directly in the terminal
/read <file>— inject a local file into the conversation context/run <cmd>— run a shell command and add its output to context/clear— wipe conversation history/history— preview all messages/help— list commands- First message automatically includes your CWD and visible files as context
- Python 3.11+
- Ollama running locally
- The model pulled:
ollama pull huihui_ai/qwen3-coder-abliterated:30b
pip install -r requirements.txtpython main.pyThen just type your coding question. Example session:
you explain this file
/read src/main.rs
you what does the parse_args function do?
/run cargo check
you fix the borrow checker error above
Follows the project's conventions:
- Explicit variable types everywhere
- Variables that belong together are grouped
- Blank line before closing
}/ end of function body