@integrity-labs/agt-cli 0.28.262 → 0.28.264
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-DMNWHJ65.js → chunk-E45AAMBQ.js} +31 -15
- package/dist/chunk-E45AAMBQ.js.map +1 -0
- package/dist/{chunk-G3ETF363.js → chunk-MQ5S642N.js} +3 -3
- package/dist/{claude-pair-runtime-V7W27H6N.js → claude-pair-runtime-X5NJYZSK.js} +2 -2
- package/dist/lib/manager-worker.js +235 -187
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/origami.js +5 -3
- package/dist/{persistent-session-XHFZVRAZ.js → persistent-session-OP4TXILO.js} +2 -2
- package/dist/{responsiveness-probe-QBGVCH6W.js → responsiveness-probe-K2RGVZCR.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-DMNWHJ65.js.map +0 -1
- /package/dist/{chunk-G3ETF363.js.map → chunk-MQ5S642N.js.map} +0 -0
- /package/dist/{claude-pair-runtime-V7W27H6N.js.map → claude-pair-runtime-X5NJYZSK.js.map} +0 -0
- /package/dist/{persistent-session-XHFZVRAZ.js.map → persistent-session-OP4TXILO.js.map} +0 -0
- /package/dist/{responsiveness-probe-QBGVCH6W.js.map → responsiveness-probe-K2RGVZCR.js.map} +0 -0
package/dist/mcp/origami.js
CHANGED
|
@@ -38568,14 +38568,15 @@ var INTEGRATION_REGISTRY = [
|
|
|
38568
38568
|
id: "kajabi",
|
|
38569
38569
|
name: "Kajabi",
|
|
38570
38570
|
category: "crm",
|
|
38571
|
-
description: "Run a Kajabi creator business from chat: read contacts, products, offers, and analytics, manage contact tags & segments,
|
|
38571
|
+
description: "Run a Kajabi creator business from chat: read contacts, products, offers, and analytics, manage contact tags & segments, draft email broadcasts & sequences, and update course details & thumbnails.",
|
|
38572
38572
|
// Same remote streamable-HTTP MCP + OAuth pattern as Granola/Brand Ninja.
|
|
38573
38573
|
// Kajabi's Doorkeeper AS implements the MCP discovery chain (RFC
|
|
38574
38574
|
// 9728/8414/7591); auth is OAuth 2.0 authorization-code with PKCE (S256)
|
|
38575
38575
|
// and a public client registered via one-time Dynamic Client Registration
|
|
38576
38576
|
// (scripts/dcr-register.ts against https://mcp.kajabi.com/mcp/oauth/register
|
|
38577
38577
|
// → OAUTH_KAJABI_CLIENT_ID; register with --scope 'read write:contacts
|
|
38578
|
-
// write:emails' since Doorkeeper
|
|
38578
|
+
// write:emails write:content write:commerce' (ENG-7483) since Doorkeeper
|
|
38579
|
+
// caps a dynamic client to its registered
|
|
38579
38580
|
// scopes). End-user consent is brokered by the webapp through the shared
|
|
38580
38581
|
// /integrations/oauth/authorize → /callback path, and the access_token is
|
|
38581
38582
|
// injected into .mcp.json via the generic bearer-header path
|
|
@@ -38586,7 +38587,8 @@ var INTEGRATION_REGISTRY = [
|
|
|
38586
38587
|
capabilities: [
|
|
38587
38588
|
{ id: "kajabi:read", name: "Read & Discover", description: "List sites and read contacts, products, offers, purchases, and revenue/contacts analytics (list_sites, select_site, search_contacts, get_contact, list_offers, get_offer, search_products, get_revenue_analytics, \u2026)", access: "read" },
|
|
38588
38589
|
{ id: "kajabi:contacts", name: "Manage Contacts", description: "Create and apply contact tags, and create/update saved contact segments (create_tag, tag_contact, untag_contact, create_segment, update_segment)", access: "write" },
|
|
38589
|
-
{ id: "kajabi:emails", name: "Manage Emails", description: "Read and draft email broadcasts and sequences \u2014 drafts only, sending stays a human action in Kajabi (create_broadcast, create_sequence, list_broadcasts, get_sequence)", access: "write" }
|
|
38590
|
+
{ id: "kajabi:emails", name: "Manage Emails", description: "Read and draft email broadcasts and sequences \u2014 drafts only, sending stays a human action in Kajabi (create_broadcast, create_sequence, list_broadcasts, get_sequence)", access: "write" },
|
|
38591
|
+
{ id: "kajabi:courses", name: "Manage Courses", description: "Read course structure and update course details: title, description, and thumbnail (get_course, update_course). ENG-7483: the course-thumbnail refresh path.", access: "write" }
|
|
38590
38592
|
],
|
|
38591
38593
|
docs_url: "https://help.kajabi.com/articles/api-integrations/connect-kajabi-to-claude-or-chatgpt",
|
|
38592
38594
|
beta: true
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-E45AAMBQ.js";
|
|
40
40
|
import "./chunk-XWVM4KPK.js";
|
|
41
41
|
export {
|
|
42
42
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -77,4 +77,4 @@ export {
|
|
|
77
77
|
writeEgressAllowlist,
|
|
78
78
|
writePersistentClaudeWrapper
|
|
79
79
|
};
|
|
80
|
-
//# sourceMappingURL=persistent-session-
|
|
80
|
+
//# sourceMappingURL=persistent-session-OP4TXILO.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-E45AAMBQ.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -418,4 +418,4 @@ export {
|
|
|
418
418
|
readAndResetSlackReplyBindingClassifications,
|
|
419
419
|
readAndResetSlackReplyTargetClassifications
|
|
420
420
|
};
|
|
421
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
421
|
+
//# sourceMappingURL=responsiveness-probe-K2RGVZCR.js.map
|