@integrity-labs/agt-cli 0.28.180 → 0.28.181

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 CHANGED
@@ -37,7 +37,7 @@ import {
37
37
  success,
38
38
  table,
39
39
  warn
40
- } from "../chunk-CA2WJ2CM.js";
40
+ } from "../chunk-4PUAP6TD.js";
41
41
  import {
42
42
  CHANNEL_REGISTRY,
43
43
  DEFAULT_FRAMEWORK,
@@ -65,7 +65,7 @@ import {
65
65
  renderTemplate,
66
66
  resolveChannels,
67
67
  serializeManifestForSlackCli
68
- } from "../chunk-ODMNVKDO.js";
68
+ } from "../chunk-J36USBIR.js";
69
69
 
70
70
  // src/bin/agt.ts
71
71
  import { join as join22 } from "path";
@@ -4749,7 +4749,7 @@ import { execFileSync, execSync } from "child_process";
4749
4749
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4750
4750
  import chalk18 from "chalk";
4751
4751
  import ora16 from "ora";
4752
- var cliVersion = true ? "0.28.180" : "dev";
4752
+ var cliVersion = true ? "0.28.181" : "dev";
4753
4753
  async function fetchLatestVersion() {
4754
4754
  const host2 = getHost();
4755
4755
  if (!host2) return null;
@@ -5763,7 +5763,7 @@ function handleError(err) {
5763
5763
  }
5764
5764
 
5765
5765
  // src/bin/agt.ts
5766
- var cliVersion2 = true ? "0.28.180" : "dev";
5766
+ var cliVersion2 = true ? "0.28.181" : "dev";
5767
5767
  var program = new Command();
5768
5768
  program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
5769
5769
  program.hook("preAction", async (thisCommand, actionCommand) => {
@@ -16,7 +16,7 @@ import {
16
16
  resolveConnectivityProbe,
17
17
  worseConnectivityOutcome,
18
18
  wrapScheduledTaskPrompt
19
- } from "./chunk-ODMNVKDO.js";
19
+ } from "./chunk-J36USBIR.js";
20
20
 
21
21
  // ../../packages/core/dist/provisioning/mcp-config-guards.js
22
22
  import { chmodSync, existsSync, readFileSync, renameSync, writeFileSync, unlinkSync } from "fs";
@@ -1783,10 +1783,15 @@ var INTEGRATION_REGISTRY = [
1783
1783
  // ENG-7048: text-to-speech voiceover for Augmented Live. Surfaced as the
1784
1784
  // agt_live.generate_voiceover tool (not a standalone scribe_* tool); shares
1785
1785
  // this one platform account key + the same per-org budget.
1786
- { id: "elevenlabs:tts", name: "Generate Voiceover", description: "Synthesize a spoken-voice MP3 voiceover from text for an Augmented Live page via ElevenLabs text-to-speech (agt_live.generate_voiceover)", access: "write" }
1786
+ { id: "elevenlabs:tts", name: "Generate Voiceover", description: "Synthesize a spoken-voice MP3 voiceover from text for an Augmented Live page via ElevenLabs text-to-speech (agt_live.generate_voiceover)", access: "write" },
1787
+ // ENG-7089: instrumental music generation for Augmented Live. Surfaced as the
1788
+ // agt_live.generate_music tool; shares this one platform account key + the
1789
+ // same per-org budget.
1790
+ { id: "elevenlabs:music", name: "Generate Music", description: "Compose an instrumental MP3 music track from a text prompt for an Augmented Live page via ElevenLabs Music (agt_live.generate_music)", access: "write" }
1787
1791
  ],
1788
- // Capabilities index — covers both speech-to-text and text-to-speech, since
1789
- // the integration now advertises elevenlabs:transcribe AND elevenlabs:tts.
1792
+ // Capabilities index — covers speech-to-text, text-to-speech, and music, since
1793
+ // the integration now advertises elevenlabs:transcribe, elevenlabs:tts, and
1794
+ // elevenlabs:music.
1790
1795
  docs_url: "https://elevenlabs.io/docs/capabilities",
1791
1796
  beta: true,
1792
1797
  // ENG-7005 / ENG-7048: premium (billable). Both surfaces bill back to
@@ -1796,13 +1801,14 @@ var INTEGRATION_REGISTRY = [
1796
1801
  // amounts live in integration_rate_cards; this only declares the model.
1797
1802
  premium: {
1798
1803
  pricing: "usage",
1799
- note: "Billed on audio transcribed (per second) and voiceover synthesized (per character).",
1804
+ note: "Billed on audio transcribed (per second), voiceover synthesized (per character), and music generated (per second).",
1800
1805
  // ENG-7032: each surface meters its own event in its own physical unit; the
1801
1806
  // matching integration_rate_cards rows price them. Until a rate is seeded,
1802
1807
  // that event prices at 0.
1803
1808
  meters: [
1804
1809
  { event_type: "transcribe", unit: "audio_second" },
1805
- { event_type: "tts", unit: "character" }
1810
+ { event_type: "tts", unit: "character" },
1811
+ { event_type: "music", unit: "second" }
1806
1812
  ]
1807
1813
  }
1808
1814
  },
@@ -6114,7 +6120,7 @@ function requireHost() {
6114
6120
  }
6115
6121
 
6116
6122
  // src/lib/api-client.ts
6117
- var agtCliVersion = true ? "0.28.180" : "dev";
6123
+ var agtCliVersion = true ? "0.28.181" : "dev";
6118
6124
  var lastConfigHash = null;
6119
6125
  function setConfigHash(hash) {
6120
6126
  lastConfigHash = hash && hash.length > 0 ? hash : null;
@@ -7419,4 +7425,4 @@ export {
7419
7425
  managerInstallSystemUnitCommand,
7420
7426
  managerUninstallSystemUnitCommand
7421
7427
  };
7422
- //# sourceMappingURL=chunk-CA2WJ2CM.js.map
7428
+ //# sourceMappingURL=chunk-4PUAP6TD.js.map