@integrity-labs/agt-cli 0.28.568 → 0.28.570

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
@@ -40,7 +40,7 @@ import {
40
40
  success,
41
41
  table,
42
42
  warn
43
- } from "../chunk-VGMO43EI.js";
43
+ } from "../chunk-LNLLMDJJ.js";
44
44
  import {
45
45
  AnchorSessionClient,
46
46
  CHANNEL_REGISTRY,
@@ -71,7 +71,7 @@ import {
71
71
  requiredMcpWildcard,
72
72
  resolveChannels,
73
73
  serializeManifestForSlackCli
74
- } from "../chunk-FSWAPB5J.js";
74
+ } from "../chunk-6XCGZUSS.js";
75
75
  import "../chunk-XWVM4KPK.js";
76
76
 
77
77
  // src/bin/agt.ts
@@ -542,9 +542,28 @@ async function initCommand(opts) {
542
542
  loggingMode = await select({
543
543
  message: "Logging mode:",
544
544
  choices: [
545
- { value: "redacted", name: "Redacted \u2014 PII stripped" },
546
- { value: "hash-only", name: "Hash-only \u2014 content is hashed" },
547
- { value: "full-local", name: "Full local \u2014 plain text (dev only)" }
545
+ // ENG-8726: all three labels used to promise more than the runtime
546
+ // delivers, and the operator picks a governance mode from this list.
547
+ // `hash-only` read "content is hashed" in the tool-call audit log such
548
+ // an agent discloses NO target at all, not a hashed one. `redacted` read
549
+ // "PII stripped", which nothing enforces: normal audit redaction still
550
+ // emits the program name, the URL host and the MCP tool segment, and a
551
+ // private host can name a customer. `full-local` read "plain text",
552
+ // which invites the reading that it unlocks plaintext paths in the
553
+ // control plane — no mode does; file paths are keyed-hashed for all
554
+ // three. (CodeRabbit.)
555
+ {
556
+ value: "redacted",
557
+ name: "Redacted \u2014 file paths keyed-hashed; tool, program and URL host still recorded"
558
+ },
559
+ {
560
+ value: "hash-only",
561
+ name: "Hash-only \u2014 strictest: the audit log records which tool ran, never what it touched"
562
+ },
563
+ {
564
+ value: "full-local",
565
+ name: "Full local \u2014 same audit redaction as Redacted; plaintext stays host-side (dev only)"
566
+ }
548
567
  ]
549
568
  });
550
569
  }
@@ -4834,7 +4853,7 @@ import { execFileSync, execSync } from "child_process";
4834
4853
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4835
4854
  import chalk18 from "chalk";
4836
4855
  import ora16 from "ora";
4837
- var cliVersion = true ? "0.28.568" : "dev";
4856
+ var cliVersion = true ? "0.28.570" : "dev";
4838
4857
  async function fetchLatestVersion() {
4839
4858
  const host2 = getHost();
4840
4859
  if (!host2) return null;
@@ -6009,7 +6028,7 @@ function handleError(err) {
6009
6028
  }
6010
6029
 
6011
6030
  // src/bin/agt.ts
6012
- var cliVersion2 = true ? "0.28.568" : "dev";
6031
+ var cliVersion2 = true ? "0.28.570" : "dev";
6013
6032
  var program = new Command();
6014
6033
  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");
6015
6034
  program.hook("preAction", async (thisCommand, actionCommand) => {