@integrity-labs/agt-cli 0.26.2-eng5706.1 → 0.27.0
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 +651 -186
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-U3HCB23E.js → chunk-BKLEFKUZ.js} +10 -8
- package/dist/chunk-BKLEFKUZ.js.map +1 -0
- package/dist/{chunk-QSDDP7JN.js → chunk-LJZK5RL3.js} +2 -2
- package/dist/{chunk-LBYU24PW.js → chunk-YWXPSVI5.js} +22 -8
- package/dist/{chunk-LBYU24PW.js.map → chunk-YWXPSVI5.js.map} +1 -1
- package/dist/{claude-pair-runtime-2NNAUBP3.js → claude-pair-runtime-3UQKYKMO.js} +2 -2
- package/dist/lib/manager-worker.js +7 -7
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +168 -0
- package/dist/mcp/slack-channel.js +101 -16
- package/dist/mcp/telegram-channel.js +212 -40
- package/dist/{persistent-session-K4X76LLB.js → persistent-session-SE3E72ET.js} +3 -3
- package/dist/{responsiveness-probe-QBV43SJ7.js → responsiveness-probe-MTMEIXEL.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-U3HCB23E.js.map +0 -1
- /package/dist/{chunk-QSDDP7JN.js.map → chunk-LJZK5RL3.js.map} +0 -0
- /package/dist/{claude-pair-runtime-2NNAUBP3.js.map → claude-pair-runtime-3UQKYKMO.js.map} +0 -0
- /package/dist/{persistent-session-K4X76LLB.js.map → persistent-session-SE3E72ET.js.map} +0 -0
- /package/dist/{responsiveness-probe-QBV43SJ7.js.map → responsiveness-probe-MTMEIXEL.js.map} +0 -0
|
@@ -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-SE3E72ET.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-3UQKYKMO.js.map
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
provisionOrientHook,
|
|
14
14
|
provisionStopHook,
|
|
15
15
|
requireHost
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-YWXPSVI5.js";
|
|
17
17
|
import {
|
|
18
18
|
getProjectDir as getProjectDir2,
|
|
19
19
|
getReadyTasks,
|
|
@@ -44,7 +44,7 @@ import {
|
|
|
44
44
|
stopAllSessionsAndWait,
|
|
45
45
|
stopPersistentSession,
|
|
46
46
|
takeZombieDetection
|
|
47
|
-
} from "../chunk-
|
|
47
|
+
} from "../chunk-LJZK5RL3.js";
|
|
48
48
|
import {
|
|
49
49
|
KANBAN_CHECK_COMMAND,
|
|
50
50
|
appendDmFooter,
|
|
@@ -67,7 +67,7 @@ import {
|
|
|
67
67
|
resolveConnectivityProbe,
|
|
68
68
|
resolveDmTarget,
|
|
69
69
|
wrapScheduledTaskPrompt
|
|
70
|
-
} from "../chunk-
|
|
70
|
+
} from "../chunk-BKLEFKUZ.js";
|
|
71
71
|
import {
|
|
72
72
|
parsePsRows,
|
|
73
73
|
reapOrphanChannelMcps
|
|
@@ -3161,7 +3161,7 @@ var cachedFrameworkVersion = null;
|
|
|
3161
3161
|
var lastVersionCheckAt = 0;
|
|
3162
3162
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
3163
3163
|
var lastResponsivenessProbeAt = 0;
|
|
3164
|
-
var agtCliVersion = true ? "0.
|
|
3164
|
+
var agtCliVersion = true ? "0.27.0" : "dev";
|
|
3165
3165
|
function resolveBrewPath(execFileSync4) {
|
|
3166
3166
|
try {
|
|
3167
3167
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -4120,7 +4120,7 @@ async function pollCycle() {
|
|
|
4120
4120
|
}
|
|
4121
4121
|
try {
|
|
4122
4122
|
const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
|
|
4123
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
4123
|
+
const { collectDiagnostics } = await import("../persistent-session-SE3E72ET.js");
|
|
4124
4124
|
const diagCodeNames = [...agentState.persistentSessionAgents];
|
|
4125
4125
|
const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
|
|
4126
4126
|
let tailscaleHostname;
|
|
@@ -4188,7 +4188,7 @@ async function pollCycle() {
|
|
|
4188
4188
|
const {
|
|
4189
4189
|
collectResponsivenessProbes,
|
|
4190
4190
|
getResponsivenessIntervalMs
|
|
4191
|
-
} = await import("../responsiveness-probe-
|
|
4191
|
+
} = await import("../responsiveness-probe-MTMEIXEL.js");
|
|
4192
4192
|
const probeIntervalMs = getResponsivenessIntervalMs();
|
|
4193
4193
|
if (now - lastResponsivenessProbeAt > probeIntervalMs) {
|
|
4194
4194
|
const probeCodeNames = [...agentState.persistentSessionAgents];
|
|
@@ -8111,7 +8111,7 @@ async function processClaudePairSessions(agents) {
|
|
|
8111
8111
|
killPairSession,
|
|
8112
8112
|
pairTmuxSession,
|
|
8113
8113
|
finalizeClaudePairOnboarding
|
|
8114
|
-
} = await import("../claude-pair-runtime-
|
|
8114
|
+
} = await import("../claude-pair-runtime-3UQKYKMO.js");
|
|
8115
8115
|
for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
|
|
8116
8116
|
log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
|
|
8117
8117
|
const killed = await killPairSession(pairTmuxSession(pairId));
|