@integrity-labs/agt-cli 0.28.175 → 0.28.177

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.
@@ -1816,6 +1816,18 @@ var FLAG_REGISTRY = [
1816
1816
  // Customer-infrastructure write capability; flipping it on is worth an explicit
1817
1817
  // confirm (ADR-0022 §4), same posture as admin-send-keys.
1818
1818
  sensitive: true
1819
+ },
1820
+ {
1821
+ key: "augmented-support-auto-provision",
1822
+ description: 'Org-create auto-provision of the per-org system_support concierge agent ("Augmented Support") (ENG-7026, ADR-0032 \xA77). This is the FINAL rollout stage: when on, every newly created organization gets a support agent provisioned (in draft - arming still needs first-run consent) by a best-effort hook in the org-create handler. The earlier rollout stages (dogfood Integrity Labs, then design partners) are driven by the explicit admin command (provision-support --org <slug>), NOT this flag. Ships dark: default OFF means the hook is inert, so there is no fleet-wide first deploy - existing orgs are never touched and new orgs get nothing until this is flipped on. The DB stage value is the control (no env override).',
1823
+ flagType: "boolean",
1824
+ // Declared safe value is `false`: the fail-safe / absent-flag direction is
1825
+ // "no org auto-provisions a support agent", so a misread can never silently
1826
+ // create agents across the fleet.
1827
+ defaultValue: false,
1828
+ // Auto-creates an org-admin-equivalent agent in every new org; flipping it on
1829
+ // is fleet-shaping and worth an explicit confirm (ADR-0022 §4).
1830
+ sensitive: true
1819
1831
  }
1820
1832
  ];
1821
1833
  var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
@@ -2853,6 +2865,9 @@ Store repositories under \`~/code/\` and create worktrees alongside them for par
2853
2865
  `;
2854
2866
  }
2855
2867
 
2868
+ // ../../packages/core/dist/generation/support-agent.js
2869
+ import { stringify as stringifyYaml3 } from "yaml";
2870
+
2856
2871
  // ../../packages/core/dist/lint/rules/schema.js
2857
2872
  function runSchemaRules(file, result) {
2858
2873
  if (result.valid)
@@ -4127,7 +4142,11 @@ var ASSET_TYPES = {
4127
4142
  "image/gif": { ext: "gif", maxBytes: 10 * MB, enabled: true },
4128
4143
  // Forward path — enable in a later phase alongside multipart + range serving:
4129
4144
  "video/mp4": { ext: "mp4", maxBytes: 50 * MB, enabled: false },
4130
- "audio/mpeg": { ext: "mp3", maxBytes: 20 * MB, enabled: false }
4145
+ // ENG-7048: enabled for server-generated ElevenLabs voiceover (text-to-speech).
4146
+ // MP3 is an inert binary container (like the rasters above), so serving it as a
4147
+ // top-level same-origin asset URL is safe — the SVG/HTML-polyglot risk in the
4148
+ // module header does not apply. Embedded as <audio src=...> in the page HTML.
4149
+ "audio/mpeg": { ext: "mp3", maxBytes: 20 * MB, enabled: true }
4131
4150
  };
4132
4151
 
4133
4152
  // ../../packages/core/dist/integrations/augmented-live/codec.js
@@ -6555,4 +6574,4 @@ export {
6555
6574
  parseEnvIntegrations,
6556
6575
  probeMcpEnvSubstitution
6557
6576
  };
6558
- //# sourceMappingURL=chunk-ULPUDU4J.js.map
6577
+ //# sourceMappingURL=chunk-ODMNVKDO.js.map