@integrity-labs/agt-cli 0.28.512 → 0.28.514
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-Z7DMKSCU.js → chunk-GJ6U2XU6.js} +18 -15
- package/dist/chunk-GJ6U2XU6.js.map +1 -0
- package/dist/{chunk-M3ICTPSG.js → chunk-S5RR4UHQ.js} +55 -15
- package/dist/chunk-S5RR4UHQ.js.map +1 -0
- package/dist/{claude-pair-runtime-MNO6DCMX.js → claude-pair-runtime-YGKYLV4M.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/direct-chat-channel.js +53 -9
- package/dist/mcp/index.js +34 -5
- package/dist/mcp/origami.js +66 -11
- package/dist/mcp/slack-channel.js +53 -9
- package/dist/mcp/telegram-channel.js +53 -9
- package/dist/{persistent-session-HUKX54KL.js → persistent-session-RM5ZY2SB.js} +2 -2
- package/dist/{responsiveness-probe-HN7KBLJP.js → responsiveness-probe-C4KMTKWR.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-M3ICTPSG.js.map +0 -1
- package/dist/chunk-Z7DMKSCU.js.map +0 -1
- /package/dist/{claude-pair-runtime-MNO6DCMX.js.map → claude-pair-runtime-YGKYLV4M.js.map} +0 -0
- /package/dist/{persistent-session-HUKX54KL.js.map → persistent-session-RM5ZY2SB.js.map} +0 -0
- /package/dist/{responsiveness-probe-HN7KBLJP.js.map → responsiveness-probe-C4KMTKWR.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-GJ6U2XU6.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-S5RR4UHQ.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.514" : "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.514" : "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) => {
|
|
@@ -12,7 +12,6 @@ import {
|
|
|
12
12
|
RESTART_BREAKER_PROVISIONING_WINDOW_MS,
|
|
13
13
|
bestConnectivityEvidence,
|
|
14
14
|
buildForwardHeaders,
|
|
15
|
-
buildHostBrokeredRemoteMcpEntry,
|
|
16
15
|
buildIntegrationsSection,
|
|
17
16
|
buildLiveHeaderRemoteMcpProxyEntry,
|
|
18
17
|
buildNativeMcpEntry,
|
|
@@ -43,7 +42,7 @@ import {
|
|
|
43
42
|
resolveConnectivityProbe,
|
|
44
43
|
worseConnectivityOutcome,
|
|
45
44
|
wrapScheduledTaskPrompt
|
|
46
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-S5RR4UHQ.js";
|
|
47
46
|
import {
|
|
48
47
|
parsePsRows
|
|
49
48
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -3495,10 +3494,6 @@ function buildMcpJson(input) {
|
|
|
3495
3494
|
}
|
|
3496
3495
|
};
|
|
3497
3496
|
}
|
|
3498
|
-
const hasHiggsfield = input.integrations?.some((i) => i.definition_id === "higgsfield");
|
|
3499
|
-
if (hasHiggsfield) {
|
|
3500
|
-
mcpServers["higgsfield"] = buildHostBrokeredRemoteMcpEntry("https://mcp.higgsfield.ai/mcp");
|
|
3501
|
-
}
|
|
3502
3497
|
if (hasXeroBroker) {
|
|
3503
3498
|
mcpServers["xero-broker"] = {
|
|
3504
3499
|
command: "npx",
|
|
@@ -4700,13 +4695,6 @@ ${sections}`
|
|
|
4700
4695
|
});
|
|
4701
4696
|
}
|
|
4702
4697
|
}
|
|
4703
|
-
const hasHiggsfield = integrations.some((i) => i.definition_id === "higgsfield");
|
|
4704
|
-
if (hasHiggsfield) {
|
|
4705
|
-
this.writeMcpServer(codeName, "higgsfield", {
|
|
4706
|
-
url: "https://mcp.higgsfield.ai/mcp",
|
|
4707
|
-
type: "http"
|
|
4708
|
-
});
|
|
4709
|
-
}
|
|
4710
4698
|
if (hasXeroBroker) {
|
|
4711
4699
|
const brokerAgentId = resolveBrokerAgentId(codeName);
|
|
4712
4700
|
if (!brokerAgentId) {
|
|
@@ -4802,6 +4790,21 @@ ${sections}`
|
|
|
4802
4790
|
// Direct HTTP ones at once. Inert on a host that never had the MCP
|
|
4803
4791
|
// variant; keep until the fleet has refreshed past the retirement.
|
|
4804
4792
|
"vercel",
|
|
4793
|
+
// ENG-8440 retirement tombstone — identical reasoning to 'vercel'
|
|
4794
|
+
// above. Higgsfield moved from a host-brokered remote MCP
|
|
4795
|
+
// (`https://mcp.higgsfield.ai/mcp`) to an api_key Direct HTTP
|
|
4796
|
+
// integration, so it no longer writes an entry and no longer appears in
|
|
4797
|
+
// `registryRemoteMcpKeys`. It was never in that set to begin with — its
|
|
4798
|
+
// entry came from a hardcoded branch in buildMcpJson/writeIntegrations
|
|
4799
|
+
// rather than a registry `remoteMcp` spec — so removing those branches
|
|
4800
|
+
// alone leaves every host that installed it holding a `higgsfield`
|
|
4801
|
+
// server in `.mcp.json` that nothing declares and nothing can prune.
|
|
4802
|
+
// Worse than dead weight: the stored Claude Code OAuth grant is still
|
|
4803
|
+
// valid, so those agents would keep the retired MCP tools alongside the
|
|
4804
|
+
// new Direct HTTP ones and could call either. Inert on a host that
|
|
4805
|
+
// never had the MCP variant; keep until the fleet has refreshed past
|
|
4806
|
+
// the retirement.
|
|
4807
|
+
"higgsfield",
|
|
4805
4808
|
...nativeMcpKeys,
|
|
4806
4809
|
...registryRemoteMcpKeys,
|
|
4807
4810
|
...Object.entries(OAUTH_PROVIDERS).filter(([, provider]) => Boolean(provider.mcpUrl)).map(([id]) => id)
|
|
@@ -5314,7 +5317,7 @@ function exchangeFailureKind(err) {
|
|
|
5314
5317
|
}
|
|
5315
5318
|
|
|
5316
5319
|
// src/lib/api-client.ts
|
|
5317
|
-
var agtCliVersion = true ? "0.28.
|
|
5320
|
+
var agtCliVersion = true ? "0.28.514" : "dev";
|
|
5318
5321
|
var lastConfigHash = null;
|
|
5319
5322
|
function setConfigHash(hash) {
|
|
5320
5323
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -8620,4 +8623,4 @@ export {
|
|
|
8620
8623
|
managerInstallSystemUnitCommand,
|
|
8621
8624
|
managerUninstallSystemUnitCommand
|
|
8622
8625
|
};
|
|
8623
|
-
//# sourceMappingURL=chunk-
|
|
8626
|
+
//# sourceMappingURL=chunk-GJ6U2XU6.js.map
|