@integrity-labs/agt-cli 0.28.72 → 0.28.74
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-36O7GO5B.js → chunk-AB57D3NN.js} +2 -2
- package/dist/{chunk-Z2BMTZQK.js → chunk-PXMYLQWB.js} +13 -1
- package/dist/chunk-PXMYLQWB.js.map +1 -0
- package/dist/{chunk-IL4CR6YM.js → chunk-WNUAEC22.js} +38 -5
- package/dist/chunk-WNUAEC22.js.map +1 -0
- package/dist/{claude-pair-runtime-XW57YWRZ.js → claude-pair-runtime-6KND4QS7.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/index.js +55 -0
- package/dist/{persistent-session-JCVHOC2Q.js → persistent-session-VKRJVW7A.js} +3 -3
- package/dist/{responsiveness-probe-OTYU6IER.js → responsiveness-probe-2VTHIPLG.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-IL4CR6YM.js.map +0 -1
- package/dist/chunk-Z2BMTZQK.js.map +0 -1
- /package/dist/{chunk-36O7GO5B.js.map → chunk-AB57D3NN.js.map} +0 -0
- /package/dist/{claude-pair-runtime-XW57YWRZ.js.map → claude-pair-runtime-6KND4QS7.js.map} +0 -0
- /package/dist/{persistent-session-JCVHOC2Q.js.map → persistent-session-VKRJVW7A.js.map} +0 -0
- /package/dist/{responsiveness-probe-OTYU6IER.js.map → responsiveness-probe-2VTHIPLG.js.map} +0 -0
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
resolveConnectivityProbe,
|
|
23
23
|
worseConnectivityOutcome,
|
|
24
24
|
wrapScheduledTaskPrompt
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-PXMYLQWB.js";
|
|
26
26
|
|
|
27
27
|
// ../../packages/core/dist/integrations/registry.js
|
|
28
28
|
var INTEGRATION_REGISTRY = [
|
|
@@ -211,6 +211,22 @@ var INTEGRATION_REGISTRY = [
|
|
|
211
211
|
// validation before we drop the beta flag.
|
|
212
212
|
beta: true
|
|
213
213
|
},
|
|
214
|
+
{
|
|
215
|
+
id: "higgsfield",
|
|
216
|
+
name: "Higgsfield",
|
|
217
|
+
category: "media",
|
|
218
|
+
description: "Generative media \u2014 image (Soul, Nano Banana) and video (Kling, Veo, Seedance) generation, character training (Soul ID), and generation history. Remote streamable-HTTP MCP at https://mcp.higgsfield.ai/mcp.",
|
|
219
|
+
// Same OAuth pattern as Granola: Claude Code brokers the browser
|
|
220
|
+
// sign-in at runtime; nothing for the manager API to provision.
|
|
221
|
+
supported_auth_types: ["none"],
|
|
222
|
+
capabilities: [
|
|
223
|
+
{ id: "higgsfield:generate-image", name: "Generate Image", description: "Create images via Soul, Nano Banana, and other image models \u2014 up to 4K. Includes Soul ID character consistency.", access: "write" },
|
|
224
|
+
{ id: "higgsfield:generate-video", name: "Generate Video", description: "Create videos via Kling, Veo, Seedance \u2014 up to 15s. Includes UGC, product review, TV spot presets.", access: "write" },
|
|
225
|
+
{ id: "higgsfield:read-history", name: "Read History", description: "Browse generation history for iterative workflows; reuse prior outputs as references.", access: "read" }
|
|
226
|
+
],
|
|
227
|
+
docs_url: "https://higgsfield.ai/mcp",
|
|
228
|
+
beta: true
|
|
229
|
+
},
|
|
214
230
|
{
|
|
215
231
|
id: "qmd",
|
|
216
232
|
name: "QMD Memory Search",
|
|
@@ -3895,6 +3911,9 @@ function buildRemoteMcpEntry(definitionId) {
|
|
|
3895
3911
|
}
|
|
3896
3912
|
};
|
|
3897
3913
|
}
|
|
3914
|
+
function buildHostBrokeredRemoteMcpEntry(url) {
|
|
3915
|
+
return { type: "http", url };
|
|
3916
|
+
}
|
|
3898
3917
|
|
|
3899
3918
|
// ../../packages/core/dist/provisioning/native-mcp.js
|
|
3900
3919
|
function buildNativeMcpEntry(spec, ctx) {
|
|
@@ -5584,6 +5603,10 @@ function buildMcpJson(input) {
|
|
|
5584
5603
|
}
|
|
5585
5604
|
};
|
|
5586
5605
|
}
|
|
5606
|
+
const hasHiggsfield = input.integrations?.some((i) => i.definition_id === "higgsfield");
|
|
5607
|
+
if (hasHiggsfield) {
|
|
5608
|
+
mcpServers["higgsfield"] = buildHostBrokeredRemoteMcpEntry("https://mcp.higgsfield.ai/mcp");
|
|
5609
|
+
}
|
|
5587
5610
|
if (hasXeroBroker) {
|
|
5588
5611
|
mcpServers["xero-broker"] = {
|
|
5589
5612
|
command: "npx",
|
|
@@ -5653,7 +5676,7 @@ function mapScheduledTasks(tasks) {
|
|
|
5653
5676
|
};
|
|
5654
5677
|
});
|
|
5655
5678
|
}
|
|
5656
|
-
function buildUrlMcpServerEntry(url, headers, type
|
|
5679
|
+
function buildUrlMcpServerEntry(url, headers, type) {
|
|
5657
5680
|
const hasHeaders = !!headers && Object.keys(headers).length > 0;
|
|
5658
5681
|
if (url.includes("composio.dev") && hasHeaders) {
|
|
5659
5682
|
return { type: "http", url, headers };
|
|
@@ -5676,7 +5699,10 @@ function buildUrlMcpServerEntry(url, headers, type = "http") {
|
|
|
5676
5699
|
};
|
|
5677
5700
|
}
|
|
5678
5701
|
if (hasHeaders) {
|
|
5679
|
-
return { type, url, headers };
|
|
5702
|
+
return { type: type ?? "http", url, headers };
|
|
5703
|
+
}
|
|
5704
|
+
if (type) {
|
|
5705
|
+
return { type, url };
|
|
5680
5706
|
}
|
|
5681
5707
|
return { command: "npx", args: ["-y", "mcp-remote", url, "--allow-http"] };
|
|
5682
5708
|
}
|
|
@@ -6602,6 +6628,13 @@ ${sections}`
|
|
|
6602
6628
|
});
|
|
6603
6629
|
}
|
|
6604
6630
|
}
|
|
6631
|
+
const hasHiggsfield = integrations.some((i) => i.definition_id === "higgsfield");
|
|
6632
|
+
if (hasHiggsfield) {
|
|
6633
|
+
this.writeMcpServer(codeName, "higgsfield", {
|
|
6634
|
+
url: "https://mcp.higgsfield.ai/mcp",
|
|
6635
|
+
type: "http"
|
|
6636
|
+
});
|
|
6637
|
+
}
|
|
6605
6638
|
if (hasXeroBroker) {
|
|
6606
6639
|
const brokerAgentId = resolveBrokerAgentId(codeName);
|
|
6607
6640
|
if (!brokerAgentId) {
|
|
@@ -7364,7 +7397,7 @@ function requireHost() {
|
|
|
7364
7397
|
}
|
|
7365
7398
|
|
|
7366
7399
|
// src/lib/api-client.ts
|
|
7367
|
-
var agtCliVersion = true ? "0.28.
|
|
7400
|
+
var agtCliVersion = true ? "0.28.74" : "dev";
|
|
7368
7401
|
var lastConfigHash = null;
|
|
7369
7402
|
function setConfigHash(hash) {
|
|
7370
7403
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -8660,4 +8693,4 @@ export {
|
|
|
8660
8693
|
managerInstallSystemUnitCommand,
|
|
8661
8694
|
managerUninstallSystemUnitCommand
|
|
8662
8695
|
};
|
|
8663
|
-
//# sourceMappingURL=chunk-
|
|
8696
|
+
//# sourceMappingURL=chunk-WNUAEC22.js.map
|