Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
58f62df
Merge pull request #24 from weirdstuff-dev/dev
themartto May 16, 2026
98479a1
Merge pull request #25 from weirdstuff-dev/dev
themartto May 21, 2026
f461046
feat: update change log and bump Cargo.toml version
themartto May 21, 2026
2f6fa99
feat: update Cargo.lock
themartto May 21, 2026
84c5461
feat: refactor TUI to use ratatui
themartto May 22, 2026
52fcd1a
feat: move info panels to prompt
themartto May 22, 2026
d9344ae
fix: resolve per-session llm client in acp_prompt
themartto May 22, 2026
2372d94
feat: add :models command with interactive popup picker
themartto May 22, 2026
b480016
feat: update "openheim" text on welcome screen
themartto May 22, 2026
58e82cd
feat: refactor :config view
themartto May 22, 2026
f1bed81
fix: restore session as active when opening from history
themartto May 22, 2026
9058460
refactor: replace :sessions text list with interactive picker
themartto May 22, 2026
d4a71de
feat: refactor skills view
themartto May 22, 2026
c4f29c1
feat: refactor mcp view
themartto May 22, 2026
9fac876
fix(tools): execute command error handling
themartto May 23, 2026
3de9612
feat: implement themes
themartto May 23, 2026
a4d9028
fix: lint & clippy
themartto May 23, 2026
60d06a6
fix(tui): default theme "dark_gray" → "gray"
themartto May 23, 2026
f0c2d7c
refactor(tui): Screen::is_overlay(), push_screen helper, match-based …
themartto May 23, 2026
892cf0c
refactor(tui): extract handle_scroll_key, replace triplicated scroll …
themartto May 23, 2026
8000ced
refactor(tui): merge config/mcp viewers into shared helper, extract c…
themartto May 23, 2026
8d85959
refactor(tui): extract highlight_row helper, deduplicate picker selec…
themartto May 23, 2026
0c6de3f
refactor(tui): replace hand-rolled char boundary fns with str::floor/…
themartto May 23, 2026
d88025e
chore(tui): drop map_err boilerplate on IO errors, use ? directly
themartto May 23, 2026
557dfc2
chore(tui): move imports before functions, make word_wrap private, re…
themartto May 23, 2026
edfde7b
revert(tui): keep ToolResult output dark gray regardless of error status
themartto May 23, 2026
7dbdfbb
Merge pull request #27 from weirdstuff-dev/tui-fixes
themartto May 23, 2026
63855d1
fix: lint & clippy
themartto May 23, 2026
7ea1fa5
fix(acp): load full provider config in acp_session_load
themartto May 23, 2026
f56e140
fix: full (provider, model) pair on model switch
themartto May 23, 2026
2bb9819
fix(tui): clear current session on restore session
themartto May 23, 2026
b3080a3
feat: add TerminalGuard RAII
themartto May 23, 2026
0d57689
fix: messages word wrap
themartto May 23, 2026
3373eca
fix: fmt
themartto May 23, 2026
ed4e1f4
fix: warn when restored session provider is not configured
themartto May 23, 2026
61ec0de
fix: add model-whitelist check in `resolve_with_provide
themartto May 23, 2026
acd30eb
fix: fmt
themartto May 23, 2026
ac71bd2
fix: clippy
themartto May 23, 2026
90bb3a9
fix: fmt
themartto May 23, 2026
04dfbc4
fix(mcp): kill child process on drop
themartto May 27, 2026
6a1e333
feat: real token streaming and thinking display for all LLM providers
themartto May 27, 2026
64eb56d
chore: fmt & clippy
themartto May 27, 2026
76fdab2
fix: clippy
themartto May 27, 2026
eb59ab9
chore: fmt
themartto May 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.1.1] - 2026-05-21

### Fixed

- **Tool call history gaps** — ACP sessions were silently dropping tool calls from stored history; all tool calls are now captured correctly.
- **Accurate status on replay** — Replayed tool calls now emit `InProgress` before resolving, matching the behaviour of live sessions.
- **Failed tool calls now surface as `Failed`** — Previously, tool failures were stored as plain text and replayed as `Completed`. The `is_error` flag is now persisted in `Message` and propagated through `StreamEvent::ToolResult` so both live and replayed paths emit `ToolCallStatus::Failed`.
- **Tool error logging** — Improved logging for tool call errors.

### Improved

- **LLM accuracy on failures** — `is_error` is forwarded to Anthropic's `tool_result` block, giving the model accurate signal when a tool has failed.
- Added `CHANGELOG.md`.
Comment thread
themartto marked this conversation as resolved.
- Updated documentation for `is_error` and tool call history replay semantics.
- README updates.

## [0.1.0] - 2026-05-15

First public release of openheim — a fast, multi-provider LLM agent runtime written in Rust.
Expand Down
Loading
Loading