feat(cli): rebrand splash and surface version in dashboard

Splash now reads "multi node agent orchestrator" / runfusion.ai / v<version>.
System panel and status bar also display the running CLI version.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-04-26 21:27:04 -07:00
parent 245a79353d
commit fdf8ca904e
4 changed files with 47 additions and 4 deletions

View File

@@ -165,7 +165,8 @@ describe("DashboardApp smoke", () => {
const frame = lastFrame() ?? "";
// Splash can render either the compact text mark or the expanded block-art logo.
expect(frame).toMatch(/FUSION|███████╗/);
expect(frame).toContain("AI coding agent dashboard");
expect(frame).toContain("multi node agent orchestrator");
expect(frame).toContain("runfusion.ai");
unmount();
});