Explorer
ACME-DASHBOARD4

Use Alt plus Up or Down arrow to reorder the focused tree item.

src
app
page.tsxM
layout.tsx
components
MissionControl.tsxA
TaskCard.tsxM
lib
agent-client.ts
workspace-store.tsM
config
.cursorrules
package.json
Codebase indexReady

1,284 files, 4 rules, 18 embeddings updated.

page.tsx
MissionControl.tsx
agent-client.ts
page.tsx/src/app/dashboard/page.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Tabpredicts next edit in page.tsx

$ npm run test -- --watch=false

PASS src/components/MissionControl.test.tsx

PASS src/lib/workspace-store.test.ts

Test Files 2 passed (2)

warning

TaskCard.tsx:1 task prop is inferred as any.

hint

MissionControl.tsx:12 Consider memoizing project status labels.

info

workspace-store.ts:9 Queued project count is mocked.

Agent output channel

Last command: No command selected

Review agent changes

Patch summary

Mission-control dashboard pass

The agent proposes a focused UI update across the dashboard route, project preview component, and workspace data helper.

Low risk

src/app/dashboard/page.tsx

Adds the mission-control section and keeps the sidebar stable.

modified

src/components/MissionControl.tsx

Creates project preview cards with progress and review state.

added

src/lib/workspace-store.ts

Adds realistic project status data for the shell.

modified

+ const reviewState = summary.projects.filter((project) => project.status === "review");

+ <MissionControl projects={summary.projects} reviewState={reviewState} />

- <MissionControl projects={summary.projects} />

Workspace settings

Context sources

Current branch

4 changes on feature/mission-control