@agimon-ai/doompi-workflow 0.0.1-alpha.43 → 0.0.1-alpha.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agimon-ai/doompi-workflow",
3
- "version": "0.0.1-alpha.43",
3
+ "version": "0.0.1-alpha.45",
4
4
  "description": "GitHub Actions-style workflow graphs, artifacts, recovery, and asynchronous runs for DoomPi.",
5
5
  "keywords": [
6
6
  "ai",
@@ -65,23 +65,23 @@
65
65
  "@agimon-ai/workflow-mcp": "0.23.19",
66
66
  "@deepseek-ai/cordis": "4.0.1",
67
67
  "@modelcontextprotocol/sdk": "1.30.0",
68
- "hono": "4.13.3",
68
+ "hono": "4.13.5",
69
69
  "zod": "4.4.3",
70
- "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.43",
71
- "@agimon-ai/doompi-telemetry": "0.0.1-alpha.43",
72
- "@agimon-ai/doompi-ui": "0.0.1-alpha.43",
73
- "@agimon-ai/doompi-web-components": "0.0.1-alpha.4",
74
- "@agimon-ai/doompi-web-contracts": "0.0.1-alpha.6",
75
- "@agimon-ai/doompi-web-security": "0.0.1-alpha.5"
70
+ "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.44",
71
+ "@agimon-ai/doompi-ui": "0.0.1-alpha.45",
72
+ "@agimon-ai/doompi-web-security": "0.0.1-alpha.6",
73
+ "@agimon-ai/doompi-web-contracts": "0.0.1-alpha.8",
74
+ "@agimon-ai/doompi-web-components": "0.0.1-alpha.5",
75
+ "@agimon-ai/doompi-telemetry": "0.0.1-alpha.44"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@earendil-works/pi-coding-agent": "0.84.4",
79
79
  "@earendil-works/pi-tui": "0.84.4",
80
80
  "@tanstack/react-store": "0.11.1",
81
81
  "@tanstack/store": "0.11.1",
82
- "@types/node": "26.2.0",
83
- "@types/react": "19.2.7",
84
- "@types/react-dom": "19.2.3",
82
+ "@types/node": "26.4.0",
83
+ "@types/react": "19.2.18",
84
+ "@types/react-dom": "19.2.5",
85
85
  "@vitest/coverage-v8": "4.1.11",
86
86
  "react": "19.2.8",
87
87
  "react-dom": "19.2.8",
@@ -58,13 +58,15 @@ export function WorkflowsActivitySection({ sessionId, openTab }: WebPluginSlotPr
58
58
  const groups = workflowActivityGroups(workflowActivityRows(runs, now));
59
59
  if (groups.length === 0) {
60
60
  return (
61
- <div data-testid="activity-summary-workflows" className="flex flex-col gap-1 px-1">
62
- <span className="text-[10px] text-doom-faint">no runs yet</span>
61
+ <div className="flex items-center gap-2 px-1">
62
+ <p data-testid="activity-summary-workflows" className="text-[10px] text-doom-faint">
63
+ idle
64
+ </p>
63
65
  <Button
64
66
  variant="link"
65
67
  size="xs"
66
68
  data-testid="activity-workflow-launch"
67
- className="justify-start px-0 text-[10px]"
69
+ className="px-0"
68
70
  onClick={() => {
69
71
  if (sessionId === null) return;
70
72
  openCatalog(sessionId);