@integrity-labs/agt-cli 0.28.493 → 0.28.495
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-SRO2IQ4R.js → chunk-4SQZDAWG.js} +85 -6
- package/dist/chunk-4SQZDAWG.js.map +1 -0
- package/dist/{chunk-3XLUSG32.js → chunk-CAHE6QSE.js} +5 -8
- package/dist/{chunk-3XLUSG32.js.map → chunk-CAHE6QSE.js.map} +1 -1
- package/dist/{claude-pair-runtime-7TSEIWGA.js → claude-pair-runtime-LCQYCW67.js} +2 -2
- package/dist/lib/manager-worker.js +272 -212
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +301 -46
- package/dist/mcp/origami.js +14 -0
- package/dist/mcp/remote-oauth-proxy.js +37 -5
- package/dist/mcp/slack-channel.js +14 -0
- package/dist/mcp/telegram-channel.js +14 -0
- package/dist/{persistent-session-MVAEGE6J.js → persistent-session-TSPVNVQL.js} +2 -2
- package/dist/{responsiveness-probe-6YXN4G6V.js → responsiveness-probe-3LWQKHV2.js} +64 -2
- package/dist/responsiveness-probe-3LWQKHV2.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-SRO2IQ4R.js.map +0 -1
- package/dist/responsiveness-probe-6YXN4G6V.js.map +0 -1
- /package/dist/{claude-pair-runtime-7TSEIWGA.js.map → claude-pair-runtime-LCQYCW67.js.map} +0 -0
- /package/dist/{persistent-session-MVAEGE6J.js.map → persistent-session-TSPVNVQL.js.map} +0 -0
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
generateClaudeMd,
|
|
17
17
|
getFlagDefinition,
|
|
18
18
|
getFramework,
|
|
19
|
+
handshakeToolsListOutcome,
|
|
19
20
|
isolationMode,
|
|
20
21
|
listFlagDefinitions,
|
|
21
22
|
mcpWildcardsForServers,
|
|
@@ -30,7 +31,7 @@ import {
|
|
|
30
31
|
resolveConnectivityProbe,
|
|
31
32
|
worseConnectivityOutcome,
|
|
32
33
|
wrapScheduledTaskPrompt
|
|
33
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-4SQZDAWG.js";
|
|
34
35
|
import {
|
|
35
36
|
parsePsRows
|
|
36
37
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -5022,7 +5023,7 @@ function exchangeFailureKind(err) {
|
|
|
5022
5023
|
}
|
|
5023
5024
|
|
|
5024
5025
|
// src/lib/api-client.ts
|
|
5025
|
-
var agtCliVersion = true ? "0.28.
|
|
5026
|
+
var agtCliVersion = true ? "0.28.495" : "dev";
|
|
5026
5027
|
var lastConfigHash = null;
|
|
5027
5028
|
function setConfigHash(hash) {
|
|
5028
5029
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -6499,11 +6500,7 @@ async function probeMcpStdio(config) {
|
|
|
6499
6500
|
details: { ...toolCount !== void 0 ? { toolCount } : {}, testTool }
|
|
6500
6501
|
});
|
|
6501
6502
|
}
|
|
6502
|
-
finish(
|
|
6503
|
-
status: "ok",
|
|
6504
|
-
message: toolCount !== void 0 ? `${toolCount} tools` : "reachable",
|
|
6505
|
-
...toolCount !== void 0 ? { details: { toolCount } } : {}
|
|
6506
|
-
});
|
|
6503
|
+
finish(handshakeToolsListOutcome(toolCount));
|
|
6507
6504
|
})();
|
|
6508
6505
|
});
|
|
6509
6506
|
}
|
|
@@ -7835,4 +7832,4 @@ export {
|
|
|
7835
7832
|
managerInstallSystemUnitCommand,
|
|
7836
7833
|
managerUninstallSystemUnitCommand
|
|
7837
7834
|
};
|
|
7838
|
-
//# sourceMappingURL=chunk-
|
|
7835
|
+
//# sourceMappingURL=chunk-CAHE6QSE.js.map
|