@integrity-labs/agt-cli 0.22.5 → 0.23.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 +4 -4
- package/dist/{chunk-E56L56ER.js → chunk-2TOCO5D2.js} +49 -10
- package/dist/chunk-2TOCO5D2.js.map +1 -0
- package/dist/{chunk-P2KDZABK.js → chunk-CMG5AKXB.js} +2 -2
- package/dist/{chunk-ZTGSZTJH.js → chunk-GAN6DZ72.js} +11 -2
- package/dist/chunk-GAN6DZ72.js.map +1 -0
- package/dist/{claude-pair-runtime-234WQUVH.js → claude-pair-runtime-XZX4KOI3.js} +2 -2
- package/dist/lib/manager-worker.js +97 -8
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-4NA4PN5A.js → persistent-session-OZWBRDFQ.js} +9 -3
- package/dist/{responsiveness-probe-PNLRDNTS.js → responsiveness-probe-MLBXIDVO.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-E56L56ER.js.map +0 -1
- package/dist/chunk-ZTGSZTJH.js.map +0 -1
- /package/dist/{chunk-P2KDZABK.js.map → chunk-CMG5AKXB.js.map} +0 -0
- /package/dist/{claude-pair-runtime-234WQUVH.js.map → claude-pair-runtime-XZX4KOI3.js.map} +0 -0
- /package/dist/{persistent-session-4NA4PN5A.js.map → persistent-session-OZWBRDFQ.js.map} +0 -0
- /package/dist/{responsiveness-probe-PNLRDNTS.js.map → responsiveness-probe-MLBXIDVO.js.map} +0 -0
|
@@ -6,21 +6,24 @@ import {
|
|
|
6
6
|
getProjectDir,
|
|
7
7
|
getSessionState,
|
|
8
8
|
injectMessage,
|
|
9
|
+
isAgentPromptReady,
|
|
9
10
|
isKanbanLoopArmedForCurrentSession,
|
|
11
|
+
isKanbanLoopDisabled,
|
|
10
12
|
isSessionHealthy,
|
|
11
13
|
paneLogPath,
|
|
12
14
|
prepareForRespawn,
|
|
13
15
|
readPaneLogTail,
|
|
14
16
|
resetRestartCount,
|
|
15
17
|
resolveClaudeBinary,
|
|
18
|
+
sendToAgent,
|
|
16
19
|
startPersistentSession,
|
|
17
20
|
stopAllSessions,
|
|
18
21
|
stopAllSessionsAndWait,
|
|
19
22
|
stopPersistentSession,
|
|
20
23
|
takeZombieDetection,
|
|
21
24
|
writePersistentClaudeWrapper
|
|
22
|
-
} from "./chunk-
|
|
23
|
-
import "./chunk-
|
|
25
|
+
} from "./chunk-GAN6DZ72.js";
|
|
26
|
+
import "./chunk-2TOCO5D2.js";
|
|
24
27
|
export {
|
|
25
28
|
_internals,
|
|
26
29
|
collectDiagnostics,
|
|
@@ -29,13 +32,16 @@ export {
|
|
|
29
32
|
getProjectDir,
|
|
30
33
|
getSessionState,
|
|
31
34
|
injectMessage,
|
|
35
|
+
isAgentPromptReady,
|
|
32
36
|
isKanbanLoopArmedForCurrentSession,
|
|
37
|
+
isKanbanLoopDisabled,
|
|
33
38
|
isSessionHealthy,
|
|
34
39
|
paneLogPath,
|
|
35
40
|
prepareForRespawn,
|
|
36
41
|
readPaneLogTail,
|
|
37
42
|
resetRestartCount,
|
|
38
43
|
resolveClaudeBinary,
|
|
44
|
+
sendToAgent,
|
|
39
45
|
startPersistentSession,
|
|
40
46
|
stopAllSessions,
|
|
41
47
|
stopAllSessionsAndWait,
|
|
@@ -43,4 +49,4 @@ export {
|
|
|
43
49
|
takeZombieDetection,
|
|
44
50
|
writePersistentClaudeWrapper
|
|
45
51
|
};
|
|
46
|
-
//# sourceMappingURL=persistent-session-
|
|
52
|
+
//# sourceMappingURL=persistent-session-OZWBRDFQ.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-GAN6DZ72.js";
|
|
4
|
+
import "./chunk-2TOCO5D2.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
7
7
|
import { statSync } from "fs";
|
|
@@ -29,4 +29,4 @@ export {
|
|
|
29
29
|
collectResponsivenessProbes,
|
|
30
30
|
getResponsivenessIntervalMs
|
|
31
31
|
};
|
|
32
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
32
|
+
//# sourceMappingURL=responsiveness-probe-MLBXIDVO.js.map
|