@integrity-labs/agt-cli 0.28.560 → 0.28.562
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-C2GQLZ4F.js → chunk-5LVSV3R5.js} +6 -3
- package/dist/chunk-5LVSV3R5.js.map +1 -0
- package/dist/{chunk-AN7V4OG6.js → chunk-PQEAUMMZ.js} +26 -2
- package/dist/chunk-PQEAUMMZ.js.map +1 -0
- package/dist/{claude-pair-runtime-D4BXRU2P.js → claude-pair-runtime-UHIPHP6G.js} +2 -2
- package/dist/lib/manager-worker.js +12 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +1 -1
- package/dist/mcp/origami.js +1 -1
- package/dist/mcp/slack-channel.js +1 -1
- package/dist/mcp/telegram-channel.js +1 -1
- package/dist/{persistent-session-7P5B6Z4M.js → persistent-session-ROIN4XRH.js} +2 -2
- package/dist/{responsiveness-probe-AALUPZKZ.js → responsiveness-probe-YQCU2K6O.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-AN7V4OG6.js.map +0 -1
- package/dist/chunk-C2GQLZ4F.js.map +0 -1
- /package/dist/{claude-pair-runtime-D4BXRU2P.js.map → claude-pair-runtime-UHIPHP6G.js.map} +0 -0
- /package/dist/{persistent-session-7P5B6Z4M.js.map → persistent-session-ROIN4XRH.js.map} +0 -0
- /package/dist/{responsiveness-probe-AALUPZKZ.js.map → responsiveness-probe-YQCU2K6O.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
success,
|
|
41
41
|
table,
|
|
42
42
|
warn
|
|
43
|
-
} from "../chunk-
|
|
43
|
+
} from "../chunk-5LVSV3R5.js";
|
|
44
44
|
import {
|
|
45
45
|
AnchorSessionClient,
|
|
46
46
|
CHANNEL_REGISTRY,
|
|
@@ -71,7 +71,7 @@ import {
|
|
|
71
71
|
requiredMcpWildcard,
|
|
72
72
|
resolveChannels,
|
|
73
73
|
serializeManifestForSlackCli
|
|
74
|
-
} from "../chunk-
|
|
74
|
+
} from "../chunk-PQEAUMMZ.js";
|
|
75
75
|
import "../chunk-XWVM4KPK.js";
|
|
76
76
|
|
|
77
77
|
// src/bin/agt.ts
|
|
@@ -4834,7 +4834,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4834
4834
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4835
4835
|
import chalk18 from "chalk";
|
|
4836
4836
|
import ora16 from "ora";
|
|
4837
|
-
var cliVersion = true ? "0.28.
|
|
4837
|
+
var cliVersion = true ? "0.28.562" : "dev";
|
|
4838
4838
|
async function fetchLatestVersion() {
|
|
4839
4839
|
const host2 = getHost();
|
|
4840
4840
|
if (!host2) return null;
|
|
@@ -6009,7 +6009,7 @@ function handleError(err) {
|
|
|
6009
6009
|
}
|
|
6010
6010
|
|
|
6011
6011
|
// src/bin/agt.ts
|
|
6012
|
-
var cliVersion2 = true ? "0.28.
|
|
6012
|
+
var cliVersion2 = true ? "0.28.562" : "dev";
|
|
6013
6013
|
var program = new Command();
|
|
6014
6014
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
6015
6015
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -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-PQEAUMMZ.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.562" : "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-5LVSV3R5.js.map
|