agentflow-dashboard 0.1.4 → 0.3.0
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/bin/dashboard.js +7 -5
- package/dist/chunk-2FTN742J.js +1168 -0
- package/dist/cli.cjs +1349 -0
- package/dist/cli.js +151 -0
- package/dist/index.cjs +839 -157
- package/dist/index.js +5 -483
- package/dist/public/dashboard.js +1487 -289
- package/dist/public/index.html +1016 -163
- package/package.json +5 -5
- package/public/dashboard.js +1487 -289
- package/public/index.html +1016 -163
package/bin/dashboard.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
// Import and start the CLI
|
|
4
|
-
import('../dist/cli.js')
|
|
4
|
+
import('../dist/cli.js')
|
|
5
|
+
.then(({ startDashboard }) => {
|
|
5
6
|
startDashboard().catch((error) => {
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
console.error('Failed to start AgentFlow Dashboard:', error);
|
|
8
|
+
process.exit(1);
|
|
8
9
|
});
|
|
9
|
-
})
|
|
10
|
+
})
|
|
11
|
+
.catch((error) => {
|
|
10
12
|
console.error('Failed to load AgentFlow Dashboard:', error);
|
|
11
13
|
process.exit(1);
|
|
12
|
-
});
|
|
14
|
+
});
|