@integrity-labs/agt-cli 0.28.475 → 0.28.476
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-Q53LFQVD.js → chunk-IGXBEU55.js} +3 -3
- package/dist/chunk-IGXBEU55.js.map +1 -0
- package/dist/{chunk-LGBI4P2P.js → chunk-Q6RVMDAC.js} +29 -1
- package/dist/chunk-Q6RVMDAC.js.map +1 -0
- package/dist/{claude-pair-runtime-IIQ6O7QX.js → claude-pair-runtime-DYLJU6EV.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/direct-chat-channel.js +28 -0
- package/dist/mcp/origami.js +28 -0
- package/dist/mcp/slack-channel.js +28 -0
- package/dist/mcp/telegram-channel.js +28 -0
- package/dist/{persistent-session-BBWEPY24.js → persistent-session-QITF76DO.js} +2 -2
- package/dist/{responsiveness-probe-5AG6X2BN.js → responsiveness-probe-BEA4J6IL.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-LGBI4P2P.js.map +0 -1
- package/dist/chunk-Q53LFQVD.js.map +0 -1
- /package/dist/{claude-pair-runtime-IIQ6O7QX.js.map → claude-pair-runtime-DYLJU6EV.js.map} +0 -0
- /package/dist/{persistent-session-BBWEPY24.js.map → persistent-session-QITF76DO.js.map} +0 -0
- /package/dist/{responsiveness-probe-5AG6X2BN.js.map → responsiveness-probe-BEA4J6IL.js.map} +0 -0
|
@@ -6552,6 +6552,34 @@ var INTEGRATION_REGISTRY = [
|
|
|
6552
6552
|
docs_url: "https://higgsfield.ai/mcp",
|
|
6553
6553
|
beta: true
|
|
6554
6554
|
},
|
|
6555
|
+
{
|
|
6556
|
+
id: "vercel",
|
|
6557
|
+
name: "Vercel",
|
|
6558
|
+
category: "infrastructure",
|
|
6559
|
+
description: "Check on Vercel app deployments \u2014 status, build/runtime logs \u2014 and search Vercel documentation. Remote streamable-HTTP MCP at https://mcp.vercel.com.",
|
|
6560
|
+
// Same OAuth pattern as Granola/Higgsfield: Claude Code brokers the
|
|
6561
|
+
// browser sign-in at runtime; nothing for the manager API to provision.
|
|
6562
|
+
supported_auth_types: ["none"],
|
|
6563
|
+
capabilities: [
|
|
6564
|
+
{ id: "vercel:read-deployments", name: "Read Deployments", description: "List teams/projects, check deployment status, and read build/runtime logs.", access: "read" },
|
|
6565
|
+
{ id: "vercel:search-docs", name: "Search Documentation", description: "Search Vercel platform documentation.", access: "read" }
|
|
6566
|
+
],
|
|
6567
|
+
docs_url: "https://vercel.com/docs/agent-resources/vercel-mcp",
|
|
6568
|
+
// Beta until the headless OAuth flow (and Vercel's OAuth-client allowlist,
|
|
6569
|
+
// which is vendor-side and outside our control) is verified end-to-end.
|
|
6570
|
+
beta: true,
|
|
6571
|
+
// No `auth`/`headers` — host-brokered OAuth (Claude Code authenticates
|
|
6572
|
+
// directly with Vercel; nothing for us to inject). Declaring this here
|
|
6573
|
+
// (rather than a hardcoded buildMcpJson/writeIntegrations branch, the
|
|
6574
|
+
// pre-ENG-8035 Higgsfield-era pattern) lets the generic remote-MCP loop
|
|
6575
|
+
// render the `.mcp.json` entry AND enrolls 'vercel' in the
|
|
6576
|
+
// `registryRemoteMcpKeys` prune universe automatically, so an uninstall
|
|
6577
|
+
// actually removes the entry instead of leaving it stale.
|
|
6578
|
+
remoteMcp: {
|
|
6579
|
+
type: "http",
|
|
6580
|
+
url: "https://mcp.vercel.com"
|
|
6581
|
+
}
|
|
6582
|
+
},
|
|
6555
6583
|
{
|
|
6556
6584
|
id: "qmd",
|
|
6557
6585
|
name: "QMD Memory Search",
|
|
@@ -14416,4 +14444,4 @@ export {
|
|
|
14416
14444
|
stopAllSessionsAndWait,
|
|
14417
14445
|
getProjectDir
|
|
14418
14446
|
};
|
|
14419
|
-
//# sourceMappingURL=chunk-
|
|
14447
|
+
//# sourceMappingURL=chunk-Q6RVMDAC.js.map
|