@integrity-labs/agt-cli 0.28.572 → 0.28.574
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 +9 -6
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-72K46XUZ.js → chunk-E3KBX3UW.js} +105 -5
- package/dist/chunk-E3KBX3UW.js.map +1 -0
- package/dist/{chunk-NG2MFOSH.js → chunk-PKBAJMBG.js} +9 -5
- package/dist/{chunk-NG2MFOSH.js.map → chunk-PKBAJMBG.js.map} +1 -1
- package/dist/{claude-pair-runtime-XTRJNDP2.js → claude-pair-runtime-4C5YXND6.js} +2 -2
- package/dist/lib/manager-worker.js +20 -12
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +22 -1
- package/dist/mcp/origami.js +22 -1
- package/dist/mcp/slack-channel.js +22 -1
- package/dist/mcp/telegram-channel.js +22 -1
- package/dist/{persistent-session-74MH2XTM.js → persistent-session-2ESCLFCK.js} +2 -2
- package/dist/{responsiveness-probe-5VNQQZNJ.js → responsiveness-probe-YCUDUCAS.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-72K46XUZ.js.map +0 -1
- /package/dist/{claude-pair-runtime-XTRJNDP2.js.map → claude-pair-runtime-4C5YXND6.js.map} +0 -0
- /package/dist/{persistent-session-74MH2XTM.js.map → persistent-session-2ESCLFCK.js.map} +0 -0
- /package/dist/{responsiveness-probe-5VNQQZNJ.js.map → responsiveness-probe-YCUDUCAS.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-PKBAJMBG.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-E3KBX3UW.js";
|
|
75
75
|
import "../chunk-XWVM4KPK.js";
|
|
76
76
|
|
|
77
77
|
// src/bin/agt.ts
|
|
@@ -4853,7 +4853,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4853
4853
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4854
4854
|
import chalk18 from "chalk";
|
|
4855
4855
|
import ora16 from "ora";
|
|
4856
|
-
var cliVersion = true ? "0.28.
|
|
4856
|
+
var cliVersion = true ? "0.28.574" : "dev";
|
|
4857
4857
|
async function fetchLatestVersion() {
|
|
4858
4858
|
const host2 = getHost();
|
|
4859
4859
|
if (!host2) return null;
|
|
@@ -5744,6 +5744,7 @@ async function integrationProbeCommand(agentCodeName, slug) {
|
|
|
5744
5744
|
const sourceType = integ.source_type ?? null;
|
|
5745
5745
|
const authType = integ.auth_type;
|
|
5746
5746
|
const connectivityTest = integ.connectivity_test ?? null;
|
|
5747
|
+
const remoteMcpUrl = integ.remote_mcp?.url ?? null;
|
|
5747
5748
|
const target = {
|
|
5748
5749
|
definitionId: integ.definition_id,
|
|
5749
5750
|
sourceType,
|
|
@@ -5756,9 +5757,11 @@ async function integrationProbeCommand(agentCodeName, slug) {
|
|
|
5756
5757
|
connectivityTest,
|
|
5757
5758
|
// ENG-7543: probe this connection's own server (find() picks the first
|
|
5758
5759
|
// connection for the slug; default fleet is single-connection = 'default').
|
|
5759
|
-
connectionKey: integ.connection_key ?? null
|
|
5760
|
+
connectionKey: integ.connection_key ?? null,
|
|
5761
|
+
remoteMcpUrl
|
|
5760
5762
|
}),
|
|
5761
|
-
connectivityTest
|
|
5763
|
+
connectivityTest,
|
|
5764
|
+
remoteMcpUrl
|
|
5762
5765
|
};
|
|
5763
5766
|
const outcome = await executeConnectivityProbe(target, probeDeps);
|
|
5764
5767
|
spinner.stop();
|
|
@@ -6028,7 +6031,7 @@ function handleError(err) {
|
|
|
6028
6031
|
}
|
|
6029
6032
|
|
|
6030
6033
|
// src/bin/agt.ts
|
|
6031
|
-
var cliVersion2 = true ? "0.28.
|
|
6034
|
+
var cliVersion2 = true ? "0.28.574" : "dev";
|
|
6032
6035
|
var program = new Command();
|
|
6033
6036
|
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");
|
|
6034
6037
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|