@integrity-labs/agt-cli 0.28.529 → 0.28.531
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-MKSL2EQU.js → chunk-2GICKZI7.js} +3 -3
- package/dist/chunk-2GICKZI7.js.map +1 -0
- package/dist/{chunk-Q4XGKOHZ.js → chunk-3FCJXTHW.js} +30 -12
- package/dist/chunk-3FCJXTHW.js.map +1 -0
- package/dist/{claude-pair-runtime-TC2TTMIJ.js → claude-pair-runtime-KMLPAKYF.js} +2 -2
- package/dist/lib/manager-worker.js +16 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/augmented-support.js +1 -1
- package/dist/{persistent-session-T4IY7AJU.js → persistent-session-KO2FPI6V.js} +8 -2
- package/dist/{responsiveness-probe-WYGR4B2F.js → responsiveness-probe-DQCG2MB6.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-MKSL2EQU.js.map +0 -1
- package/dist/chunk-Q4XGKOHZ.js.map +0 -1
- /package/dist/{claude-pair-runtime-TC2TTMIJ.js.map → claude-pair-runtime-KMLPAKYF.js.map} +0 -0
- /package/dist/{persistent-session-T4IY7AJU.js.map → persistent-session-KO2FPI6V.js.map} +0 -0
- /package/dist/{responsiveness-probe-WYGR4B2F.js.map → responsiveness-probe-DQCG2MB6.js.map} +0 -0
|
@@ -21004,7 +21004,7 @@ var SupportClient = class _SupportClient {
|
|
|
21004
21004
|
this.apiKey = config2.apiKey;
|
|
21005
21005
|
this.fetchImpl = config2.fetchImpl ?? fetch;
|
|
21006
21006
|
this.token = config2.initialToken ?? "";
|
|
21007
|
-
this.tokenExpiresAt = config2.initialToken ? Date.now() + 50 * 6e4 : 0;
|
|
21007
|
+
this.tokenExpiresAt = config2.initialToken ? config2.apiKey ? Date.now() + 50 * 6e4 : Number.POSITIVE_INFINITY : 0;
|
|
21008
21008
|
}
|
|
21009
21009
|
async refreshToken() {
|
|
21010
21010
|
if (!this.apiKey) {
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
EGRESS_BASELINE_DOMAINS,
|
|
3
|
+
REQUIRED_SPAWN_ENV,
|
|
3
4
|
SEND_KEYS_ENTER_DELAY_MS,
|
|
4
5
|
_internals,
|
|
5
6
|
buildDockerRunCommand,
|
|
6
7
|
buildEgressAllowlist,
|
|
8
|
+
buildSpawnEnv,
|
|
7
9
|
collectDiagnostics,
|
|
8
10
|
directChatSessionStatePath,
|
|
9
11
|
egressAllowlistHostPath,
|
|
10
12
|
egressMode,
|
|
13
|
+
findMissingSpawnEnv,
|
|
11
14
|
getLastFailureContext,
|
|
12
15
|
getProjectDir,
|
|
13
16
|
getSessionState,
|
|
@@ -37,18 +40,21 @@ import {
|
|
|
37
40
|
writeDirectChatSessionState,
|
|
38
41
|
writeEgressAllowlist,
|
|
39
42
|
writePersistentClaudeWrapper
|
|
40
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-3FCJXTHW.js";
|
|
41
44
|
import "./chunk-XWVM4KPK.js";
|
|
42
45
|
export {
|
|
43
46
|
EGRESS_BASELINE_DOMAINS,
|
|
47
|
+
REQUIRED_SPAWN_ENV,
|
|
44
48
|
SEND_KEYS_ENTER_DELAY_MS,
|
|
45
49
|
_internals,
|
|
46
50
|
buildDockerRunCommand,
|
|
47
51
|
buildEgressAllowlist,
|
|
52
|
+
buildSpawnEnv,
|
|
48
53
|
collectDiagnostics,
|
|
49
54
|
directChatSessionStatePath,
|
|
50
55
|
egressAllowlistHostPath,
|
|
51
56
|
egressMode,
|
|
57
|
+
findMissingSpawnEnv,
|
|
52
58
|
getLastFailureContext,
|
|
53
59
|
getProjectDir,
|
|
54
60
|
getSessionState,
|
|
@@ -79,4 +85,4 @@ export {
|
|
|
79
85
|
writeEgressAllowlist,
|
|
80
86
|
writePersistentClaudeWrapper
|
|
81
87
|
};
|
|
82
|
-
//# sourceMappingURL=persistent-session-
|
|
88
|
+
//# sourceMappingURL=persistent-session-KO2FPI6V.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-3FCJXTHW.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -684,4 +684,4 @@ export {
|
|
|
684
684
|
readAndResetSlackReplyBindingClassifications,
|
|
685
685
|
readAndResetSlackReplyTargetClassifications
|
|
686
686
|
};
|
|
687
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
687
|
+
//# sourceMappingURL=responsiveness-probe-DQCG2MB6.js.map
|