@integrity-labs/agt-cli 0.28.268 → 0.28.270
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-PA3PWATY.js → chunk-ND4BBPV5.js} +8 -4
- package/dist/{chunk-PA3PWATY.js.map → chunk-ND4BBPV5.js.map} +1 -1
- package/dist/{chunk-GBVZDTCB.js → chunk-RH4FTCZK.js} +30 -5
- package/dist/chunk-RH4FTCZK.js.map +1 -0
- package/dist/{claude-pair-runtime-CXIVEO6R.js → claude-pair-runtime-WZLKWP74.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/origami.js +16 -3
- package/dist/mcp/remote-oauth-proxy.js +66 -0
- package/dist/mcp/telegram-channel.js +262 -23
- package/dist/{persistent-session-FGGXFAJH.js → persistent-session-FMFTNDJO.js} +2 -2
- package/dist/{responsiveness-probe-2734PYS6.js → responsiveness-probe-FPTBS6RZ.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-GBVZDTCB.js.map +0 -1
- /package/dist/{claude-pair-runtime-CXIVEO6R.js.map → claude-pair-runtime-WZLKWP74.js.map} +0 -0
- /package/dist/{persistent-session-FGGXFAJH.js.map → persistent-session-FMFTNDJO.js.map} +0 -0
- /package/dist/{responsiveness-probe-2734PYS6.js.map → responsiveness-probe-FPTBS6RZ.js.map} +0 -0
|
@@ -3692,7 +3692,19 @@ var OAUTH_PROVIDERS = {
|
|
|
3692
3692
|
"enable_toolset",
|
|
3693
3693
|
"get_course",
|
|
3694
3694
|
"update_course"
|
|
3695
|
-
]
|
|
3695
|
+
],
|
|
3696
|
+
// CS-1446: Kajabi gates several tool groups behind a runtime `enable_toolset`
|
|
3697
|
+
// and does not advertise their tools in `tools/list` until the group is
|
|
3698
|
+
// active. The harness freezes its callable-tool manifest from the
|
|
3699
|
+
// connect-time `tools/list`, so a group the agent activates later never
|
|
3700
|
+
// becomes callable (repro: enable_toolset('courses') → get_course/
|
|
3701
|
+
// update_course still "No such tool available"). Pre-activate the gated
|
|
3702
|
+
// groups whose tools we allowlist so they are advertised in that first
|
|
3703
|
+
// manifest. Names are Kajabi's toolset ids (courses per CS-1446;
|
|
3704
|
+
// products/commerce/analytics per CS-1427). Best-effort + idempotent: an
|
|
3705
|
+
// unknown/unscoped name is logged and skipped by the proxy, and the
|
|
3706
|
+
// toolAllowlist above still caps what is actually callable.
|
|
3707
|
+
preEnableToolsets: ["courses", "products", "commerce", "analytics"]
|
|
3696
3708
|
},
|
|
3697
3709
|
"notion-cli": {
|
|
3698
3710
|
// Notion's public OAuth app. Tokens are workspace-scoped and long-lived —
|
|
@@ -4942,13 +4954,13 @@ var INTEGRATION_REGISTRY = [
|
|
|
4942
4954
|
id: "image-gen",
|
|
4943
4955
|
name: "Image Generation",
|
|
4944
4956
|
category: "media",
|
|
4945
|
-
description: "AI image generation
|
|
4957
|
+
description: "AI image generation from a text prompt. An agent passes a prompt to generate_image and gets back a generated raster image, which it can deliver to a chat channel or embed on an Augmented Live page (ENG-7535). Augmented Team manages the model access for you - there is no key to enter. Generation runs through the Vercel AI Gateway (OpenAI gpt-image-2 today). It is a PREMIUM, usage-billed capability: gated on a per-org opt-in and a monthly USD budget, and metered per generated image.",
|
|
4946
4958
|
// No vendor key to enter: Augmented owns the shared Vercel AI Gateway virtual
|
|
4947
4959
|
// key (AI_GATEWAY_API_KEY) that fronts the image providers, so auth is `none`
|
|
4948
4960
|
// (customers never enter a key), same as ElevenLabs.
|
|
4949
4961
|
supported_auth_types: ["none"],
|
|
4950
4962
|
capabilities: [
|
|
4951
|
-
{ id: "image-gen:generate", name: "Generate Image", description: "Generate a raster image from a text prompt
|
|
4963
|
+
{ id: "image-gen:generate", name: "Generate Image", description: "Generate a raster image from a text prompt (generate_image), deliverable to a chat channel or an Augmented Live page", access: "write" }
|
|
4952
4964
|
],
|
|
4953
4965
|
docs_url: "https://platform.openai.com/docs/guides/images",
|
|
4954
4966
|
beta: true,
|
|
@@ -4965,7 +4977,7 @@ var INTEGRATION_REGISTRY = [
|
|
|
4965
4977
|
// declared here; the handler fails CLOSED when the deployed model maps to an
|
|
4966
4978
|
// undeclared meter, so a version bump without a rate card refuses rather than
|
|
4967
4979
|
// silently disabling the budget. Adding a model = declare its meter here + seed
|
|
4968
|
-
// its rate card + add a normalizer entry in
|
|
4980
|
+
// its rate card + add a normalizer entry in image-generation.ts.
|
|
4969
4981
|
premium: {
|
|
4970
4982
|
pricing: "usage",
|
|
4971
4983
|
note: "Billed per generated image; the rate depends on the model/version used.",
|
|
@@ -7435,6 +7447,19 @@ var FLAG_REGISTRY = [
|
|
|
7435
7447
|
// env var is retired.
|
|
7436
7448
|
envVar: "AUGMENTED_CONNECTIVITY_ESCALATION_ENABLED"
|
|
7437
7449
|
},
|
|
7450
|
+
{
|
|
7451
|
+
key: "managed-health-connectivity-flip",
|
|
7452
|
+
description: "Arm the managed-connection-health status flip on data-plane hard-down (ENG-7539). When on, the managed-connection-health cron flips a managed integration to needs_reauth when the host-side connectivity probe reports a sustained hard-down (consecutive_connectivity_failures at/over the hysteresis threshold with a down observation), even if Composio account-status still reads ACTIVE. When off it keeps the pre-ENG-7539 behaviour: status is driven only by the account-status probe, so a live 401 behind an ACTIVE account never flips status. Boolean gate; ships dark. Sibling of integration-connectivity-escalation: that flag arms the alert; this flag arms the status flip plus the reconnect notification.",
|
|
7453
|
+
flagType: "boolean",
|
|
7454
|
+
// Declared safe value is `false` (no auto status flip). It preserves the
|
|
7455
|
+
// pre-ENG-7539 fleet behaviour where managed status derives solely from the
|
|
7456
|
+
// account-status probe, so merging this dark changes nothing until an
|
|
7457
|
+
// operator arms it per-stage from the admin Feature Flags page. `false` is
|
|
7458
|
+
// also the fail-safe direction: a flag-DB read error must never start
|
|
7459
|
+
// flipping statuses (and firing reconnect notifications) on its own. No env
|
|
7460
|
+
// override - this is a net-new gate, so it is registry-only (ADR-0022).
|
|
7461
|
+
defaultValue: false
|
|
7462
|
+
},
|
|
7438
7463
|
{
|
|
7439
7464
|
key: "projects-menu",
|
|
7440
7465
|
description: "Show the Projects nav item in the webapp (ADR-0017 Projects soft launch, ENG-6342). Replaces the isAdmin/adminOnly gate with a per-org rollout flag.",
|
|
@@ -9270,4 +9295,4 @@ export {
|
|
|
9270
9295
|
stopAllSessionsAndWait,
|
|
9271
9296
|
getProjectDir
|
|
9272
9297
|
};
|
|
9273
|
-
//# sourceMappingURL=chunk-
|
|
9298
|
+
//# sourceMappingURL=chunk-RH4FTCZK.js.map
|