Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: he-yufeng/AnyCoder

v0.1.0 - Initial Release

Choose a tag to compare

@he-yufeng he-yufeng released this 07 Apr 01:59

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 anycoder

Quick Start

export DEEPSEEK_API_KEY=sk-...
anycoder
anycoder -m claude
anycoder -m gpt5

30 tests, Python 3.10-3.13, ~1,450 lines of Python.