Skip to content
Closed
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
4 changes: 4 additions & 0 deletions client/pages/Hub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ export function HubPage() {
</div>
</header>

<Alert variant="info" className="py-3" data-testid="screenshot-demo-hub">
Screenshot demo: the session hub is ready for visual review.
</Alert>

{health && !health.upstream.reachable && (
<Alert variant="danger" data-testid="opencode-upstream-down">
Cannot reach the OpenCode server at {health.upstream.url}. Start one with{" "}
Expand Down
3 changes: 3 additions & 0 deletions client/pages/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ export function SettingsPage() {
<h1 className="text-xl font-bold">Agent settings</h1>
<p className="text-sm text-[var(--color-text-muted)]">Global defaults used by OpenCode projects.</p>
</header>
<Alert variant="info" className="py-3" data-testid="screenshot-demo-settings">
Screenshot demo: global agent defaults are ready for visual review.
</Alert>
<AppearanceControl />
<Alert variant="warning">Saving global settings restarts OpenCode project instances. Avoid saving during an active run.</Alert>
{error && <Alert variant="danger">{error}</Alert>}
Expand Down
3 changes: 3 additions & 0 deletions client/pages/Tools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export function ToolsPage() {
<h1 className="text-xl font-bold">MCP tools</h1>
<p className="text-sm text-[var(--color-text-muted)]">Connect and disconnect affect this running OpenCode instance only.</p>
</header>
<Alert variant="info" className="py-3" data-testid="screenshot-demo-tools">
Screenshot demo: tool health is ready for visual review.
</Alert>
{!directory && <Alert variant="warning">Open a project on the home page first.</Alert>}
{error && <Alert variant="danger">{error}</Alert>}
<ul className="divide-y divide-[var(--color-border-default)] rounded-lg border border-[var(--color-border-default)]">
Expand Down
Loading