@integrity-labs/agt-cli 0.28.155 → 0.28.157
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-FOVOCPCL.js → chunk-6VSS55A2.js} +48 -4
- package/dist/chunk-6VSS55A2.js.map +1 -0
- package/dist/{chunk-AYN7K3DY.js → chunk-E6ABR63O.js} +2 -2
- package/dist/{chunk-SKANUWSB.js → chunk-TLX6ORJ5.js} +35 -1
- package/dist/{chunk-SKANUWSB.js.map → chunk-TLX6ORJ5.js.map} +1 -1
- package/dist/{claude-pair-runtime-YEJA2OWZ.js → claude-pair-runtime-SXO5Q5R6.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/index.js +15 -7
- package/dist/{persistent-session-42JGH4TP.js → persistent-session-N7WFONZC.js} +3 -3
- package/dist/{responsiveness-probe-P3H7BWPZ.js → responsiveness-probe-UXJY4YRL.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-FOVOCPCL.js.map +0 -1
- /package/dist/{chunk-AYN7K3DY.js.map → chunk-E6ABR63O.js.map} +0 -0
- /package/dist/{claude-pair-runtime-YEJA2OWZ.js.map → claude-pair-runtime-SXO5Q5R6.js.map} +0 -0
- /package/dist/{persistent-session-42JGH4TP.js.map → persistent-session-N7WFONZC.js.map} +0 -0
- /package/dist/{responsiveness-probe-P3H7BWPZ.js.map → responsiveness-probe-UXJY4YRL.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatMissingVar,
|
|
4
4
|
isClaudeFastMode,
|
|
5
5
|
probeMcpEnvSubstitution
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-TLX6ORJ5.js";
|
|
7
7
|
import {
|
|
8
8
|
reapOrphanChannelMcps
|
|
9
9
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1588,4 +1588,4 @@ export {
|
|
|
1588
1588
|
stopAllSessionsAndWait,
|
|
1589
1589
|
getProjectDir
|
|
1590
1590
|
};
|
|
1591
|
-
//# sourceMappingURL=chunk-
|
|
1591
|
+
//# sourceMappingURL=chunk-E6ABR63O.js.map
|
|
@@ -4306,6 +4306,40 @@ var OAUTH_PROVIDERS = {
|
|
|
4306
4306
|
publicClient: true,
|
|
4307
4307
|
mcpUrl: "https://ext-api.app.brandninja.ai/v1/mcp"
|
|
4308
4308
|
},
|
|
4309
|
+
"kajabi": {
|
|
4310
|
+
// Kajabi MCP — remote streamable-HTTP at https://mcp.kajabi.com/mcp.
|
|
4311
|
+
// Same Granola/Brand-Ninja shape: OAuth 2.0 authorization-code with
|
|
4312
|
+
// mandatory PKCE (S256) and a public client (token_endpoint_auth_method
|
|
4313
|
+
// 'none') issued via Dynamic Client Registration (RFC 7591). Values below
|
|
4314
|
+
// are taken verbatim from Kajabi's RFC 8414 metadata at
|
|
4315
|
+
// https://mcp.kajabi.com/.well-known/oauth-authorization-server (a Rails
|
|
4316
|
+
// Doorkeeper AS), not inferred. NOTE the authorize host differs from the
|
|
4317
|
+
// token host: authorize is on app.kajabi.com (the login surface), while
|
|
4318
|
+
// token/register/revoke are on mcp.kajabi.com — do NOT "normalise" them to
|
|
4319
|
+
// one host. The bootstrap script (packages/api/scripts/dcr-register.ts)
|
|
4320
|
+
// registers a client once at deploy time against
|
|
4321
|
+
// https://mcp.kajabi.com/mcp/oauth/register; OAUTH_KAJABI_CLIENT_ID is set
|
|
4322
|
+
// from its output. Doorkeeper RESTRICTS a dynamic client to the scopes it
|
|
4323
|
+
// registered with, so register with the union of defaultScopes below
|
|
4324
|
+
// (--scope 'read write:contacts write:emails'). The AS advertises the
|
|
4325
|
+
// refresh_token grant (no openid/offline_access scope needed), so the
|
|
4326
|
+
// shared oauth-refresh cron rotates the bearer without operator action.
|
|
4327
|
+
definitionId: "kajabi",
|
|
4328
|
+
authorizeUrl: "https://app.kajabi.com/mcp/oauth/authorize",
|
|
4329
|
+
tokenUrl: "https://mcp.kajabi.com/mcp/oauth/token",
|
|
4330
|
+
revokeUrl: "https://mcp.kajabi.com/mcp/oauth/revoke",
|
|
4331
|
+
// Coarse Doorkeeper scopes (NOT openid-style). Least-privilege v1: cross-
|
|
4332
|
+
// domain reads (`read`) plus the two write surfaces this integration ships
|
|
4333
|
+
// (contact tags/segments, email broadcasts/sequences). Widen here (and
|
|
4334
|
+
// re-register the DCR client) when adding commerce/content/publish scopes.
|
|
4335
|
+
defaultScopes: ["read", "write:contacts", "write:emails"],
|
|
4336
|
+
supportsRefresh: true,
|
|
4337
|
+
extraAuthorizeParams: {},
|
|
4338
|
+
clientAuthMethod: "body",
|
|
4339
|
+
pkce: "S256",
|
|
4340
|
+
publicClient: true,
|
|
4341
|
+
mcpUrl: "https://mcp.kajabi.com/mcp"
|
|
4342
|
+
},
|
|
4309
4343
|
"notion-cli": {
|
|
4310
4344
|
// Notion's public OAuth app. Tokens are workspace-scoped and long-lived —
|
|
4311
4345
|
// Notion does not issue refresh_tokens, so `supportsRefresh: false` and
|
|
@@ -6356,4 +6390,4 @@ export {
|
|
|
6356
6390
|
parseEnvIntegrations,
|
|
6357
6391
|
probeMcpEnvSubstitution
|
|
6358
6392
|
};
|
|
6359
|
-
//# sourceMappingURL=chunk-
|
|
6393
|
+
//# sourceMappingURL=chunk-TLX6ORJ5.js.map
|