@integrity-labs/agt-cli 0.28.865 → 0.28.867

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.
Files changed (24) hide show
  1. package/dist/assets/review/SWEEP.md +169 -0
  2. package/dist/bin/agt.js +5 -5
  3. package/dist/{chunk-RVXI7GZO.js → chunk-QNNFNPTJ.js} +4 -4
  4. package/dist/{chunk-JG3EAFZO.js → chunk-VCPESUZV.js} +83 -62
  5. package/dist/{chunk-JG3EAFZO.js.map → chunk-VCPESUZV.js.map} +1 -1
  6. package/dist/{chunk-PXDYKP5O.js → chunk-XHVKILCG.js} +2 -2
  7. package/dist/{claude-pair-runtime-OWOZ2ZQ7.js → claude-pair-runtime-2XKDYROX.js} +2 -2
  8. package/dist/lib/manager-worker.js +28 -23
  9. package/dist/lib/manager-worker.js.map +1 -1
  10. package/dist/mcp/direct-chat-channel.js +23 -2
  11. package/dist/mcp/index.js +23 -2
  12. package/dist/mcp/origami.js +23 -2
  13. package/dist/mcp/slack-channel.js +23 -2
  14. package/dist/mcp/telegram-channel.js +23 -2
  15. package/dist/{persistent-session-GSXFKCVO.js → persistent-session-J4GCUX72.js} +3 -3
  16. package/dist/{responsiveness-probe-GOM3ZYW3.js → responsiveness-probe-UEB5LRGG.js} +3 -3
  17. package/dist/{session-auth-dead-ID4L35CN.js → session-auth-dead-S24CY4WK.js} +2 -2
  18. package/package.json +2 -2
  19. /package/dist/{chunk-RVXI7GZO.js.map → chunk-QNNFNPTJ.js.map} +0 -0
  20. /package/dist/{chunk-PXDYKP5O.js.map → chunk-XHVKILCG.js.map} +0 -0
  21. /package/dist/{claude-pair-runtime-OWOZ2ZQ7.js.map → claude-pair-runtime-2XKDYROX.js.map} +0 -0
  22. /package/dist/{persistent-session-GSXFKCVO.js.map → persistent-session-J4GCUX72.js.map} +0 -0
  23. /package/dist/{responsiveness-probe-GOM3ZYW3.js.map → responsiveness-probe-UEB5LRGG.js.map} +0 -0
  24. /package/dist/{session-auth-dead-ID4L35CN.js.map → session-auth-dead-S24CY4WK.js.map} +0 -0
