Mole is a small CLI “coding agent” that can explore and modify a codebase using filesystem tools (glob/grep/read/ls/tree) plus safe write operations that require confirmation.
python -m venv venv
source venv/bin/activate
pip install -r requirements.txtCreate a .env with the provider key you want:
OPENAI_API_KEY=...ANTHROPIC_API_KEY=...DEEPSEEK_API_KEY=...(for DeepSeek via OpenAI-compatible API)
python mole.py "your request here"You can also pick a specific model (OpenAI or Anthropic):
python mole.py --model gpt-5.2 "..."
python mole.py --model claude-sonnet-4-5 "..."MIT (see LICENSE).