@integrity-labs/agt-cli 0.28.493 → 0.28.494
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-3XLUSG32.js → chunk-DJNJWFKI.js} +5 -8
- package/dist/{chunk-3XLUSG32.js.map → chunk-DJNJWFKI.js.map} +1 -1
- package/dist/{chunk-SRO2IQ4R.js → chunk-JHEJP3KC.js} +23 -6
- package/dist/chunk-JHEJP3KC.js.map +1 -0
- package/dist/{claude-pair-runtime-7TSEIWGA.js → claude-pair-runtime-2RMAJGZH.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/remote-oauth-proxy.js +37 -5
- package/dist/{persistent-session-MVAEGE6J.js → persistent-session-JEN37LZS.js} +2 -2
- package/dist/{responsiveness-probe-6YXN4G6V.js → responsiveness-probe-MSXL7NVR.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-SRO2IQ4R.js.map +0 -1
- /package/dist/{claude-pair-runtime-7TSEIWGA.js.map → claude-pair-runtime-2RMAJGZH.js.map} +0 -0
- /package/dist/{persistent-session-MVAEGE6J.js.map → persistent-session-JEN37LZS.js.map} +0 -0
- /package/dist/{responsiveness-probe-6YXN4G6V.js.map → responsiveness-probe-MSXL7NVR.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-DJNJWFKI.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-JHEJP3KC.js";
|
|
75
75
|
import "../chunk-XWVM4KPK.js";
|
|
76
76
|
|
|
77
77
|
// src/bin/agt.ts
|
|
@@ -4830,7 +4830,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4830
4830
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4831
4831
|
import chalk18 from "chalk";
|
|
4832
4832
|
import ora16 from "ora";
|
|
4833
|
-
var cliVersion = true ? "0.28.
|
|
4833
|
+
var cliVersion = true ? "0.28.494" : "dev";
|
|
4834
4834
|
async function fetchLatestVersion() {
|
|
4835
4835
|
const host2 = getHost();
|
|
4836
4836
|
if (!host2) return null;
|
|
@@ -6002,7 +6002,7 @@ function handleError(err) {
|
|
|
6002
6002
|
}
|
|
6003
6003
|
|
|
6004
6004
|
// src/bin/agt.ts
|
|
6005
|
-
var cliVersion2 = true ? "0.28.
|
|
6005
|
+
var cliVersion2 = true ? "0.28.494" : "dev";
|
|
6006
6006
|
var program = new Command();
|
|
6007
6007
|
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");
|
|
6008
6008
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
generateClaudeMd,
|
|
17
17
|
getFlagDefinition,
|
|
18
18
|
getFramework,
|
|
19
|
+
handshakeToolsListOutcome,
|
|
19
20
|
isolationMode,
|
|
20
21
|
listFlagDefinitions,
|
|
21
22
|
mcpWildcardsForServers,
|
|
@@ -30,7 +31,7 @@ import {
|
|
|
30
31
|
resolveConnectivityProbe,
|
|
31
32
|
worseConnectivityOutcome,
|
|
32
33
|
wrapScheduledTaskPrompt
|
|
33
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-JHEJP3KC.js";
|
|
34
35
|
import {
|
|
35
36
|
parsePsRows
|
|
36
37
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -5022,7 +5023,7 @@ function exchangeFailureKind(err) {
|
|
|
5022
5023
|
}
|
|
5023
5024
|
|
|
5024
5025
|
// src/lib/api-client.ts
|
|
5025
|
-
var agtCliVersion = true ? "0.28.
|
|
5026
|
+
var agtCliVersion = true ? "0.28.494" : "dev";
|
|
5026
5027
|
var lastConfigHash = null;
|
|
5027
5028
|
function setConfigHash(hash) {
|
|
5028
5029
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -6499,11 +6500,7 @@ async function probeMcpStdio(config) {
|
|
|
6499
6500
|
details: { ...toolCount !== void 0 ? { toolCount } : {}, testTool }
|
|
6500
6501
|
});
|
|
6501
6502
|
}
|
|
6502
|
-
finish(
|
|
6503
|
-
status: "ok",
|
|
6504
|
-
message: toolCount !== void 0 ? `${toolCount} tools` : "reachable",
|
|
6505
|
-
...toolCount !== void 0 ? { details: { toolCount } } : {}
|
|
6506
|
-
});
|
|
6503
|
+
finish(handshakeToolsListOutcome(toolCount));
|
|
6507
6504
|
})();
|
|
6508
6505
|
});
|
|
6509
6506
|
}
|
|
@@ -7835,4 +7832,4 @@ export {
|
|
|
7835
7832
|
managerInstallSystemUnitCommand,
|
|
7836
7833
|
managerUninstallSystemUnitCommand
|
|
7837
7834
|
};
|
|
7838
|
-
//# sourceMappingURL=chunk-
|
|
7835
|
+
//# sourceMappingURL=chunk-DJNJWFKI.js.map
|