@integrity-labs/agt-cli 0.7.0 → 0.7.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/dist/bin/agt.js +4 -6
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-3S5KUXZ7.js → chunk-GBTJNYNP.js} +22 -1
- package/dist/chunk-GBTJNYNP.js.map +1 -0
- package/dist/lib/manager-worker.js +38 -1
- package/dist/lib/manager-worker.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-3S5KUXZ7.js.map +0 -1
package/dist/bin/agt.js
CHANGED
|
@@ -32,7 +32,7 @@ import {
|
|
|
32
32
|
resolveChannels,
|
|
33
33
|
serializeManifestForSlackCli,
|
|
34
34
|
setActiveTeam
|
|
35
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-GBTJNYNP.js";
|
|
36
36
|
|
|
37
37
|
// src/bin/agt.ts
|
|
38
38
|
import { join as join11 } from "path";
|
|
@@ -2732,9 +2732,7 @@ function detectShellProfile() {
|
|
|
2732
2732
|
const shell = process.env["SHELL"] ?? "";
|
|
2733
2733
|
const home = homedir2();
|
|
2734
2734
|
if (shell.includes("zsh")) {
|
|
2735
|
-
|
|
2736
|
-
if (existsSync4(zshrc)) return zshrc;
|
|
2737
|
-
return join10(home, ".zprofile");
|
|
2735
|
+
return join10(home, ".zshrc");
|
|
2738
2736
|
}
|
|
2739
2737
|
if (shell.includes("fish")) {
|
|
2740
2738
|
const fishConfig = join10(home, ".config", "fish", "config.fish");
|
|
@@ -3413,7 +3411,7 @@ async function acpxCloseCommand(agent2, _opts, cmd) {
|
|
|
3413
3411
|
import { execSync } from "child_process";
|
|
3414
3412
|
import chalk19 from "chalk";
|
|
3415
3413
|
import ora15 from "ora";
|
|
3416
|
-
var cliVersion = true ? "0.7.
|
|
3414
|
+
var cliVersion = true ? "0.7.2" : "dev";
|
|
3417
3415
|
async function fetchLatestVersion() {
|
|
3418
3416
|
const host2 = AGT_HOST;
|
|
3419
3417
|
if (!host2) return null;
|
|
@@ -3529,7 +3527,7 @@ async function checkForUpdateOnStartup() {
|
|
|
3529
3527
|
}
|
|
3530
3528
|
|
|
3531
3529
|
// src/bin/agt.ts
|
|
3532
|
-
var cliVersion2 = true ? "0.7.
|
|
3530
|
+
var cliVersion2 = true ? "0.7.2" : "dev";
|
|
3533
3531
|
var program = new Command();
|
|
3534
3532
|
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");
|
|
3535
3533
|
program.hook("preAction", (thisCommand) => {
|