@integrity-labs/agt-cli 0.28.202 → 0.28.204
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-X3LBSW45.js → chunk-2A2EV3B3.js} +2 -2
- package/dist/{chunk-E32KXZXX.js → chunk-2AWUVRIX.js} +69 -1
- package/dist/chunk-2AWUVRIX.js.map +1 -0
- package/dist/{chunk-YE5PQAY4.js → chunk-DKVV2REL.js} +7 -3
- package/dist/{chunk-YE5PQAY4.js.map → chunk-DKVV2REL.js.map} +1 -1
- package/dist/{claude-pair-runtime-GUPKR3WG.js → claude-pair-runtime-H5UNK3LX.js} +2 -2
- package/dist/lib/manager-worker.js +43 -16
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-R7Q7QQYO.js → persistent-session-OXQGFIXK.js} +3 -3
- package/dist/{responsiveness-probe-WZGKNPQ4.js → responsiveness-probe-T5Z5KPVX.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-E32KXZXX.js.map +0 -1
- /package/dist/{chunk-X3LBSW45.js.map → chunk-2A2EV3B3.js.map} +0 -0
- /package/dist/{claude-pair-runtime-GUPKR3WG.js.map → claude-pair-runtime-H5UNK3LX.js.map} +0 -0
- /package/dist/{persistent-session-R7Q7QQYO.js.map → persistent-session-OXQGFIXK.js.map} +0 -0
- /package/dist/{responsiveness-probe-WZGKNPQ4.js.map → responsiveness-probe-T5Z5KPVX.js.map} +0 -0
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
resolveConnectivityProbe,
|
|
18
18
|
worseConnectivityOutcome,
|
|
19
19
|
wrapScheduledTaskPrompt
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-2AWUVRIX.js";
|
|
21
21
|
|
|
22
22
|
// ../../packages/core/dist/provisioning/mcp-config-guards.js
|
|
23
23
|
import { chmodSync, existsSync, readFileSync, renameSync, writeFileSync, unlinkSync } from "fs";
|
|
@@ -5525,13 +5525,16 @@ function requireHost() {
|
|
|
5525
5525
|
}
|
|
5526
5526
|
|
|
5527
5527
|
// src/lib/api-client.ts
|
|
5528
|
-
var agtCliVersion = true ? "0.28.
|
|
5528
|
+
var agtCliVersion = true ? "0.28.204" : "dev";
|
|
5529
5529
|
var lastConfigHash = null;
|
|
5530
5530
|
function setConfigHash(hash) {
|
|
5531
5531
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
5532
5532
|
}
|
|
5533
5533
|
var cachedExchange = null;
|
|
5534
5534
|
var exchangeInFlight = null;
|
|
5535
|
+
function getCachedClaudeAuthMode() {
|
|
5536
|
+
return cachedExchange?.claudeAuthMode ?? null;
|
|
5537
|
+
}
|
|
5535
5538
|
function invalidateExchange() {
|
|
5536
5539
|
cachedExchange = null;
|
|
5537
5540
|
lastConfigHash = null;
|
|
@@ -6797,6 +6800,7 @@ export {
|
|
|
6797
6800
|
getHost,
|
|
6798
6801
|
requireHost,
|
|
6799
6802
|
setConfigHash,
|
|
6803
|
+
getCachedClaudeAuthMode,
|
|
6800
6804
|
exchangeApiKey,
|
|
6801
6805
|
ApiError,
|
|
6802
6806
|
api,
|
|
@@ -6829,4 +6833,4 @@ export {
|
|
|
6829
6833
|
managerInstallSystemUnitCommand,
|
|
6830
6834
|
managerUninstallSystemUnitCommand
|
|
6831
6835
|
};
|
|
6832
|
-
//# sourceMappingURL=chunk-
|
|
6836
|
+
//# sourceMappingURL=chunk-DKVV2REL.js.map
|