learning_ai_common_plat/dashboards/tracker-web
saravanakumardb1 928edad0af feat(fleet): surface engine + agent session, editable config, timeline filter
Backend: insights now carry engine + sessionId/sessionUrl; releaseLease promotes
the reported engine onto the run (was created with the abstract engineClass,
usually 'unknown').

tracker-web job detail:
- Runs: show the concrete engine (insights.engine, falls back off 'unknown') and
  the agent session (Devin session id with a `devin --resume <id>` hint, or a
  link when a sessionUrl is present).
- PromptCard: edit repo/baseBranch/verify/autoMerge (not just the prompt) while
  draft/queued/blocked.
- Timeline: filter by event type (default collapses heartbeat runs).
- Show a "no PR — needs verify / not PR mode" hint when parked in review.

Generated with [Devin](https://cli.devin.ai/docs)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-06-01 02:19:38 -07:00
..
docs docs(tracker-web): record backend enablers for UX-12.3/13.1 2026-05-29 07:31:55 -07:00
e2e feat(fleet-web): harden budget bar, surface SSE polling, allow checkpoint in patchJob 2026-05-30 20:35:05 -07:00
launchd feat(tracker-web): macOS LaunchAgent keep-alive for the fleet web tracker 2026-06-01 01:46:53 -07:00
public feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
src feat(fleet): surface engine + agent session, editable config, timeline filter 2026-06-01 02:19:38 -07:00
.bundlesizerc.json feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
.env.example feat(auth): SmartAuth tracker-web — OAuth proxy, MFA verify, login page with Google Sign-In 2026-03-12 11:15:44 -07:00
.env.local.example feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
.gitignore fix(tracker-web): format markdown + ignore e2e artifacts in prettier/git 2026-05-28 19:40:54 -07:00
.nvmrc feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
.prettierignore fix(tracker-web): format markdown + ignore e2e artifacts in prettier/git 2026-05-28 19:40:54 -07:00
Dockerfile fix(dashboards): restore runtime and expose internal ops health 2026-03-31 07:26:43 +00:00
eslint.config.mjs chore(tracker-web): add @bytelyst/ui UI-drift ratchet eslint rule (CC.6) 2026-05-28 20:39:20 -07:00
next.config.ts fix(tracker-web): replace broken webpack alias with transpilePackages — build now succeeds 2026-02-28 12:11:37 -08:00
package-lock.json feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
package.json fix(tracker-web): stable test DOM env + working localStorage (Node 25) 2026-05-31 04:12:34 -07:00
playwright.config.ts test(tracker-web): isolate e2e dev server 2026-05-30 19:36:07 +00:00
postcss.config.mjs feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
README.md fix(tracker-web): format markdown + ignore e2e artifacts in prettier/git 2026-05-28 19:40:54 -07:00
tsconfig.json feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
vercel.json feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic 2026-02-28 02:17:35 -08:00
vitest.config.ts fix(tracker-web): stable test DOM env + working localStorage (Node 25) 2026-05-31 04:12:34 -07:00
vitest.setup.ts fix(tracker-web): stable test DOM env + working localStorage (Node 25) 2026-05-31 04:12:34 -07:00

Tracker Dashboard

Web dashboard for the Tracker Service — manage feature requests, bugs, and tasks. Built with Next.js + Tailwind CSS + React.

Port

3003 (configurable in package.json scripts)

Pages

Route Description
/login Login via platform-service credentials
/dashboard Overview with stats by type, status, priority
/dashboard/items Items list with filtering, search, create, delete
/dashboard/board Kanban board with drag-free status transitions
/dashboard/items/[id] Item detail with edit, status/priority change, comments, votes

API Proxy Routes

Route Proxies to
/api/auth/login platform-service POST /api/auth/login
/api/auth/me platform-service GET /api/auth/me
/api/tracker/* tracker-service /api/*

Setup

cp .env.local.example .env.local   # fill in values
npm install
npm run dev                       # starts on port 3003

Environment Variables

See .env.local.example for required variables:

  • PLATFORM_API_URL — Platform service URL (default http://localhost:4003)
  • JWT_SECRET — Shared JWT secret
  • PRODUCT_ID — Product scope (e.g., lysnrai, chronomind, nomgap)