@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 +5 -5
- package/dist/cli.cjs +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
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
|
|
28
|
-
saga
|
|
29
|
-
saga
|
|
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("
|
|
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,
|