agent-stage 0.2.13 → 0.2.14

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.
Files changed (2) hide show
  1. package/dist/index.js +27 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12,17 +12,43 @@ import { pageCommand } from './commands/page/index.js';
12
12
  import { runCommand } from './commands/run/index.js';
13
13
  import { guideCommand } from './commands/guide.js';
14
14
  import { cleanupCommand } from './commands/cleanup.js';
15
+ import { componentsCommand } from './commands/components.js';
16
+ import { doctorCommand } from './commands/doctor.js';
17
+ import { execCommand } from './commands/exec.js';
18
+ import { initCommand } from './commands/init.js';
19
+ import { inspectCommand } from './commands/inspect.js';
20
+ import { lsCommand } from './commands/ls.js';
21
+ import { restartCommand } from './commands/restart.js';
22
+ import { rmPageCommand } from './commands/rm-page.js';
23
+ import { startCommand } from './commands/start.js';
24
+ import { statusCommand } from './commands/status.js';
25
+ import { stopCommand } from './commands/stop.js';
26
+ import { verifyCommand } from './commands/verify.js';
27
+ import { watchCommand } from './commands/watch.js';
15
28
  const program = new Command();
16
29
  program
17
30
  .name('agentstage')
18
31
  .description('Agent UI Stage CLI - Create interactive UI for AI agents')
19
32
  .version(pkg.version);
20
- // New command structure
33
+ // Register all commands
21
34
  program.addCommand(devCommand);
22
35
  program.addCommand(pageCommand);
23
36
  program.addCommand(runCommand);
24
37
  program.addCommand(guideCommand);
25
38
  program.addCommand(cleanupCommand);
39
+ program.addCommand(componentsCommand);
40
+ program.addCommand(doctorCommand);
41
+ program.addCommand(execCommand);
42
+ program.addCommand(initCommand);
43
+ program.addCommand(inspectCommand);
44
+ program.addCommand(lsCommand);
45
+ program.addCommand(restartCommand);
46
+ program.addCommand(rmPageCommand);
47
+ program.addCommand(startCommand);
48
+ program.addCommand(statusCommand);
49
+ program.addCommand(stopCommand);
50
+ program.addCommand(verifyCommand);
51
+ program.addCommand(watchCommand);
26
52
  // Error handling
27
53
  program.exitOverride();
28
54
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-stage",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "files": [
5
5
  "dist",
6
6
  "template"