@integrity-labs/agt-cli 0.15.22 → 0.15.27

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/dist/bin/agt.js CHANGED
@@ -33,9 +33,11 @@ import {
33
33
  lintAll,
34
34
  lintCharter,
35
35
  lintTools,
36
+ managerInstallCommand,
36
37
  managerStartCommand,
37
38
  managerStatusCommand,
38
39
  managerStopCommand,
40
+ managerUninstallCommand,
39
41
  provision,
40
42
  renderTemplate,
41
43
  resolveChannels,
@@ -46,7 +48,7 @@ import {
46
48
  success,
47
49
  table,
48
50
  warn
49
- } from "../chunk-ZUQ7SIVT.js";
51
+ } from "../chunk-4DJTQWSS.js";
50
52
 
51
53
  // src/bin/agt.ts
52
54
  import { join as join10 } from "path";
@@ -3730,7 +3732,7 @@ import { execFileSync, execSync } from "child_process";
3730
3732
  import { existsSync as existsSync5, realpathSync } from "fs";
3731
3733
  import chalk17 from "chalk";
3732
3734
  import ora15 from "ora";
3733
- var cliVersion = true ? "0.15.22" : "dev";
3735
+ var cliVersion = true ? "0.15.27" : "dev";
3734
3736
  async function fetchLatestVersion() {
3735
3737
  const host2 = getHost();
3736
3738
  if (!host2) return null;
@@ -4179,7 +4181,7 @@ function handleError(err) {
4179
4181
  }
4180
4182
 
4181
4183
  // src/bin/agt.ts
4182
- var cliVersion2 = true ? "0.15.22" : "dev";
4184
+ var cliVersion2 = true ? "0.15.27" : "dev";
4183
4185
  var program = new Command();
4184
4186
  program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
4185
4187
  program.hook("preAction", (thisCommand) => {
@@ -4230,6 +4232,8 @@ manager.command("start").description("Start the manager daemon (polls API for co
4230
4232
  manager.command("stop").description("Stop the running manager daemon").option("--config-dir <dir>", "Config directory for agent files", join10(homedir3(), ".augmented")).action(managerStopCommand);
4231
4233
  manager.command("status").description("Show the current manager daemon status and discovered agents").option("--config-dir <dir>", "Config directory for agent files", join10(homedir3(), ".augmented")).action(managerStatusCommand);
4232
4234
  manager.command("watch").description("Live TUI dashboard \u2014 per-agent boxes, drill-in, log tail. Read-only (ENG-4555).").option("--config-dir <dir>", "Config directory for agent files", join10(homedir3(), ".augmented")).option("--no-tui", "Skip the TUI and stream the manager log to stdout instead (CI / scripts)").action(managerWatchCommand);
4235
+ manager.command("install").description("Install OS-level supervisor (launchd LaunchAgent on macOS) so the manager auto-restarts after crash, reboot, or self-update (ENG-4593)").option("--interval <seconds>", "Poll interval in seconds (min 5)", "10").option("--config-dir <dir>", "Config directory for agent files", join10(homedir3(), ".augmented")).action(managerInstallCommand);
4236
+ manager.command("uninstall").description("Remove the OS-level supervisor (launchctl unload + delete plist on macOS). Idempotent.").action(managerUninstallCommand);
4233
4237
  var agent = program.command("agent").description("Inspect and manage agents");
4234
4238
  agent.command("show <code-name>").description("Display an agent's provisioned OpenClaw configuration").option("--config-dir <dir>", "Config directory", join10(homedir3(), ".augmented")).option("--all-channels", "Show all channels (including disabled)").action(agentShowCommand);
4235
4239
  var kanban = program.command("kanban").description("Manage agent kanban boards");