@integrity-labs/agt-cli 0.28.139 → 0.28.141

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-CVGZ2BZB.js";
40
+ } from "../chunk-T436PVUP.js";
41
41
  import {
42
42
  CHANNEL_REGISTRY,
43
43
  DEPLOYMENT_TEMPLATES,
@@ -64,7 +64,7 @@ import {
64
64
  renderTemplate,
65
65
  resolveChannels,
66
66
  serializeManifestForSlackCli
67
- } from "../chunk-ROOFBKRE.js";
67
+ } from "../chunk-HKKV7NJD.js";
68
68
 
69
69
  // src/bin/agt.ts
70
70
  import { join as join22 } from "path";
@@ -4777,7 +4777,7 @@ import { execFileSync, execSync } from "child_process";
4777
4777
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4778
4778
  import chalk18 from "chalk";
4779
4779
  import ora16 from "ora";
4780
- var cliVersion = true ? "0.28.139" : "dev";
4780
+ var cliVersion = true ? "0.28.141" : "dev";
4781
4781
  async function fetchLatestVersion() {
4782
4782
  const host2 = getHost();
4783
4783
  if (!host2) return null;
@@ -5791,7 +5791,7 @@ function handleError(err) {
5791
5791
  }
5792
5792
 
5793
5793
  // src/bin/agt.ts
5794
- var cliVersion2 = true ? "0.28.139" : "dev";
5794
+ var cliVersion2 = true ? "0.28.141" : "dev";
5795
5795
  var program = new Command();
5796
5796
  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");
5797
5797
  program.hook("preAction", async (thisCommand, actionCommand) => {
@@ -1342,6 +1342,17 @@ var FLAG_REGISTRY = [
1342
1342
  defaultValue: false,
1343
1343
  envVar: "AGT_DIRECT_CHAT_DOORBELL_ENABLED"
1344
1344
  },
1345
+ {
1346
+ key: "kanban-doorbell",
1347
+ description: 'Durable kanban-check delivery (ENG-6785, ADR-0020 T1): the manager enqueues the kanban "check your board" nudge as a direct_chat_messages notice (ENG-6381 kind) and rings the direct-chat doorbell, instead of firing it over unverified tmux send-keys (which always returned delivered=false post-ENG-6345, so every kanban inject logged "failed" and the board never progressed). Boolean gate; ships dark.',
1348
+ flagType: "boolean",
1349
+ // Declared safe value is `false` — keeps today's send-keys kanban inject. The
1350
+ // durable rail reuses the direct-chat notice queue (the board state is already
1351
+ // durable, so this only needs reliable WAKE delivery); flip on per-host to
1352
+ // canary before fleet rollout.
1353
+ defaultValue: false,
1354
+ envVar: "AGT_KANBAN_DOORBELL_ENABLED"
1355
+ },
1345
1356
  {
1346
1357
  key: "direct-chat-stream-reply",
1347
1358
  description: "Server-side type-out for direct-chat replies (direct-chat UI redesign Phase 2, docs/design/direct-chat-ui-chat-sdk.md): the channel MCP posts a small anchor via /host/direct-chat/reply, then reveals the rest of the (already-complete) reply progressively through /host/direct-chat/update so the webapp bubble grows instead of appearing as a wall of text. Purely cosmetic (the persisted reply is identical either way). Boolean gate; ships dark.",
@@ -3569,6 +3580,18 @@ var ajv2 = new Ajv20202({ allErrors: true, strict: false });
3569
3580
  addFormats2(ajv2);
3570
3581
  var compiledMetaSchema = ajv2.compile(context_meta_schema_default);
3571
3582
 
3583
+ // ../../packages/core/dist/integrations/augmented-live/asset.js
3584
+ var MB = 1024 * 1024;
3585
+ var ASSET_TYPES = {
3586
+ "image/png": { ext: "png", maxBytes: 5 * MB, enabled: true },
3587
+ "image/jpeg": { ext: "jpg", maxBytes: 5 * MB, enabled: true },
3588
+ "image/webp": { ext: "webp", maxBytes: 5 * MB, enabled: true },
3589
+ "image/gif": { ext: "gif", maxBytes: 10 * MB, enabled: true },
3590
+ // Forward path — enable in a later phase alongside multipart + range serving:
3591
+ "video/mp4": { ext: "mp4", maxBytes: 50 * MB, enabled: false },
3592
+ "audio/mpeg": { ext: "mp3", maxBytes: 20 * MB, enabled: false }
3593
+ };
3594
+
3572
3595
  // ../../packages/core/dist/integrations/augmented-live/codec.js
3573
3596
  var CODEC_VERSION = 1;
3574
3597
  var DEFAULT_KEYFRAME_INTERVAL = 10;
@@ -5810,4 +5833,4 @@ export {
5810
5833
  parseEnvIntegrations,
5811
5834
  probeMcpEnvSubstitution
5812
5835
  };
5813
- //# sourceMappingURL=chunk-ROOFBKRE.js.map
5836
+ //# sourceMappingURL=chunk-HKKV7NJD.js.map