@integrity-labs/agt-cli 0.28.584 → 0.28.586
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 +7 -5
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-XRG4XYAV.js → chunk-GMTRKIHI.js} +25 -3
- package/dist/chunk-GMTRKIHI.js.map +1 -0
- package/dist/{chunk-XHC5QJCK.js → chunk-VFBJSNLS.js} +11 -5
- package/dist/chunk-VFBJSNLS.js.map +1 -0
- package/dist/{claude-pair-runtime-WLMXUNII.js → claude-pair-runtime-MN6GPIUL.js} +2 -2
- package/dist/lib/manager-worker.js +15 -10
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +7 -1
- package/dist/mcp/origami.js +7 -1
- package/dist/mcp/slack-channel.js +7 -1
- package/dist/mcp/telegram-channel.js +7 -1
- package/dist/{persistent-session-R7ACVUYP.js → persistent-session-773CFXXR.js} +2 -2
- package/dist/{responsiveness-probe-RDBVTQD7.js → responsiveness-probe-7Q4HR6SK.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-XHC5QJCK.js.map +0 -1
- package/dist/chunk-XRG4XYAV.js.map +0 -1
- /package/dist/{claude-pair-runtime-WLMXUNII.js.map → claude-pair-runtime-MN6GPIUL.js.map} +0 -0
- /package/dist/{persistent-session-R7ACVUYP.js.map → persistent-session-773CFXXR.js.map} +0 -0
- /package/dist/{responsiveness-probe-RDBVTQD7.js.map → responsiveness-probe-7Q4HR6SK.js.map} +0 -0
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
resolveConnectivityProbe,
|
|
47
47
|
worseConnectivityOutcome,
|
|
48
48
|
wrapScheduledTaskPrompt
|
|
49
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-GMTRKIHI.js";
|
|
50
50
|
import {
|
|
51
51
|
parsePsRows
|
|
52
52
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -5971,7 +5971,7 @@ function exchangeFailureKind(err) {
|
|
|
5971
5971
|
}
|
|
5972
5972
|
|
|
5973
5973
|
// src/lib/api-client.ts
|
|
5974
|
-
var agtCliVersion = true ? "0.28.
|
|
5974
|
+
var agtCliVersion = true ? "0.28.586" : "dev";
|
|
5975
5975
|
var lastConfigHash = null;
|
|
5976
5976
|
function setConfigHash(hash) {
|
|
5977
5977
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -9137,7 +9137,13 @@ async function executeConnectivityProbe(target, deps = {}) {
|
|
|
9137
9137
|
connectivityTest: target.connectivityTest ?? null,
|
|
9138
9138
|
// ENG-7077: without this a static-token hosted remote MCP resolves to
|
|
9139
9139
|
// `builtin` and reports `unverified` having contacted nothing.
|
|
9140
|
-
remoteMcpUrl: target.remoteMcpUrl ?? null
|
|
9140
|
+
remoteMcpUrl: target.remoteMcpUrl ?? null,
|
|
9141
|
+
// ENG-5463: same omission one lane over. The target has carried
|
|
9142
|
+
// `cliBinary` all along (the runner reads it off the catalog row) and the
|
|
9143
|
+
// `cli_command` leg below spends it, but the RESOLVER never saw it — so a
|
|
9144
|
+
// toolkit seeded `native` with a CLI binary resolved to `builtin` and
|
|
9145
|
+
// reported `unverified` without running the CLI it is defined by.
|
|
9146
|
+
cliBinary: target.cliBinary ?? null
|
|
9141
9147
|
});
|
|
9142
9148
|
if (!descriptor.readOnly) {
|
|
9143
9149
|
throw new Error(`Refusing non-read-only probe for ${target.definitionId}`);
|
|
@@ -9240,7 +9246,7 @@ async function executeConnectivityProbe(target, deps = {}) {
|
|
|
9240
9246
|
case "cli_command": {
|
|
9241
9247
|
if (!deps.runCli) return null;
|
|
9242
9248
|
const outcome = await deps.runCli(target.cliBinary ?? target.definitionId, descriptor.cliArgs ?? ["--version"]);
|
|
9243
|
-
return withEvidence(outcome, descriptor.
|
|
9249
|
+
return withEvidence(outcome, descriptor.cliArgsAreAuthCheck ? "live_call" : "handshake");
|
|
9244
9250
|
}
|
|
9245
9251
|
case "builtin":
|
|
9246
9252
|
return {
|
|
@@ -9347,4 +9353,4 @@ export {
|
|
|
9347
9353
|
managerInstallSystemUnitCommand,
|
|
9348
9354
|
managerUninstallSystemUnitCommand
|
|
9349
9355
|
};
|
|
9350
|
-
//# sourceMappingURL=chunk-
|
|
9356
|
+
//# sourceMappingURL=chunk-VFBJSNLS.js.map
|