v0.1.0
First MVP milestone (v0.1.0-mvp). A small, hackable terminal agent.
Added
- Streaming REPL agent harness over DeepSeek V4 and OpenAI-compatible providers
(token-by-token output, multi-turn context). Providertrait with DeepSeek, OpenAI, and aMockProviderimplementation,
sharing one OpenAI-compatible SSE parser.- Tool-use dispatch loop with a 5-tool suite:
read_file,write_file,
list_dir,bash,edit— each gated by a per-tool permission prompt. - Session model with JSON persistence: save, list, and resume conversations;
cumulative token-usage tracking. - Configuration system:
config.toml+ aSecretStore(secrets.toml,0600
on Unix); layered precedence (CLI flag > env var > TOML > default). API keys
never touchconfig.tomlor CLI flags. orcarein doctoroffline health checks; quiet-by-defaulttracingdiagnostics
(opt in viaRUST_LOG).clap-based CLI,directories-based cross-platform paths.