@integrity-labs/agt-cli 0.28.161 → 0.28.163
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-TNTG4DNQ.js → chunk-BEUGTZ7Z.js} +25 -5
- package/dist/chunk-BEUGTZ7Z.js.map +1 -0
- package/dist/{chunk-CQZDKD2U.js → chunk-MTKFDGXO.js} +49 -4
- package/dist/chunk-MTKFDGXO.js.map +1 -0
- package/dist/{chunk-2D5COEAS.js → chunk-OW6ERQHP.js} +2 -2
- package/dist/{claude-pair-runtime-VHRJFJDJ.js → claude-pair-runtime-WEKLV5X5.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/remote-oauth-proxy.js +68 -3
- package/dist/mcp/slack-channel.js +70 -1
- package/dist/mcp/telegram-channel.js +63 -1
- package/dist/{persistent-session-3AC6FSX6.js → persistent-session-3ACIT7F5.js} +3 -3
- package/dist/{responsiveness-probe-ZXB5REIY.js → responsiveness-probe-5OCWCS3M.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-CQZDKD2U.js.map +0 -1
- package/dist/chunk-TNTG4DNQ.js.map +0 -1
- /package/dist/{chunk-2D5COEAS.js.map → chunk-OW6ERQHP.js.map} +0 -0
- /package/dist/{claude-pair-runtime-VHRJFJDJ.js.map → claude-pair-runtime-WEKLV5X5.js.map} +0 -0
- /package/dist/{persistent-session-3AC6FSX6.js.map → persistent-session-3ACIT7F5.js.map} +0 -0
- /package/dist/{responsiveness-probe-ZXB5REIY.js.map → responsiveness-probe-5OCWCS3M.js.map} +0 -0
|
@@ -573,6 +573,18 @@ function generateSlackAppManifest(input) {
|
|
|
573
573
|
description: "This agent's model, session origin, uptime + connectivity.",
|
|
574
574
|
should_escape: false
|
|
575
575
|
},
|
|
576
|
+
// ENG-6931: /ping-<code> - a connectivity check. The agent posts a
|
|
577
|
+
// visible pong via the normal chat.postMessage reply path, proving
|
|
578
|
+
// the channel can actually deliver. Routed by the slash_commands
|
|
579
|
+
// envelope handler in packages/mcp/src/slack-channel.ts; gated on the
|
|
580
|
+
// ping allowlist (team members + reports-to manager) materialized as
|
|
581
|
+
// SLACK_PING_ALLOWED_USERS.
|
|
582
|
+
{
|
|
583
|
+
command: agentSlashCommand("/ping", agent_code_name),
|
|
584
|
+
url: slash_command_url,
|
|
585
|
+
description: "Ping this agent to confirm its channel is connected (team + manager only).",
|
|
586
|
+
should_escape: false
|
|
587
|
+
},
|
|
576
588
|
// ENG-6233: per-agent /help-<code>. Bare `/help` is Slack-reserved,
|
|
577
589
|
// so register ONLY when a valid code name actually suffixes it
|
|
578
590
|
// (agentSlashCommand returns the bare base when it can't suffix —
|
|
@@ -4300,7 +4312,9 @@ var OAUTH_PROVIDERS = {
|
|
|
4300
4312
|
clientAuthMethod: "body",
|
|
4301
4313
|
pkce: "S256",
|
|
4302
4314
|
publicClient: true,
|
|
4303
|
-
mcpUrl: "https://mcp.granola.ai/mcp"
|
|
4315
|
+
mcpUrl: "https://mcp.granola.ai/mcp",
|
|
4316
|
+
// Curated surface (matches the catalog seed's defined_scopes[].tools).
|
|
4317
|
+
toolAllowlist: ["search-meetings", "read-transcript", "read-summary", "list-folders"]
|
|
4304
4318
|
},
|
|
4305
4319
|
"brand-ninja": {
|
|
4306
4320
|
// ENG-6820: Brand Ninja External-Content MCP, remote streamable-HTTP at
|
|
@@ -4331,7 +4345,9 @@ var OAUTH_PROVIDERS = {
|
|
|
4331
4345
|
clientAuthMethod: "body",
|
|
4332
4346
|
pkce: "S256",
|
|
4333
4347
|
publicClient: true,
|
|
4334
|
-
mcpUrl: "https://ext-api.app.brandninja.ai/v1/mcp"
|
|
4348
|
+
mcpUrl: "https://ext-api.app.brandninja.ai/v1/mcp",
|
|
4349
|
+
// Curated surface (matches the catalog seed's defined_scopes[].tools).
|
|
4350
|
+
toolAllowlist: ["submit_content_request", "get_content_status", "list_content_requests", "list_channels", "list_credentials"]
|
|
4335
4351
|
},
|
|
4336
4352
|
"kajabi": {
|
|
4337
4353
|
// Kajabi MCP — remote streamable-HTTP at https://mcp.kajabi.com/mcp.
|
|
@@ -4365,7 +4381,36 @@ var OAUTH_PROVIDERS = {
|
|
|
4365
4381
|
clientAuthMethod: "body",
|
|
4366
4382
|
pkce: "S256",
|
|
4367
4383
|
publicClient: true,
|
|
4368
|
-
mcpUrl: "https://mcp.kajabi.com/mcp"
|
|
4384
|
+
mcpUrl: "https://mcp.kajabi.com/mcp",
|
|
4385
|
+
// Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
|
|
4386
|
+
// live MCP advertises ~111 tools; the agent only needs these 25.
|
|
4387
|
+
toolAllowlist: [
|
|
4388
|
+
"list_sites",
|
|
4389
|
+
"get_site_summary",
|
|
4390
|
+
"select_site",
|
|
4391
|
+
"search_contacts",
|
|
4392
|
+
"get_contact",
|
|
4393
|
+
"search_products",
|
|
4394
|
+
"get_product",
|
|
4395
|
+
"list_offers",
|
|
4396
|
+
"get_offer",
|
|
4397
|
+
"list_offer_purchases",
|
|
4398
|
+
"get_revenue_analytics",
|
|
4399
|
+
"get_contacts_analytics",
|
|
4400
|
+
"list_tags",
|
|
4401
|
+
"create_tag",
|
|
4402
|
+
"tag_contact",
|
|
4403
|
+
"untag_contact",
|
|
4404
|
+
"list_segments",
|
|
4405
|
+
"create_segment",
|
|
4406
|
+
"update_segment",
|
|
4407
|
+
"list_broadcasts",
|
|
4408
|
+
"get_broadcast",
|
|
4409
|
+
"create_broadcast",
|
|
4410
|
+
"list_sequences",
|
|
4411
|
+
"get_sequence",
|
|
4412
|
+
"create_sequence"
|
|
4413
|
+
]
|
|
4369
4414
|
},
|
|
4370
4415
|
"notion-cli": {
|
|
4371
4416
|
// Notion's public OAuth app. Tokens are workspace-scoped and long-lived —
|
|
@@ -6484,4 +6529,4 @@ export {
|
|
|
6484
6529
|
parseEnvIntegrations,
|
|
6485
6530
|
probeMcpEnvSubstitution
|
|
6486
6531
|
};
|
|
6487
|
-
//# sourceMappingURL=chunk-
|
|
6532
|
+
//# sourceMappingURL=chunk-MTKFDGXO.js.map
|