@saga-ai/dashboard 3.0.1 → 3.0.2

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/README.md CHANGED
@@ -11,7 +11,7 @@ Dashboard and session monitoring for SAGA (Structured Autonomous Goal Achievemen
11
11
  Run commands using npx (no global installation required):
12
12
 
13
13
  ```bash
14
- npx @saga-ai/dashboard dashboard
14
+ npx @saga-ai/dashboard start
15
15
  npx @saga-ai/dashboard sessions list
16
16
  npx @saga-ai/dashboard sessions status <name>
17
17
  npx @saga-ai/dashboard sessions logs <name>
@@ -19,14 +19,14 @@ npx @saga-ai/dashboard sessions logs <name>
19
19
 
20
20
  ## Commands
21
21
 
22
- ### `saga dashboard`
22
+ ### `saga start`
23
23
 
24
24
  Start the SAGA dashboard server for viewing epics, stories, and progress.
25
25
 
26
26
  ```bash
27
- saga dashboard
28
- saga dashboard --port 8080
29
- saga dashboard --path /path/to/project
27
+ saga start
28
+ saga start --port 8080
29
+ saga start --path /path/to/project
30
30
  ```
31
31
 
32
32
  Options:
package/dist/cli.cjs CHANGED
@@ -1712,7 +1712,7 @@ var packageJson = JSON.parse((0, import_node_fs4.readFileSync)(packageJsonPath,
1712
1712
  var program = new import_commander.Command();
1713
1713
  program.name("saga").description("Dashboard and session monitoring for SAGA - Structured Autonomous Goal Achievement").version(packageJson.version).addHelpCommand("help [command]", "Display help for a command");
1714
1714
  program.option("-p, --path <dir>", "Path to SAGA project directory (overrides auto-discovery)");
1715
- program.command("dashboard").description("Start the dashboard server").option("--port <n>", "Port to run the server on (default: 3847)", Number.parseInt).action(async (options) => {
1715
+ program.command("start").description("Start the dashboard server").option("--port <n>", "Port to run the server on (default: 3847)", Number.parseInt).action(async (options) => {
1716
1716
  const globalOpts = program.opts();
1717
1717
  await dashboardCommand({
1718
1718
  path: globalOpts.path,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saga-ai/dashboard",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Dashboard and session monitoring for SAGA - Structured Autonomous Goal Achievement",
5
5
  "type": "module",
6
6
  "bin": {