Releases: he-yufeng/AnyCoder
Releases Β· he-yufeng/AnyCoder
Release list
v0.1.0 - Initial Release
AnyCoder v0.1.0
AI coding agent in your terminal. Works with any LLM.
Features
- 100+ LLM providers via litellm (DeepSeek, Qwen, GPT-5, Claude, Gemini, Kimi, Ollama, etc.)
- 6 built-in tools: bash (with safety checks), read_file, write_file, edit_file (with diff output), glob, grep
- Streaming output with token-by-token display
- Two-phase context compression (snip tool outputs, then summarize)
- Parallel tool execution for multiple simultaneous tool calls
- Dangerous command blocking (rm -rf, fork bombs, curl|bash, etc.)
- Session persistence (save/resume conversations)
- Binary file detection (read_file rejects, grep skips)
- Multiline input (Esc+Enter for newline)
- .env support (project root + ~/.anycoder/)
Install
pip install anycoderQuick Start
export DEEPSEEK_API_KEY=sk-...
anycoder
anycoder -m claude
anycoder -m gpt530 tests, Python 3.10-3.13, ~1,450 lines of Python.