Files
the-nexus/api/status.json
Alexander Whitestone f343a1797c
Some checks failed
CI / validate (pull_request) Failing after 18s
CI / auto-merge (pull_request) Has been skipped
feat: live agent status board — 3D floating holo-panels (#199)
Add five floating holographic panels arranged in a 135° semi-circle
behind the platform, one per agent (claude, gemini, kimi, groq, grok).
Each panel shows agent name, status (working/idle/dead) with a colour-
coded dot, current issue title, and PRs merged today.

Status data is fetched from /api/status.json every 30 seconds; the
stub JSON is committed so the scene works without a live backend.
Panel sprites float gently via the existing animation loop.

Fixes #199

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 00:32:30 -04:00

10 lines
561 B
JSON

{
"agents": [
{ "name": "claude", "status": "working", "issue": "Live agent status board (#199)", "prs_today": 3 },
{ "name": "gemini", "status": "idle", "issue": null, "prs_today": 1 },
{ "name": "kimi", "status": "working", "issue": "Portal system YAML registry (#5)", "prs_today": 2 },
{ "name": "groq", "status": "idle", "issue": null, "prs_today": 0 },
{ "name": "grok", "status": "dead", "issue": null, "prs_today": 0 }
]
}