Skip to content
Open
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
2 changes: 1 addition & 1 deletion PROGRESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ for a live smoke test against Linear with a real `claude` CLI.

## Gate status

- `pnpm all` — green. 110 unit tests + 5 eval scenarios.
- `pnpm all` — green. 151 unit tests + 5 eval scenarios.
- `pnpm dev WORKFLOW.md --mock` — full mock run with live dashboard.
- `pnpm build:web` — produces `dist/web`, served by Hono at `/`.
- `symphony replay <run_id>` — replays any recorded run over SSE.
Expand Down
10 changes: 5 additions & 5 deletions docs/FRONTEND.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ what the agents are doing.

## Routes

| Hash | Component | Purpose |
| ------------ | --------------------------------------- | ---------------------------------------------- |
| `#/` | [`Dashboard`](../src/web/Dashboard.tsx) | Live run list + status breakdown. |
| `#/run/<id>` | [`RunDetail`](../src/web/RunDetail.tsx) | Per-turn transcript, rendered prompt, events. |
| `#/search` | [`Search`](../src/web/Search.tsx) | Full-text search across turn content + events. |
| Hash | Component | Purpose |
| ------------- | --------------------------------------- | ---------------------------------------------- |
| `#/` | [`Dashboard`](../src/web/Dashboard.tsx) | Live run list + status breakdown. |
| `#/runs/<id>` | [`RunDetail`](../src/web/RunDetail.tsx) | Per-turn transcript, rendered prompt, events. |
| `#/search` | [`Search`](../src/web/Search.tsx) | Full-text search across turn content + events. |

Add a route by adding a branch in `App.tsx`'s switch and a single component
file. Don't install a router.
Expand Down
12 changes: 6 additions & 6 deletions docs/product-specs/live-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ Frontend: [`src/web/`](../../src/web/). Backend: [`src/api/server.ts`](../../src
## Users

- **Operator** — watches live runs; diagnoses stuck issues.
- **Reviewer** — opens `#/run/<id>` after a PR lands; reads the transcript
- **Reviewer** — opens `#/runs/<id>` after a PR lands; reads the transcript
before approving.
- **Agent loops** (future) — could `curl /api/search` or `/api/runs/:id` to
reason about prior work.

## Routes

| Hash | Component | Purpose |
| ------------ | ---------------------------------------------- | ------------------------------------------- |
| `#/` | [`Dashboard.tsx`](../../src/web/Dashboard.tsx) | List of all runs + live indicator. |
| `#/run/<id>` | [`RunDetail.tsx`](../../src/web/RunDetail.tsx) | Turn transcript + events + rendered prompt. |
| `#/search` | [`Search.tsx`](../../src/web/Search.tsx) | Text search across turn content + events. |
| Hash | Component | Purpose |
| ------------- | ---------------------------------------------- | ------------------------------------------- |
| `#/` | [`Dashboard.tsx`](../../src/web/Dashboard.tsx) | List of all runs + live indicator. |
| `#/runs/<id>` | [`RunDetail.tsx`](../../src/web/RunDetail.tsx) | Turn transcript + events + rendered prompt. |
| `#/search` | [`Search.tsx`](../../src/web/Search.tsx) | Text search across turn content + events. |

## HTTP surface

Expand Down
Loading