@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 +26 -7
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-FSWAPB5J.js → chunk-6XCGZUSS.js} +46 -15
- package/dist/{chunk-FSWAPB5J.js.map → chunk-6XCGZUSS.js.map} +1 -1
- package/dist/{chunk-VGMO43EI.js → chunk-LNLLMDJJ.js} +3 -3
- package/dist/{claude-pair-runtime-4C5NQQHR.js → claude-pair-runtime-NSIF6AYH.js} +2 -2
- package/dist/lib/manager-worker.js +355 -218
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +45 -14
- package/dist/mcp/origami.js +45 -14
- package/dist/mcp/slack-channel.js +45 -14
- package/dist/mcp/telegram-channel.js +45 -14
- package/dist/{persistent-session-DVTSZAPE.js → persistent-session-HY6GUPBQ.js} +2 -2
- package/dist/{responsiveness-probe-KEFPJXQ6.js → responsiveness-probe-6EEZKJVV.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-VGMO43EI.js.map → chunk-LNLLMDJJ.js.map} +0 -0
- /package/dist/{claude-pair-runtime-4C5NQQHR.js.map → claude-pair-runtime-NSIF6AYH.js.map} +0 -0
- /package/dist/{persistent-session-DVTSZAPE.js.map → persistent-session-HY6GUPBQ.js.map} +0 -0
- /package/dist/{responsiveness-probe-KEFPJXQ6.js.map → responsiveness-probe-6EEZKJVV.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
success,
|
|
41
41
|
table,
|
|
42
42
|
warn
|
|
43
|
-
} from "../chunk-
|
|
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-
|
|
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
|
-
|
|
546
|
-
|
|
547
|
-
|
|
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.
|
|
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.
|
|
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) => {
|