@@ -32631,7 +32631,9 @@ var OAUTH_PROVIDERS = {
32631
32631
  publicClient: true,
32632
32632
  mcpUrl: "https://mcp.kajabi.com/mcp",
32633
32633
  // Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
32634
- // live MCP advertises ~111 tools; the agent only needs these 28.
32634
+ // live MCP advertises ~111 tools; the agent only needs these 34.
32635
+ // (Was written as 28 and left stale when the four pages/themes tools landed
32636
+ // in ENG-7629's follow-up — recounted here rather than left to drift again.)
32635
32637
  // CS-1427: `enable_toolset` is included so an agent can activate its own
32636
32638
  // products/commerce + analytics toolsets on the connection (Kajabi gates those
32637
32639
  // tool groups behind a runtime toolset that returns "not active" until enabled).
@@ -32676,7 +32678,26 @@ var OAUTH_PROVIDERS = {
32676
32678
  "list_landing_pages",
32677
32679
  "get_landing_page",
32678
32680
  "update_landing_page",
32679
- "get_theme_content"
32681
+ "get_theme_content",
32682
+ // CS-1689: the write half of the two groups above. Every Kajabi write we
32683
+ // curate stopped at the email-content boundary — an agent could
32684
+ // create_sequence and get_theme_content but could not add an email to a
32685
+ // sequence or apply a theme edit, so any change to an EXISTING email had
32686
+ // to go back to the customer by hand.
32687
+ //
32688
+ // Both names are Kajabi's own, taken from the descriptions of tools we
32689
+ // already advertise rather than guessed: `create_sequence` says "Add
32690
+ // emails with add_sequence_email", and `create_broadcast` +
32691
+ // `get_theme_content` both say to "pair with update_theme_content to
32692
+ // apply changes". That sourcing matters here — a name the server does not
32693
+ // advertise is logged and SKIPPED by the proxy, so a wrong guess would
32694
+ // look applied and change nothing.
32695
+ //
32696
+ // No new catalog scope: these join the existing kajabi:emails and
32697
+ // kajabi:pages scopes, so already-connected sites do not need to
32698
+ // re-authorise to pick them up.
32699
+ "add_sequence_email",
32700
+ "update_theme_content"
32680
32701
  ],
32681
32702
  // CS-1446: Kajabi gates several tool groups behind a runtime `enable_toolset`
32682
32703
  // and does not advertise their tools in `tools/list` until the group is
package/dist/mcp/index.js CHANGED
@@ -25205,7 +25205,9 @@ var OAUTH_PROVIDERS = {
25205
25205
  publicClient: true,
25206
25206
  mcpUrl: "https://mcp.kajabi.com/mcp",
25207
25207
  // Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
25208
- // live MCP advertises ~111 tools; the agent only needs these 28.
25208
+ // live MCP advertises ~111 tools; the agent only needs these 34.
25209
+ // (Was written as 28 and left stale when the four pages/themes tools landed
25210
+ // in ENG-7629's follow-up — recounted here rather than left to drift again.)
25209
25211
  // CS-1427: `enable_toolset` is included so an agent can activate its own
25210
25212
  // products/commerce + analytics toolsets on the connection (Kajabi gates those
25211
25213
  // tool groups behind a runtime toolset that returns "not active" until enabled).
@@ -25250,7 +25252,26 @@ var OAUTH_PROVIDERS = {
25250
25252
  "list_landing_pages",
25251
25253
  "get_landing_page",
25252
25254
  "update_landing_page",
25253
- "get_theme_content"
25255
+ "get_theme_content",
25256
+ // CS-1689: the write half of the two groups above. Every Kajabi write we
25257
+ // curate stopped at the email-content boundary — an agent could
25258
+ // create_sequence and get_theme_content but could not add an email to a
25259
+ // sequence or apply a theme edit, so any change to an EXISTING email had
25260
+ // to go back to the customer by hand.
25261
+ //
25262
+ // Both names are Kajabi's own, taken from the descriptions of tools we
25263
+ // already advertise rather than guessed: `create_sequence` says "Add
25264
+ // emails with add_sequence_email", and `create_broadcast` +
25265
+ // `get_theme_content` both say to "pair with update_theme_content to
25266
+ // apply changes". That sourcing matters here — a name the server does not
25267
+ // advertise is logged and SKIPPED by the proxy, so a wrong guess would
25268
+ // look applied and change nothing.
25269
+ //
25270
+ // No new catalog scope: these join the existing kajabi:emails and
25271
+ // kajabi:pages scopes, so already-connected sites do not need to
25272
+ // re-authorise to pick them up.
25273
+ "add_sequence_email",
25274
+ "update_theme_content"
25254
25275
  ],
25255
25276
  // CS-1446: Kajabi gates several tool groups behind a runtime `enable_toolset`
25256
25277
  // and does not advertise their tools in `tools/list` until the group is
@@ -39336,7 +39336,9 @@ var OAUTH_PROVIDERS = {
39336
39336
  publicClient: true,
39337
39337
  mcpUrl: "https://mcp.kajabi.com/mcp",
39338
39338
  // Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
39339
- // live MCP advertises ~111 tools; the agent only needs these 28.
39339
+ // live MCP advertises ~111 tools; the agent only needs these 34.
39340
+ // (Was written as 28 and left stale when the four pages/themes tools landed
39341
+ // in ENG-7629's follow-up — recounted here rather than left to drift again.)
39340
39342
  // CS-1427: `enable_toolset` is included so an agent can activate its own
39341
39343
  // products/commerce + analytics toolsets on the connection (Kajabi gates those
39342
39344
  // tool groups behind a runtime toolset that returns "not active" until enabled).
@@ -39381,7 +39383,26 @@ var OAUTH_PROVIDERS = {
39381
39383
  "list_landing_pages",
39382
39384
  "get_landing_page",
39383
39385
  "update_landing_page",
39384
- "get_theme_content"
39386
+ "get_theme_content",
39387
+ // CS-1689: the write half of the two groups above. Every Kajabi write we
39388
+ // curate stopped at the email-content boundary — an agent could
39389
+ // create_sequence and get_theme_content but could not add an email to a
39390
+ // sequence or apply a theme edit, so any change to an EXISTING email had
39391
+ // to go back to the customer by hand.
39392
+ //
39393
+ // Both names are Kajabi's own, taken from the descriptions of tools we
39394
+ // already advertise rather than guessed: `create_sequence` says "Add
39395
+ // emails with add_sequence_email", and `create_broadcast` +
39396
+ // `get_theme_content` both say to "pair with update_theme_content to
39397
+ // apply changes". That sourcing matters here — a name the server does not
39398
+ // advertise is logged and SKIPPED by the proxy, so a wrong guess would
39399
+ // look applied and change nothing.
39400
+ //
39401
+ // No new catalog scope: these join the existing kajabi:emails and
39402
+ // kajabi:pages scopes, so already-connected sites do not need to
39403
+ // re-authorise to pick them up.
39404
+ "add_sequence_email",
39405
+ "update_theme_content"
39385
39406
  ],
39386
39407
  // CS-1446: Kajabi gates several tool groups behind a runtime `enable_toolset`
39387
39408
  // and does not advertise their tools in `tools/list` until the group is
@@ -33478,7 +33478,9 @@ var OAUTH_PROVIDERS = {
33478
33478
  publicClient: true,
33479
33479
  mcpUrl: "https://mcp.kajabi.com/mcp",
33480
33480
  // Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
33481
- // live MCP advertises ~111 tools; the agent only needs these 28.
33481
+ // live MCP advertises ~111 tools; the agent only needs these 34.
33482
+ // (Was written as 28 and left stale when the four pages/themes tools landed
33483
+ // in ENG-7629's follow-up — recounted here rather than left to drift again.)
33482
33484
  // CS-1427: `enable_toolset` is included so an agent can activate its own
33483
33485
  // products/commerce + analytics toolsets on the connection (Kajabi gates those
33484
33486
  // tool groups behind a runtime toolset that returns "not active" until enabled).
@@ -33523,7 +33525,26 @@ var OAUTH_PROVIDERS = {
33523
33525
  "list_landing_pages",
33524
33526
  "get_landing_page",
33525
33527
  "update_landing_page",
33526
- "get_theme_content"
33528
+ "get_theme_content",
33529
+ // CS-1689: the write half of the two groups above. Every Kajabi write we
33530
+ // curate stopped at the email-content boundary — an agent could
33531
+ // create_sequence and get_theme_content but could not add an email to a
33532
+ // sequence or apply a theme edit, so any change to an EXISTING email had
33533
+ // to go back to the customer by hand.
33534
+ //
33535
+ // Both names are Kajabi's own, taken from the descriptions of tools we
33536
+ // already advertise rather than guessed: `create_sequence` says "Add
33537
+ // emails with add_sequence_email", and `create_broadcast` +
33538
+ // `get_theme_content` both say to "pair with update_theme_content to
33539
+ // apply changes". That sourcing matters here — a name the server does not
33540
+ // advertise is logged and SKIPPED by the proxy, so a wrong guess would
33541
+ // look applied and change nothing.
33542
+ //
33543
+ // No new catalog scope: these join the existing kajabi:emails and
33544
+ // kajabi:pages scopes, so already-connected sites do not need to
33545
+ // re-authorise to pick them up.
33546
+ "add_sequence_email",
33547
+ "update_theme_content"
33527
33548
  ],
33528
33549
  // CS-1446: Kajabi gates several tool groups behind a runtime `enable_toolset`
33529
33550
  // and does not advertise their tools in `tools/list` until the group is
@@ -33616,7 +33616,9 @@ var OAUTH_PROVIDERS = {
33616
33616
  publicClient: true,
33617
33617
  mcpUrl: "https://mcp.kajabi.com/mcp",
33618
33618
  // Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
33619
- // live MCP advertises ~111 tools; the agent only needs these 28.
33619
+ // live MCP advertises ~111 tools; the agent only needs these 34.
33620
+ // (Was written as 28 and left stale when the four pages/themes tools landed
33621
+ // in ENG-7629's follow-up — recounted here rather than left to drift again.)
33620
33622
  // CS-1427: `enable_toolset` is included so an agent can activate its own
33621
33623
  // products/commerce + analytics toolsets on the connection (Kajabi gates those
33622
33624
  // tool groups behind a runtime toolset that returns "not active" until enabled).
@@ -33661,7 +33663,26 @@ var OAUTH_PROVIDERS = {
33661
33663
  "list_landing_pages",
33662
33664
  "get_landing_page",
33663
33665
  "update_landing_page",
33664
- "get_theme_content"
33666
+ "get_theme_content",
33667
+ // CS-1689: the write half of the two groups above. Every Kajabi write we
33668
+ // curate stopped at the email-content boundary — an agent could
33669
+ // create_sequence and get_theme_content but could not add an email to a
33670
+ // sequence or apply a theme edit, so any change to an EXISTING email had
33671
+ // to go back to the customer by hand.
33672
+ //
33673
+ // Both names are Kajabi's own, taken from the descriptions of tools we
33674
+ // already advertise rather than guessed: `create_sequence` says "Add
33675
+ // emails with add_sequence_email", and `create_broadcast` +
33676
+ // `get_theme_content` both say to "pair with update_theme_content to
33677
+ // apply changes". That sourcing matters here — a name the server does not
33678
+ // advertise is logged and SKIPPED by the proxy, so a wrong guess would
33679
+ // look applied and change nothing.
33680
+ //
33681
+ // No new catalog scope: these join the existing kajabi:emails and
33682
+ // kajabi:pages scopes, so already-connected sites do not need to
33683
+ // re-authorise to pick them up.
33684
+ "add_sequence_email",
33685
+ "update_theme_content"
33665
33686
  ],
33666
33687
  // CS-1446: Kajabi gates several tool groups behind a runtime `enable_toolset`
33667
33688
  // and does not advertise their tools in `tools/list` until the group is
@@ -54,8 +54,8 @@ import {
54
54
  writeDirectChatSessionState,
55
55
  writeEgressAllowlist,
56
56
  writePersistentClaudeWrapper
57
- } from "./chunk-PXDYKP5O.js";
58
- import "./chunk-JG3EAFZO.js";
57
+ } from "./chunk-XHVKILCG.js";
58
+ import "./chunk-VCPESUZV.js";
59
59
  import "./chunk-XWVM4KPK.js";
60
60
  export {
61
61
  EGRESS_BASELINE_DOMAINS,
@@ -114,4 +114,4 @@ export {
114
114
  writeEgressAllowlist,
115
115
  writePersistentClaudeWrapper
116
116
  };
117
- //# sourceMappingURL=persistent-session-GSXFKCVO.js.map
117
+ //# sourceMappingURL=persistent-session-J4GCUX72.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-PXDYKP5O.js";
4
- import "./chunk-JG3EAFZO.js";
3
+ } from "./chunk-XHVKILCG.js";
4
+ import "./chunk-VCPESUZV.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -764,4 +764,4 @@ export {
764
764
  readAndResetSlackReplyBindingClassifications,
765
765
  readAndResetSlackReplyTargetClassifications
766
766
  };
767
- //# sourceMappingURL=responsiveness-probe-GOM3ZYW3.js.map
767
+ //# sourceMappingURL=responsiveness-probe-UEB5LRGG.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-JG3EAFZO.js";
3
+ } from "./chunk-VCPESUZV.js";
4
4
 
5
5
  // src/lib/session-auth-dead.ts
6
6
  import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
@@ -203,4 +203,4 @@ export {
203
203
  decideSessionAuthState,
204
204
  probeSessionAuth
205
205
  };
206
- //# sourceMappingURL=session-auth-dead-ID4L35CN.js.map
206
+ //# sourceMappingURL=session-auth-dead-S24CY4WK.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.865",
3
+ "version": "0.28.867",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {
@@ -24,7 +24,7 @@
24
24
  "scripts": {
25
25
  "build": "tsup && npm run build:mcp-assets && npm run build:cli-assets",
26
26
  "build:mcp-assets": "mkdir -p dist/mcp && cp ../../packages/mcp/dist/index.js dist/mcp/index.js && cp ../../packages/mcp/dist/slack-channel.js dist/mcp/slack-channel.js && cp ../../packages/mcp/dist/direct-chat-channel.js dist/mcp/direct-chat-channel.js && cp ../../packages/mcp/dist/telegram-channel.js dist/mcp/telegram-channel.js && cp ../../packages/mcp/dist/teams-channel.js dist/mcp/teams-channel.js && cp ../../packages/mcp/dist/whatsapp-channel.js dist/mcp/whatsapp-channel.js && cp ../../packages/mcp/dist/whatsapp-link.js dist/mcp/whatsapp-link.js && cp ../../packages/mcp/dist/remote-oauth-proxy.js dist/mcp/remote-oauth-proxy.js && cp ../../packages/mcp/dist/computer-use-proxy.js dist/mcp/computer-use-proxy.js && cp ../../packages/augmented-admin-mcp/dist/index.js dist/mcp/augmented-admin.js && cp ../../packages/augmented-support-mcp/dist/index.js dist/mcp/augmented-support.js && cp ../../packages/augmented-help-kb-mcp/dist/index.js dist/mcp/augmented-help-kb.js && cp ../../packages/origami-mcp-server/dist/index.js dist/mcp/origami.js && cp ../../packages/xero-mcp-server/dist/index.js dist/mcp/xero.js",
27
- "build:cli-assets": "mkdir -p dist/assets && cp assets/impersonate-statusline.sh dist/assets/impersonate-statusline.sh && chmod +x dist/assets/impersonate-statusline.sh && mkdir -p dist/assets/review && cp assets/review/post-review-findings.mjs dist/assets/review/post-review-findings.mjs && cp assets/review/obiwan-auth.mjs dist/assets/review/obiwan-auth.mjs && cp assets/review/SKILL.md dist/assets/review/SKILL.md && chmod +x dist/assets/review/post-review-findings.mjs",
27
+ "build:cli-assets": "mkdir -p dist/assets && cp assets/impersonate-statusline.sh dist/assets/impersonate-statusline.sh && chmod +x dist/assets/impersonate-statusline.sh && mkdir -p dist/assets/review && cp assets/review/post-review-findings.mjs dist/assets/review/post-review-findings.mjs && cp assets/review/obiwan-auth.mjs dist/assets/review/obiwan-auth.mjs && cp assets/review/SKILL.md dist/assets/review/SKILL.md && cp assets/review/SWEEP.md dist/assets/review/SWEEP.md && chmod +x dist/assets/review/post-review-findings.mjs",
28
28
  "dev": "tsx watch src/bin/agt.ts",
29
29
  "test": "vitest run",
30
30
  "typecheck": "bash ../../scripts/typecheck-guard.sh tsc --noEmit",