Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ new version heading in the same commit.

## [Unreleased]

## [0.225.1] — 2026-07-16
### Fixed
- **Operations → Activity now works in the terminal-tabs view.** The v0.224.0 Activity shortcut set the
panel state via `setInspect`, but `SessionsPage` early-returns the terminal-tabs view before the
`{inspect && <SessionActivity>}` render, which lived only in the session-list branch — so opening a
session's terminal and choosing Operations → Activity did nothing. Mount the `SessionActivity` panel in
the terminal-view branch too, so the shortcut opens the trail from both views.

## [0.225.0] — 2026-07-16
### Fixed
- **Delegation loop closes itself: the caller is woken when the delegate finishes.** Two gaps meant an
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agent-os",
"version": "0.225.0",
"version": "0.225.1",
"description": "A generic, governed operating system for running autonomous agents safely across brands. Ships with a local web console.",
"license": "MIT",
"type": "commonjs",
Expand Down
3 changes: 3 additions & 0 deletions web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2783,6 +2783,9 @@ function SessionsPage({
</div>
<TerminalFrame key={selected.tmux} session={sessions.find((s) => s.tmux === selected.tmux)} tmux={selected.tmux} onActivity={onActivity}
ops={{ members, me, onOpen, onStop, onDelete, onTransfer, onActivity: setInspect }} />
{/* Activity side panel — mounted here too so the Operations→Activity shortcut works from the
terminal-tabs view, not just the list view (this branch early-returns before the list's copy). */}
{inspect && <SessionActivity session={inspect} onClose={() => setInspect(null)} />}
</div>
)
}
Expand Down
Loading