Last reviewed: 2026-06-06 Persona: Individual developer running TeaAgent locally from the terminal
You want a governed terminal agent — not an IDE plugin — with clear permissions, cost caps, and an audit trail you can inspect after each run.
- Python 3.11+ (see README for venv setup)
- A model provider API key (OpenAI, Anthropic, etc.)
pip install -e .
teaagent setup --root . --provider gpt --permission-mode read-only --write-env
source ~/.teaagent/providers_env.zsh # or your shell snippet
teaagent daily "what should I work on?" --human --root .
teaagent run "summarize the test suite" --permission-mode read-only --root .| Habit | Command |
|---|---|
| Read-only exploration | --permission-mode read-only |
| Writes with approval | --permission-mode prompt |
| Cost cap | --max-estimated-cost-cents 500 |
| See what happened | teaagent agent runs show <run_id> --receipt --root . |
| Undo last write | teaagent agent undo --last --root . |
- Plan / explore →
read-only - Implement with guardrails →
workspace-write(plan required by default) - Interactive destructive →
prompt - Trusted automation only →
allowordanger-full-access
- Full walkthrough: USAGE.md
- TUI loop:
teaagent tui --setup --root . - When TeaAgent is a bad fit: When Not to Use TeaAgent