@integrity-labs/agt-cli 0.28.144 → 0.28.146

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-F2UOJCBZ.js";
40
+ } from "../chunk-X3O5A2NQ.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-SBVI6NJW.js";
67
+ } from "../chunk-POW4BZEC.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.144" : "dev";
4780
+ var cliVersion = true ? "0.28.146" : "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.144" : "dev";
5794
+ var cliVersion2 = true ? "0.28.146" : "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) => {
@@ -3,7 +3,7 @@ import {
3
3
  formatMissingVar,
4
4
  isClaudeFastMode,
5
5
  probeMcpEnvSubstitution
6
- } from "./chunk-SBVI6NJW.js";
6
+ } from "./chunk-POW4BZEC.js";
7
7
  import {
8
8
  reapOrphanChannelMcps
9
9
  } from "./chunk-XWVM4KPK.js";
@@ -1589,4 +1589,4 @@ export {
1589
1589
  stopAllSessionsAndWait,
1590
1590
  getProjectDir
1591
1591
  };
1592
- //# sourceMappingURL=chunk-P7HRYVA3.js.map
1592
+ //# sourceMappingURL=chunk-NXPB7XSK.js.map
@@ -109,7 +109,14 @@ var CHANNEL_REGISTRY = [
109
109
  { id: "slack", name: "Slack", securityTier: "standard", e2eEncrypted: false, auditTrail: true, publicExposureRisk: "Low" },
110
110
  { id: "msteams", name: "Microsoft Teams", securityTier: "standard", e2eEncrypted: false, auditTrail: true, publicExposureRisk: "Low" },
111
111
  { id: "telegram", name: "Telegram", securityTier: "standard", e2eEncrypted: "optional", auditTrail: "partial", publicExposureRisk: "Medium" },
112
- { id: "whatsapp", name: "WhatsApp", securityTier: "elevated", e2eEncrypted: true, auditTrail: false, publicExposureRisk: "Medium" },
112
+ // WhatsApp is wired through a Business-Platform provider (Kapso -> Meta Cloud
113
+ // API, ENG-6812), NOT consumer WhatsApp. That path terminates end-to-end
114
+ // encryption at Meta and the message content also transits the provider, so
115
+ // for our purposes it is a standard TLS-transport channel, not an E2E
116
+ // elevated one. Classifying it elevated / e2eEncrypted:true would let the
117
+ // channel-policy lint (PII-on-limited / require-elevated-for-pii) reason on a
118
+ // false premise. See docs/research/eng-6810-kapso-whatsapp-integration.md.
119
+ { id: "whatsapp", name: "WhatsApp", securityTier: "standard", e2eEncrypted: false, auditTrail: false, publicExposureRisk: "Medium" },
113
120
  { id: "signal", name: "Signal", securityTier: "elevated", e2eEncrypted: true, auditTrail: false, publicExposureRisk: "Low" },
114
121
  { id: "discord", name: "Discord", securityTier: "limited", e2eEncrypted: false, auditTrail: false, publicExposureRisk: "High" },
115
122
  { id: "irc", name: "IRC", securityTier: "limited", e2eEncrypted: false, auditTrail: false, publicExposureRisk: "High" },
@@ -1655,6 +1662,16 @@ var FLAG_REGISTRY = [
1655
1662
  // control with no pre-flags env gate to migrate (ADR-0022).
1656
1663
  defaultValue: false
1657
1664
  },
1665
+ {
1666
+ key: "skill-fragments",
1667
+ description: "Agent-contributed additive skill fragments (ENG-6811, epic ENG-6805 P2a): when on, an agent can propose an additive fragment for a shared (team/org) skill via the skill_contribute_fragment MCP tool; accepted fragments compose into the parent skill's delivered body in one delimited region at /host/refresh. This is the per-org activation gate for the whole additive path - it gates BOTH the contribute tool (off = soft-refuse, no fragment is created) AND compose-at-refresh (off = agents receive the core body only), so flipping it off is a clean kill switch that reverts shared skills to operator-owned content. Boolean gate; ships dark.",
1668
+ flagType: "boolean",
1669
+ // Declared safe value is `false` (no contribution, no compose). Fail-safe
1670
+ // direction: a flag-DB read error must never start composing agent-authored
1671
+ // content into a shared skill's delivered body on its own. No envVar - net-new
1672
+ // control with no pre-flags env gate to migrate (ADR-0022).
1673
+ defaultValue: false
1674
+ },
1658
1675
  {
1659
1676
  key: "channel-quarantine-mode",
1660
1677
  description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
@@ -6056,4 +6073,4 @@ export {
6056
6073
  parseEnvIntegrations,
6057
6074
  probeMcpEnvSubstitution
6058
6075
  };
6059
- //# sourceMappingURL=chunk-SBVI6NJW.js.map
6076
+ //# sourceMappingURL=chunk-POW4BZEC.js.map