@integrity-labs/agt-cli 0.28.159 → 0.28.160

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
@@ -37,9 +37,10 @@ import {
37
37
  success,
38
38
  table,
39
39
  warn
40
- } from "../chunk-PGW3CTYR.js";
40
+ } from "../chunk-23U3HSVH.js";
41
41
  import {
42
42
  CHANNEL_REGISTRY,
43
+ DEFAULT_FRAMEWORK,
43
44
  DEPLOYMENT_TEMPLATES,
44
45
  SLACK_SCOPE_CATEGORY_LABELS,
45
46
  SLACK_SCOPE_PRESETS,
@@ -64,7 +65,7 @@ import {
64
65
  renderTemplate,
65
66
  resolveChannels,
66
67
  serializeManifestForSlackCli
67
- } from "../chunk-SAAK2IP4.js";
68
+ } from "../chunk-65FVM2UA.js";
68
69
 
69
70
  // src/bin/agt.ts
70
71
  import { join as join22 } from "path";
@@ -1539,7 +1540,7 @@ async function provisionCommand(codeName, options) {
1539
1540
  spinner.start("Provisioning\u2026");
1540
1541
  }
1541
1542
  }
1542
- const frameworkId = agentData.framework ?? "openclaw";
1543
+ const frameworkId = agentData.framework ?? DEFAULT_FRAMEWORK;
1543
1544
  const adapter = getFramework(frameworkId);
1544
1545
  spinner.text = `Building ${adapter.label} config\u2026`;
1545
1546
  const provisionInput = {
@@ -2831,7 +2832,7 @@ async function driftCheckCommand(codeName, opts) {
2831
2832
  process.exitCode = 1;
2832
2833
  return;
2833
2834
  }
2834
- const frameworkId = agent2.framework ?? "openclaw";
2835
+ const frameworkId = agent2.framework ?? DEFAULT_FRAMEWORK;
2835
2836
  const adapter = getFramework(frameworkId);
2836
2837
  const trackedFiles = adapter.driftTrackedFiles();
2837
2838
  const defaultDir = `.augmented/${teamSlug}/${codeName}/provision`;
@@ -2896,7 +2897,7 @@ async function driftWatchCommand(codeName, opts) {
2896
2897
  process.exitCode = 1;
2897
2898
  return;
2898
2899
  }
2899
- const frameworkId = agent2.framework ?? "openclaw";
2900
+ const frameworkId = agent2.framework ?? DEFAULT_FRAMEWORK;
2900
2901
  const adapter = getFramework(frameworkId);
2901
2902
  const trackedFiles = adapter.driftTrackedFiles();
2902
2903
  if (!useJson) {
@@ -4777,7 +4778,7 @@ import { execFileSync, execSync } from "child_process";
4777
4778
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4778
4779
  import chalk18 from "chalk";
4779
4780
  import ora16 from "ora";
4780
- var cliVersion = true ? "0.28.159" : "dev";
4781
+ var cliVersion = true ? "0.28.160" : "dev";
4781
4782
  async function fetchLatestVersion() {
4782
4783
  const host2 = getHost();
4783
4784
  if (!host2) return null;
@@ -5791,7 +5792,7 @@ function handleError(err) {
5791
5792
  }
5792
5793
 
5793
5794
  // src/bin/agt.ts
5794
- var cliVersion2 = true ? "0.28.159" : "dev";
5795
+ var cliVersion2 = true ? "0.28.160" : "dev";
5795
5796
  var program = new Command();
5796
5797
  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");
5797
5798
  program.hook("preAction", async (thisCommand, actionCommand) => {