@integrity-labs/agt-cli 0.28.668 → 0.28.670
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 +5 -5
- package/dist/{chunk-52V5BMBC.js → chunk-5GDKWIB3.js} +39 -26
- package/dist/chunk-5GDKWIB3.js.map +1 -0
- package/dist/{chunk-4GA4K2BF.js → chunk-HGVJVYKW.js} +33 -22
- package/dist/chunk-HGVJVYKW.js.map +1 -0
- package/dist/{chunk-EQK5Q7ZL.js → chunk-Z4O42VGJ.js} +9 -4
- package/dist/chunk-Z4O42VGJ.js.map +1 -0
- package/dist/{claude-pair-runtime-SXEBKHYM.js → claude-pair-runtime-W6KBVHK4.js} +2 -2
- package/dist/lib/manager-worker.js +13 -13
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +31 -20
- package/dist/mcp/index.js +31 -20
- package/dist/mcp/origami.js +31 -20
- package/dist/mcp/slack-channel.js +31 -20
- package/dist/mcp/telegram-channel.js +31 -20
- package/dist/{persistent-session-3OCFA42T.js → persistent-session-RZH67PNC.js} +3 -3
- package/dist/{responsiveness-probe-ZEKOULXD.js → responsiveness-probe-NPNMNOFF.js} +3 -3
- package/dist/{session-auth-dead-3QN24ELV.js → session-auth-dead-CFAYSZ43.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-4GA4K2BF.js.map +0 -1
- package/dist/chunk-52V5BMBC.js.map +0 -1
- package/dist/chunk-EQK5Q7ZL.js.map +0 -1
- /package/dist/{claude-pair-runtime-SXEBKHYM.js.map → claude-pair-runtime-W6KBVHK4.js.map} +0 -0
- /package/dist/{persistent-session-3OCFA42T.js.map → persistent-session-RZH67PNC.js.map} +0 -0
- /package/dist/{responsiveness-probe-ZEKOULXD.js.map → responsiveness-probe-NPNMNOFF.js.map} +0 -0
- /package/dist/{session-auth-dead-3QN24ELV.js.map → session-auth-dead-CFAYSZ43.js.map} +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
LATE_BOUND_VARS,
|
|
3
|
+
agentTmpDirFor,
|
|
3
4
|
buildLiveHeaderRemoteMcpProxyEntry,
|
|
4
5
|
buildNativeMcpEntry,
|
|
5
6
|
buildOAuthRemoteMcpProxyEntry,
|
|
@@ -8,7 +9,7 @@ import {
|
|
|
8
9
|
isolationMode,
|
|
9
10
|
log,
|
|
10
11
|
parseEnvIntegrations
|
|
11
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-5GDKWIB3.js";
|
|
12
13
|
import {
|
|
13
14
|
BIND_FAILURE_QUARANTINE_THRESHOLD,
|
|
14
15
|
INTEGRATIONS_SECTION_END,
|
|
@@ -55,7 +56,7 @@ import {
|
|
|
55
56
|
resolveConnectivityProbe,
|
|
56
57
|
worseConnectivityOutcome,
|
|
57
58
|
wrapScheduledTaskPrompt
|
|
58
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-HGVJVYKW.js";
|
|
59
60
|
import {
|
|
60
61
|
parsePsRows
|
|
61
62
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1884,6 +1885,9 @@ function getProjectDir(codeName) {
|
|
|
1884
1885
|
function getScratchDir(codeName) {
|
|
1885
1886
|
return join3(getAgentDir(codeName), "scratch");
|
|
1886
1887
|
}
|
|
1888
|
+
function getAgentTmpDir(codeName) {
|
|
1889
|
+
return agentTmpDirFor(getAgentDir(codeName));
|
|
1890
|
+
}
|
|
1887
1891
|
function sweepScratchDir(codeName, now = Date.now()) {
|
|
1888
1892
|
const scratchDir = getScratchDir(codeName);
|
|
1889
1893
|
let removed = 0;
|
|
@@ -2062,6 +2066,7 @@ function deployArtifactsToProject(codeName, provisionDir) {
|
|
|
2062
2066
|
mkdirSync3(projectDir, { recursive: true });
|
|
2063
2067
|
try {
|
|
2064
2068
|
mkdirSync3(getScratchDir(codeName), { recursive: true });
|
|
2069
|
+
mkdirSync3(getAgentTmpDir(codeName), { recursive: true });
|
|
2065
2070
|
sweepScratchDir(codeName);
|
|
2066
2071
|
} catch (err) {
|
|
2067
2072
|
process.stderr.write(`[scratch] [ensure-or-sweep-failed] agent=${codeName} error=${err.message}
|
|
@@ -6342,7 +6347,7 @@ function exchangeFailureKind(err) {
|
|
|
6342
6347
|
}
|
|
6343
6348
|
|
|
6344
6349
|
// src/lib/api-client.ts
|
|
6345
|
-
var agtCliVersion = true ? "0.28.
|
|
6350
|
+
var agtCliVersion = true ? "0.28.670" : "dev";
|
|
6346
6351
|
var lastConfigHash = null;
|
|
6347
6352
|
function setConfigHash(hash) {
|
|
6348
6353
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -10084,4 +10089,4 @@ export {
|
|
|
10084
10089
|
managerInstallSystemUnitCommand,
|
|
10085
10090
|
managerUninstallSystemUnitCommand
|
|
10086
10091
|
};
|
|
10087
|
-
//# sourceMappingURL=chunk-
|
|
10092
|
+
//# sourceMappingURL=chunk-Z4O42VGJ.js.map
|