@integrity-labs/agt-cli 0.28.572 → 0.28.574
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 +9 -6
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-72K46XUZ.js → chunk-E3KBX3UW.js} +105 -5
- package/dist/chunk-E3KBX3UW.js.map +1 -0
- package/dist/{chunk-NG2MFOSH.js → chunk-PKBAJMBG.js} +9 -5
- package/dist/{chunk-NG2MFOSH.js.map → chunk-PKBAJMBG.js.map} +1 -1
- package/dist/{claude-pair-runtime-XTRJNDP2.js → claude-pair-runtime-4C5YXND6.js} +2 -2
- package/dist/lib/manager-worker.js +20 -12
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +22 -1
- package/dist/mcp/origami.js +22 -1
- package/dist/mcp/slack-channel.js +22 -1
- package/dist/mcp/telegram-channel.js +22 -1
- package/dist/{persistent-session-74MH2XTM.js → persistent-session-2ESCLFCK.js} +2 -2
- package/dist/{responsiveness-probe-5VNQQZNJ.js → responsiveness-probe-YCUDUCAS.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-72K46XUZ.js.map +0 -1
- /package/dist/{claude-pair-runtime-XTRJNDP2.js.map → claude-pair-runtime-4C5YXND6.js.map} +0 -0
- /package/dist/{persistent-session-74MH2XTM.js.map → persistent-session-2ESCLFCK.js.map} +0 -0
- /package/dist/{responsiveness-probe-5VNQQZNJ.js.map → responsiveness-probe-YCUDUCAS.js.map} +0 -0
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
resolveConnectivityProbe,
|
|
47
47
|
worseConnectivityOutcome,
|
|
48
48
|
wrapScheduledTaskPrompt
|
|
49
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-E3KBX3UW.js";
|
|
50
50
|
import {
|
|
51
51
|
parsePsRows
|
|
52
52
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -5646,7 +5646,7 @@ function exchangeFailureKind(err) {
|
|
|
5646
5646
|
}
|
|
5647
5647
|
|
|
5648
5648
|
// src/lib/api-client.ts
|
|
5649
|
-
var agtCliVersion = true ? "0.28.
|
|
5649
|
+
var agtCliVersion = true ? "0.28.574" : "dev";
|
|
5650
5650
|
var lastConfigHash = null;
|
|
5651
5651
|
function setConfigHash(hash) {
|
|
5652
5652
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -7914,7 +7914,8 @@ function deriveMcpServerKey(input) {
|
|
|
7914
7914
|
definitionId: input.definitionId,
|
|
7915
7915
|
sourceType: input.sourceType,
|
|
7916
7916
|
authType: input.authType,
|
|
7917
|
-
connectivityTest: input.connectivityTest ?? null
|
|
7917
|
+
connectivityTest: input.connectivityTest ?? null,
|
|
7918
|
+
remoteMcpUrl: input.remoteMcpUrl ?? null
|
|
7918
7919
|
}).kind;
|
|
7919
7920
|
if (kind !== "mcp_tools_list" && kind !== "managed_composite") return void 0;
|
|
7920
7921
|
const base = input.definitionId.replace(/[^a-z0-9]/gi, "_").toLowerCase();
|
|
@@ -8806,7 +8807,10 @@ async function executeConnectivityProbe(target, deps = {}) {
|
|
|
8806
8807
|
// descriptor surfaces `probeTool`/`probeArgs` (the prescribed read-only tool)
|
|
8807
8808
|
// — without this the hourly probe auto-picked a different tool than the Test
|
|
8808
8809
|
// path, the false-RED that flagged every managed Linear install "unreachable".
|
|
8809
|
-
connectivityTest: target.connectivityTest ?? null
|
|
8810
|
+
connectivityTest: target.connectivityTest ?? null,
|
|
8811
|
+
// ENG-7077: without this a static-token hosted remote MCP resolves to
|
|
8812
|
+
// `builtin` and reports `unverified` having contacted nothing.
|
|
8813
|
+
remoteMcpUrl: target.remoteMcpUrl ?? null
|
|
8810
8814
|
});
|
|
8811
8815
|
if (!descriptor.readOnly) {
|
|
8812
8816
|
throw new Error(`Refusing non-read-only probe for ${target.definitionId}`);
|
|
@@ -9011,4 +9015,4 @@ export {
|
|
|
9011
9015
|
managerInstallSystemUnitCommand,
|
|
9012
9016
|
managerUninstallSystemUnitCommand
|
|
9013
9017
|
};
|
|
9014
|
-
//# sourceMappingURL=chunk-
|
|
9018
|
+
//# sourceMappingURL=chunk-PKBAJMBG.js.map
|