diff --git a/apps/ui/src/App.tsx b/apps/ui/src/App.tsx index fdc23d6da..972796f11 100644 --- a/apps/ui/src/App.tsx +++ b/apps/ui/src/App.tsx @@ -17,6 +17,7 @@ import { import { LeftSidebar } from "./components/LeftSidebar"; import { Palette } from "./components/Palette"; import { RightSidebar } from "./components/RightSidebar"; +import { RuntimeMarker } from "./components/RuntimeMarker"; import { ShortcutsOverlay } from "./components/ShortcutsOverlay"; import { StateDot } from "./components/StateDot"; import { UsageBar } from "./components/UsageBar"; @@ -111,6 +112,9 @@ const App: Component = (props) => { onClick={() => store.openAgent(agent().account.id)} > + + {(m) => } + {agent().account.displayName} )} diff --git a/apps/ui/src/components/AgentView.tsx b/apps/ui/src/components/AgentView.tsx index e4ef67709..617aa61ad 100644 --- a/apps/ui/src/components/AgentView.tsx +++ b/apps/ui/src/components/AgentView.tsx @@ -10,6 +10,7 @@ import { import type { Agent, Terminal } from "../stub-data"; import { ChannelView } from "./ChannelView"; import { LogPanel } from "./LogPanel"; +import { RuntimeMarker } from "./RuntimeMarker"; import { StateDot } from "./StateDot"; /** A terminal pane: the fixture scrollback for the terminal a tab references. A @@ -215,6 +216,9 @@ export const AgentView: Component = () => {
+ + {(m) => } + {agent().account.handle} {agent().model} diff --git a/apps/ui/src/components/Bridge.tsx b/apps/ui/src/components/Bridge.tsx index 95746831d..b7651d240 100644 --- a/apps/ui/src/components/Bridge.tsx +++ b/apps/ui/src/components/Bridge.tsx @@ -41,6 +41,7 @@ import { createRovingGroup, type Stop } from "../keyboard/roving"; import type { IssueState } from "../stub-data"; import { BadgeGlyph } from "./BadgeGlyph"; import { IssueCard } from "./IssueCard"; +import { RuntimeMarker } from "./RuntimeMarker"; import { StateDot } from "./StateDot"; /** How the board groups rows. Swimlane = one row per agent (default); status = @@ -665,6 +666,9 @@ export const Bridge: Component = () => { onClick={() => store.openAgent(agent.account.id)} > + + {(m) => } + {agent.account.handle}
@@ -758,6 +762,9 @@ export const Bridge: Component = () => { onClick={() => store.openAgent(agent().account.id)} > + + {(m) => } + {agent().account.handle}