Complete S03 runtime closure and S04 control loop

This commit is contained in:
2026-03-24 11:33:55 +01:00
parent 0cacb4e51b
commit 8890906231
17 changed files with 588 additions and 74 deletions
@@ -0,0 +1,23 @@
---
title: T02 summary
status: done
files:
- job-tracker-ui/src/components/JobTable.tsx
- job-tracker-ui/src/daily-control-loop.test.tsx
verification:
- CI=true npm --prefix job-tracker-ui test -- --watch=false --runTestsByPath src/daily-control-loop.test.tsx
- CI=true npm --prefix job-tracker-ui run build
---
Made the job table expose the next action directly and prove the daily loop end-to-end.
What changed:
- `job-tracker-ui/src/components/JobTable.tsx`
- follow-up and CV status chips now route directly into the right job workspace tab
- the table participates in the same routed workspace flow as dashboard and reminders
- `job-tracker-ui/src/daily-control-loop.test.tsx`
- expanded the focused test to prove the table chip routes into the follow-up workspace and that reminders can route into the tailored-CV workspace
Verification:
- Focused daily-loop test passed
- Frontend build passed