@integrity-labs/agt-cli 0.28.494 → 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-JHEJP3KC.js → chunk-4SQZDAWG.js} +63 -1
- package/dist/chunk-4SQZDAWG.js.map +1 -0
- package/dist/{chunk-DJNJWFKI.js → chunk-CAHE6QSE.js} +3 -3
- package/dist/{claude-pair-runtime-2RMAJGZH.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/slack-channel.js +14 -0
- package/dist/mcp/telegram-channel.js +14 -0
- package/dist/{persistent-session-JEN37LZS.js → persistent-session-TSPVNVQL.js} +2 -2
- package/dist/{responsiveness-probe-MSXL7NVR.js → responsiveness-probe-3LWQKHV2.js} +64 -2
- package/dist/responsiveness-probe-3LWQKHV2.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-JHEJP3KC.js.map +0 -1
- package/dist/responsiveness-probe-MSXL7NVR.js.map +0 -1
- /package/dist/{chunk-DJNJWFKI.js.map → chunk-CAHE6QSE.js.map} +0 -0
- /package/dist/{claude-pair-runtime-2RMAJGZH.js.map → claude-pair-runtime-LCQYCW67.js.map} +0 -0
- /package/dist/{persistent-session-JEN37LZS.js.map → persistent-session-TSPVNVQL.js.map} +0 -0
|
@@ -31,7 +31,7 @@ import {
|
|
|
31
31
|
resolveConnectivityProbe,
|
|
32
32
|
worseConnectivityOutcome,
|
|
33
33
|
wrapScheduledTaskPrompt
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-4SQZDAWG.js";
|
|
35
35
|
import {
|
|
36
36
|
parsePsRows
|
|
37
37
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -5023,7 +5023,7 @@ function exchangeFailureKind(err) {
|
|
|
5023
5023
|
}
|
|
5024
5024
|
|
|
5025
5025
|
// src/lib/api-client.ts
|
|
5026
|
-
var agtCliVersion = true ? "0.28.
|
|
5026
|
+
var agtCliVersion = true ? "0.28.495" : "dev";
|
|
5027
5027
|
var lastConfigHash = null;
|
|
5028
5028
|
function setConfigHash(hash) {
|
|
5029
5029
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -7832,4 +7832,4 @@ export {
|
|
|
7832
7832
|
managerInstallSystemUnitCommand,
|
|
7833
7833
|
managerUninstallSystemUnitCommand
|
|
7834
7834
|
};
|
|
7835
|
-
//# sourceMappingURL=chunk-
|
|
7835
|
+
//# sourceMappingURL=chunk-CAHE6QSE.js.map
|
|
@@ -100,7 +100,7 @@ async function spawnPairSession(session) {
|
|
|
100
100
|
return { ok: true };
|
|
101
101
|
} catch {
|
|
102
102
|
}
|
|
103
|
-
const { resolveClaudeBinary } = await import("./persistent-session-
|
|
103
|
+
const { resolveClaudeBinary } = await import("./persistent-session-TSPVNVQL.js");
|
|
104
104
|
const claudeBin = resolveClaudeBinary();
|
|
105
105
|
const pairEnv = {
|
|
106
106
|
...process.env,
|
|
@@ -373,4 +373,4 @@ export {
|
|
|
373
373
|
startClaudePair,
|
|
374
374
|
submitClaudePairCode
|
|
375
375
|
};
|
|
376
|
-
//# sourceMappingURL=claude-pair-runtime-
|
|
376
|
+
//# sourceMappingURL=claude-pair-runtime-LCQYCW67.js.map
|