@integrity-labs/agt-cli 0.28.272 → 0.28.273
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-5HCINBKO.js → chunk-NKNOIJMC.js} +3 -3
- package/dist/{chunk-5TL5THQE.js → chunk-PNETKYLF.js} +32 -1
- package/dist/chunk-PNETKYLF.js.map +1 -0
- package/dist/{claude-pair-runtime-KOEEK5LD.js → claude-pair-runtime-WVZRDAFK.js} +2 -2
- package/dist/lib/manager-worker.js +60 -15
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/origami.js +29 -0
- package/dist/{persistent-session-HOILVE3Q.js → persistent-session-UQNLB3UF.js} +2 -2
- package/dist/{responsiveness-probe-3OIDWR3T.js → responsiveness-probe-GVLCH2IM.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-5TL5THQE.js.map +0 -1
- /package/dist/{chunk-5HCINBKO.js.map → chunk-NKNOIJMC.js.map} +0 -0
- /package/dist/{claude-pair-runtime-KOEEK5LD.js.map → claude-pair-runtime-WVZRDAFK.js.map} +0 -0
- /package/dist/{persistent-session-HOILVE3Q.js.map → persistent-session-UQNLB3UF.js.map} +0 -0
- /package/dist/{responsiveness-probe-3OIDWR3T.js.map → responsiveness-probe-GVLCH2IM.js.map} +0 -0
package/dist/mcp/origami.js
CHANGED
|
@@ -38735,6 +38735,35 @@ var INTEGRATION_REGISTRY = [
|
|
|
38735
38735
|
]
|
|
38736
38736
|
}
|
|
38737
38737
|
},
|
|
38738
|
+
{
|
|
38739
|
+
id: "grok-voice",
|
|
38740
|
+
name: "Grok Voice",
|
|
38741
|
+
category: "media",
|
|
38742
|
+
description: "Real-time two-way voice for your agent, powered by xAI Grok. Speak to the agent and hear it reply. Augmented Team manages Grok Voice access for you - there is no key to enter.",
|
|
38743
|
+
// Grok Voice is a PREMIUM integration on the platform-key model (mirrors
|
|
38744
|
+
// ElevenLabs / ADR-0031): Augmented holds one xAI account key and every
|
|
38745
|
+
// customer agent's voice minutes bill back to it, so auth_type is `none` -
|
|
38746
|
+
// customers never enter a key. Enabling this integration (resolved via the
|
|
38747
|
+
// agent/team/org scope chain) is what unlocks voice in Direct Chat; it
|
|
38748
|
+
// supersedes the legacy `grok-voice` channel (ENG-7523 spike). The realtime
|
|
38749
|
+
// client (webapp Voice Chat tab) and the ephemeral-token mint already exist;
|
|
38750
|
+
// this definition adds the premium opt-in + metering gate. Usage meters per
|
|
38751
|
+
// voice-minute at the session chokepoint (the mint wiring is a follow-up).
|
|
38752
|
+
supported_auth_types: ["none"],
|
|
38753
|
+
capabilities: [
|
|
38754
|
+
{ id: "grok-voice:converse", name: "Voice Conversation", description: "Hold a real-time two-way spoken conversation with the agent (xAI Grok realtime voice)", access: "write" }
|
|
38755
|
+
],
|
|
38756
|
+
docs_url: "https://docs.x.ai/developers/model-capabilities/audio/voice-agent",
|
|
38757
|
+
beta: true,
|
|
38758
|
+
// Premium (billable): voice minutes bill back to Augmented's xAI account key,
|
|
38759
|
+
// usage-priced and gated on a per-org opt-in. Pricing amounts live in
|
|
38760
|
+
// integration_rate_cards; this only declares the model + meter.
|
|
38761
|
+
premium: {
|
|
38762
|
+
pricing: "usage",
|
|
38763
|
+
note: "Billed per minute of real-time voice conversation.",
|
|
38764
|
+
meters: [{ event_type: "voice_session", unit: "minute" }]
|
|
38765
|
+
}
|
|
38766
|
+
},
|
|
38738
38767
|
{
|
|
38739
38768
|
id: "image-gen",
|
|
38740
38769
|
name: "Image Generation",
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-PNETKYLF.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-UQNLB3UF.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PNETKYLF.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-GVLCH2IM.js.map
|