@integrity-labs/agt-cli 0.27.129 → 0.27.131
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 -4
- package/dist/{chunk-MH7HA6QV.js → chunk-74UWAA3V.js} +8 -2
- package/dist/chunk-74UWAA3V.js.map +1 -0
- package/dist/{chunk-A64MR5QP.js → chunk-AFDMWEXL.js} +81 -9
- package/dist/chunk-AFDMWEXL.js.map +1 -0
- package/dist/{chunk-QON5CU3L.js → chunk-EDMSFZYT.js} +2 -2
- package/dist/{claude-pair-runtime-QNOWFDJ7.js → claude-pair-runtime-HTITCZFS.js} +2 -2
- package/dist/lib/manager-worker.js +18 -10
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-PJQZYG2L.js → persistent-session-ZNU3MFKD.js} +3 -3
- package/dist/{responsiveness-probe-MGMZQSP7.js → responsiveness-probe-LV7FQ53G.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-A64MR5QP.js.map +0 -1
- package/dist/chunk-MH7HA6QV.js.map +0 -1
- /package/dist/{chunk-QON5CU3L.js.map → chunk-EDMSFZYT.js.map} +0 -0
- /package/dist/{claude-pair-runtime-QNOWFDJ7.js.map → claude-pair-runtime-HTITCZFS.js.map} +0 -0
- /package/dist/{persistent-session-PJQZYG2L.js.map → persistent-session-ZNU3MFKD.js.map} +0 -0
- /package/dist/{responsiveness-probe-MGMZQSP7.js.map → responsiveness-probe-LV7FQ53G.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
success,
|
|
29
29
|
table,
|
|
30
30
|
warn
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-AFDMWEXL.js";
|
|
32
32
|
import {
|
|
33
33
|
CHANNEL_REGISTRY,
|
|
34
34
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
renderTemplate,
|
|
55
55
|
resolveChannels,
|
|
56
56
|
serializeManifestForSlackCli
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-74UWAA3V.js";
|
|
58
58
|
|
|
59
59
|
// src/bin/agt.ts
|
|
60
60
|
import { join as join20 } from "path";
|
|
@@ -4934,7 +4934,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4934
4934
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4935
4935
|
import chalk18 from "chalk";
|
|
4936
4936
|
import ora16 from "ora";
|
|
4937
|
-
var cliVersion = true ? "0.27.
|
|
4937
|
+
var cliVersion = true ? "0.27.131" : "dev";
|
|
4938
4938
|
async function fetchLatestVersion() {
|
|
4939
4939
|
const host2 = getHost();
|
|
4940
4940
|
if (!host2) return null;
|
|
@@ -5857,7 +5857,7 @@ function handleError(err) {
|
|
|
5857
5857
|
}
|
|
5858
5858
|
|
|
5859
5859
|
// src/bin/agt.ts
|
|
5860
|
-
var cliVersion2 = true ? "0.27.
|
|
5860
|
+
var cliVersion2 = true ? "0.27.131" : "dev";
|
|
5861
5861
|
var program = new Command();
|
|
5862
5862
|
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");
|
|
5863
5863
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -1899,7 +1899,13 @@ var HTTP_PROBE_PROVIDERS = /* @__PURE__ */ new Set([
|
|
|
1899
1899
|
// check. Unifying the monitor onto the central probe is sub-issue C's call.
|
|
1900
1900
|
]);
|
|
1901
1901
|
var CLI_PROBE_ARGS = {
|
|
1902
|
-
gcloud: ["version"]
|
|
1902
|
+
gcloud: ["version"],
|
|
1903
|
+
// ENG-6206: `gh --version` only proves the binary exists, not that it's
|
|
1904
|
+
// authenticated — so a missing/mis-named token read green (the false-green
|
|
1905
|
+
// that hid the broken fleet). `gh auth status` exits non-zero when not
|
|
1906
|
+
// logged in, the honest signal. Read-only. Requires the runner to pass the
|
|
1907
|
+
// agent's GH_TOKEN/GITHUB_TOKEN env (see manager-worker runCli wiring).
|
|
1908
|
+
github: ["auth", "status"]
|
|
1903
1909
|
// most CLIs respond to --version; override here only when they don't.
|
|
1904
1910
|
};
|
|
1905
1911
|
function cliArgsFor(definitionId) {
|
|
@@ -4668,4 +4674,4 @@ export {
|
|
|
4668
4674
|
attributeTranscriptUsageByRun,
|
|
4669
4675
|
KANBAN_CHECK_COMMAND
|
|
4670
4676
|
};
|
|
4671
|
-
//# sourceMappingURL=chunk-
|
|
4677
|
+
//# sourceMappingURL=chunk-74UWAA3V.js.map
|