Summary
Add an architecture diagram viewer tab to the OpenHuman dashboard that displays the latest SVG/PNG diagram generated by the fireworks-tech-graph skill, auto-refreshing every 10 seconds. Operators can ask the orchestrator to generate or update a diagram at any time and see it appear inside the dashboard without opening a separate tool or file explorer.
Problem
Operators who want a visual representation of their swarm's architecture - agent layers, tool connections, data flow, team structure - currently have no way to view it inside OpenHuman. The fireworks-tech-graph skill can generate publication-quality SVG/PNG architecture diagrams from a natural language description, but the output lands as a file on disk with no integrated viewing surface. Operators must open a file manager or image viewer separately, and there is no mechanism for the diagram to stay current as the swarm evolves.
Solution
Scope: app (dashboard tab)
Implementation:
Add a "Diagram" tab to the dashboard sidebar. When active, the tab panel:
- Loads the latest diagram from the path where
fireworks-tech-graph writes its output (workspace/diagrams/latest.png by default, configurable)
- Auto-refreshes every 10 seconds - if the file has been updated (e.g. because the operator asked the orchestrator to regenerate the diagram), the new version appears automatically
- Manual refresh button - operators can force an immediate reload without waiting for the next auto-refresh cycle
- Graceful empty state - if no diagram file exists yet, the panel shows a placeholder with instructions: install the skill and ask the orchestrator to generate a diagram
- Full-width display - the diagram image fills the available panel width, maintaining aspect ratio
The fireworks-tech-graph skill is served locally by the orchestrator at a configurable port (default 8787). The dashboard loads the diagram from this local endpoint rather than directly from the filesystem, keeping the frontend stateless.
dashboard:
diagram_viewer:
enabled: true
source_url: "http://localhost:8787/workspace/diagrams/latest.png"
refresh_interval_seconds: 10
Generating a diagram:
The operator asks the orchestrator in natural language:
Generate an architecture diagram of the current swarm in dark terminal style
The orchestrator delegates to the fireworks-tech-graph skill, which writes the output to workspace/diagrams/latest.png. The dashboard picks it up on the next refresh cycle.
Skill installation (documented in setup guide, not required for the dashboard tab itself):
npx skills add yizhiyanhua-ai/fireworks-tech-graph
Acceptance criteria
Related
Dashboard mockup attached (Fireworks App Data tab)
dashboard-example.html
Summary
Add an architecture diagram viewer tab to the OpenHuman dashboard that displays the latest SVG/PNG diagram generated by the
fireworks-tech-graphskill, auto-refreshing every 10 seconds. Operators can ask the orchestrator to generate or update a diagram at any time and see it appear inside the dashboard without opening a separate tool or file explorer.Problem
Operators who want a visual representation of their swarm's architecture - agent layers, tool connections, data flow, team structure - currently have no way to view it inside OpenHuman. The
fireworks-tech-graphskill can generate publication-quality SVG/PNG architecture diagrams from a natural language description, but the output lands as a file on disk with no integrated viewing surface. Operators must open a file manager or image viewer separately, and there is no mechanism for the diagram to stay current as the swarm evolves.Solution
Scope: app (dashboard tab)
Implementation:
Add a "Diagram" tab to the dashboard sidebar. When active, the tab panel:
fireworks-tech-graphwrites its output (workspace/diagrams/latest.pngby default, configurable)The
fireworks-tech-graphskill is served locally by the orchestrator at a configurable port (default8787). The dashboard loads the diagram from this local endpoint rather than directly from the filesystem, keeping the frontend stateless.Generating a diagram:
The operator asks the orchestrator in natural language:
The orchestrator delegates to the
fireworks-tech-graphskill, which writes the output toworkspace/diagrams/latest.png. The dashboard picks it up on the next refresh cycle.Skill installation (documented in setup guide, not required for the dashboard tab itself):
Acceptance criteria
source_urlrefresh_interval_secondsseconds; a freshly generated diagram appears without a manual page refreshsource_urlandrefresh_interval_secondsare read fromconfig.yaml.github/workflows/coverage.yml)Related
Dashboard mockup attached (Fireworks App Data tab)
dashboard-example.html