@integrity-labs/agt-cli 0.27.128 → 0.27.130
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-TXZLQK3S.js → chunk-H4QCCP2M.js} +30 -9
- package/dist/chunk-H4QCCP2M.js.map +1 -0
- package/dist/{chunk-QON5CU3L.js → chunk-JQOOOLKR.js} +2 -2
- package/dist/{chunk-MH7HA6QV.js → chunk-XCV5NU45.js} +8 -2
- package/dist/chunk-XCV5NU45.js.map +1 -0
- package/dist/{claude-pair-runtime-QNOWFDJ7.js → claude-pair-runtime-GWZWHISO.js} +2 -2
- package/dist/lib/manager-worker.js +267 -87
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-PJQZYG2L.js → persistent-session-NTO2PO2V.js} +3 -3
- package/dist/{responsiveness-probe-MGMZQSP7.js → responsiveness-probe-BG7O5UIG.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-MH7HA6QV.js.map +0 -1
- package/dist/chunk-TXZLQK3S.js.map +0 -1
- /package/dist/{chunk-QON5CU3L.js.map → chunk-JQOOOLKR.js.map} +0 -0
- /package/dist/{claude-pair-runtime-QNOWFDJ7.js.map → claude-pair-runtime-GWZWHISO.js.map} +0 -0
- /package/dist/{persistent-session-PJQZYG2L.js.map → persistent-session-NTO2PO2V.js.map} +0 -0
- /package/dist/{responsiveness-probe-MGMZQSP7.js.map → responsiveness-probe-BG7O5UIG.js.map} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
claudeModelAlias,
|
|
3
3
|
isClaudeFastMode
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-XCV5NU45.js";
|
|
5
5
|
import {
|
|
6
6
|
reapOrphanChannelMcps
|
|
7
7
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1596,4 +1596,4 @@ export {
|
|
|
1596
1596
|
stopAllSessionsAndWait,
|
|
1597
1597
|
getProjectDir
|
|
1598
1598
|
};
|
|
1599
|
-
//# sourceMappingURL=chunk-
|
|
1599
|
+
//# sourceMappingURL=chunk-JQOOOLKR.js.map
|
|
@@ -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-XCV5NU45.js.map
|