@integrity-labs/agt-cli 0.28.561 → 0.28.563
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-MWGJOFRI.js → chunk-37XH72RK.js} +25 -1
- package/dist/chunk-37XH72RK.js.map +1 -0
- package/dist/{chunk-HBZ6OURT.js → chunk-UKV7Z7ZC.js} +6 -3
- package/dist/chunk-UKV7Z7ZC.js.map +1 -0
- package/dist/{claude-pair-runtime-2C3YHSPM.js → claude-pair-runtime-G5WJEN6W.js} +2 -2
- package/dist/lib/manager-worker.js +12 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-55IQBW5G.js → persistent-session-VHCBKZAY.js} +2 -2
- package/dist/{responsiveness-probe-VX6DFDNA.js → responsiveness-probe-BWN35KUV.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-HBZ6OURT.js.map +0 -1
- package/dist/chunk-MWGJOFRI.js.map +0 -1
- /package/dist/{claude-pair-runtime-2C3YHSPM.js.map → claude-pair-runtime-G5WJEN6W.js.map} +0 -0
- /package/dist/{persistent-session-55IQBW5G.js.map → persistent-session-VHCBKZAY.js.map} +0 -0
- /package/dist/{responsiveness-probe-VX6DFDNA.js.map → responsiveness-probe-BWN35KUV.js.map} +0 -0
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
getFlagDefinition,
|
|
27
27
|
getFramework,
|
|
28
28
|
handshakeToolsListOutcome,
|
|
29
|
+
isControlPlaneOnlyConfigKey,
|
|
29
30
|
isDefaultRemoteMcpConnection,
|
|
30
31
|
isolationMode,
|
|
31
32
|
listFlagDefinitions,
|
|
@@ -45,7 +46,7 @@ import {
|
|
|
45
46
|
resolveConnectivityProbe,
|
|
46
47
|
worseConnectivityOutcome,
|
|
47
48
|
wrapScheduledTaskPrompt
|
|
48
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-37XH72RK.js";
|
|
49
50
|
import {
|
|
50
51
|
parsePsRows
|
|
51
52
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -4877,6 +4878,8 @@ ${sections}`
|
|
|
4877
4878
|
if (integration.config) {
|
|
4878
4879
|
const config = integration.config;
|
|
4879
4880
|
for (const [key, value] of Object.entries(config)) {
|
|
4881
|
+
if (isControlPlaneOnlyConfigKey(key))
|
|
4882
|
+
continue;
|
|
4880
4883
|
if (typeof value === "string" && value) {
|
|
4881
4884
|
const upperKey = key.toUpperCase();
|
|
4882
4885
|
const stripped = upperKey.startsWith(`${unscopedPrefix}_`) ? upperKey.slice(unscopedPrefix.length + 1) : upperKey;
|
|
@@ -5643,7 +5646,7 @@ function exchangeFailureKind(err) {
|
|
|
5643
5646
|
}
|
|
5644
5647
|
|
|
5645
5648
|
// src/lib/api-client.ts
|
|
5646
|
-
var agtCliVersion = true ? "0.28.
|
|
5649
|
+
var agtCliVersion = true ? "0.28.563" : "dev";
|
|
5647
5650
|
var lastConfigHash = null;
|
|
5648
5651
|
function setConfigHash(hash) {
|
|
5649
5652
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -9008,4 +9011,4 @@ export {
|
|
|
9008
9011
|
managerInstallSystemUnitCommand,
|
|
9009
9012
|
managerUninstallSystemUnitCommand
|
|
9010
9013
|
};
|
|
9011
|
-
//# sourceMappingURL=chunk-
|
|
9014
|
+
//# sourceMappingURL=chunk-UKV7Z7ZC.js.map
|