@integrity-labs/agt-cli 0.28.295 → 0.28.296
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-VT2HBF2H.js → chunk-DZLBOAQ2.js} +3 -3
- package/dist/{chunk-IGADZDYT.js → chunk-QXU5FMXN.js} +43 -1
- package/dist/chunk-QXU5FMXN.js.map +1 -0
- package/dist/{claude-pair-runtime-EWJQ5QXS.js → claude-pair-runtime-BIBIVB7I.js} +2 -2
- package/dist/lib/manager-worker.js +15 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/origami.js +42 -0
- package/dist/{persistent-session-7Z33SV2X.js → persistent-session-A5N7BYS3.js} +2 -2
- package/dist/{responsiveness-probe-RPX63Y5S.js → responsiveness-probe-OZP2HO2F.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-IGADZDYT.js.map +0 -1
- /package/dist/{chunk-VT2HBF2H.js.map → chunk-DZLBOAQ2.js.map} +0 -0
- /package/dist/{claude-pair-runtime-EWJQ5QXS.js.map → claude-pair-runtime-BIBIVB7I.js.map} +0 -0
- /package/dist/{persistent-session-7Z33SV2X.js.map → persistent-session-A5N7BYS3.js.map} +0 -0
- /package/dist/{responsiveness-probe-RPX63Y5S.js.map → responsiveness-probe-OZP2HO2F.js.map} +0 -0
package/dist/mcp/origami.js
CHANGED
|
@@ -38810,6 +38810,42 @@ var INTEGRATION_REGISTRY = [
|
|
|
38810
38810
|
meters: [{ event_type: "gpt_image_2", unit: "image" }]
|
|
38811
38811
|
}
|
|
38812
38812
|
},
|
|
38813
|
+
{
|
|
38814
|
+
id: "video-gen",
|
|
38815
|
+
name: "Video Generation",
|
|
38816
|
+
category: "media",
|
|
38817
|
+
description: "AI video generation from a text prompt. An agent passes a prompt to generate_video and gets back a short generated video with audio, which it can deliver to a chat channel. Augmented Team manages the model access for you - there is no key to enter. Generation runs direct against xAI (Grok Imagine Video 1.5 today). It is a PREMIUM, usage-billed capability: gated on a per-org opt-in and a monthly USD budget, and metered per second of generated video.",
|
|
38818
|
+
// Platform-key model (mirrors Grok Voice / ADR-0031): Augmented holds one xAI
|
|
38819
|
+
// account key (XAI_API_KEY) and every customer render bills back to it, so
|
|
38820
|
+
// auth is `none` - customers never enter a key.
|
|
38821
|
+
supported_auth_types: ["none"],
|
|
38822
|
+
capabilities: [
|
|
38823
|
+
{ id: "video-gen:generate", name: "Generate Video", description: "Generate a short video (up to 15s, with audio) from a text prompt (generate_video), deliverable to a chat channel", access: "write" }
|
|
38824
|
+
],
|
|
38825
|
+
docs_url: "https://docs.x.ai/developers/model-capabilities/video/generation",
|
|
38826
|
+
beta: true,
|
|
38827
|
+
// Premium (billable): renders bill back to Augmented's xAI account key,
|
|
38828
|
+
// usage-priced per second of output video, so it is gated on a per-org opt-in
|
|
38829
|
+
// (isOrgEntitledToPremium) + a per-org monthly USD budget, and metered on
|
|
38830
|
+
// integration_usage_events. Pricing lives in integration_rate_cards; this only
|
|
38831
|
+
// declares the priced meters.
|
|
38832
|
+
//
|
|
38833
|
+
// event_type is per MODEL VERSION x RESOLUTION because xAI prices per output
|
|
38834
|
+
// second by resolution (480p vs 720p rates differ). Only a (model, resolution)
|
|
38835
|
+
// we actually run AND have seeded a rate card for is declared here; the handler
|
|
38836
|
+
// fails CLOSED when the deployed model/resolution maps to an undeclared meter,
|
|
38837
|
+
// so a version bump without a rate card refuses rather than silently disabling
|
|
38838
|
+
// the budget. Adding a model/resolution = declare its meter here + seed its
|
|
38839
|
+
// rate card + add a normalizer entry in video-generation.ts.
|
|
38840
|
+
premium: {
|
|
38841
|
+
pricing: "usage",
|
|
38842
|
+
note: "Billed per second of generated video; the rate depends on the resolution.",
|
|
38843
|
+
meters: [
|
|
38844
|
+
{ event_type: "grok_imagine_video_1_5_480p", unit: "second" },
|
|
38845
|
+
{ event_type: "grok_imagine_video_1_5_720p", unit: "second" }
|
|
38846
|
+
]
|
|
38847
|
+
}
|
|
38848
|
+
},
|
|
38813
38849
|
{
|
|
38814
38850
|
id: "postiz",
|
|
38815
38851
|
name: "Postiz",
|
|
@@ -39601,6 +39637,12 @@ registerTriggerSource(gdriveCommentsTriggerAdapter);
|
|
|
39601
39637
|
|
|
39602
39638
|
// ../core/dist/feature-flags/registry.js
|
|
39603
39639
|
var FLAG_REGISTRY = [
|
|
39640
|
+
{
|
|
39641
|
+
key: "github-backup",
|
|
39642
|
+
description: "Org-level GitHub daily auto-backup (ENG-7646, ENG-7582 Part 2). Rollout kill-switch; ships dark. The enterprise ENTITLEMENT is enforced separately via plans.github_backup (getPlanForOrg); this flag only stages rollout on top of that entitlement.",
|
|
39643
|
+
flagType: "boolean",
|
|
39644
|
+
defaultValue: false
|
|
39645
|
+
},
|
|
39604
39646
|
{
|
|
39605
39647
|
key: "auto-pause",
|
|
39606
39648
|
description: "Auto-pause agents on sustained hourly-cost breach (ENG-5561). Boolean gate; ships dark.",
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-QXU5FMXN.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-A5N7BYS3.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-QXU5FMXN.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-OZP2HO2F.js.map
|