@integrity-labs/agt-cli 0.28.670 → 0.28.672

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.
Files changed (27) hide show
  1. package/dist/bin/agt.js +6 -6
  2. package/dist/bin/agt.js.map +1 -1
  3. package/dist/{chunk-Z4O42VGJ.js → chunk-EX6INJDG.js} +20 -76
  4. package/dist/chunk-EX6INJDG.js.map +1 -0
  5. package/dist/{chunk-5GDKWIB3.js → chunk-YAVWYI5S.js} +126 -15
  6. package/dist/chunk-YAVWYI5S.js.map +1 -0
  7. package/dist/{chunk-HGVJVYKW.js → chunk-YOID6KOQ.js} +43 -1
  8. package/dist/chunk-YOID6KOQ.js.map +1 -0
  9. package/dist/{claude-pair-runtime-W6KBVHK4.js → claude-pair-runtime-UZ2JB2KY.js} +2 -2
  10. package/dist/lib/manager-worker.js +52 -20
  11. package/dist/lib/manager-worker.js.map +1 -1
  12. package/dist/mcp/direct-chat-channel.js +42 -0
  13. package/dist/mcp/index.js +42 -0
  14. package/dist/mcp/origami.js +42 -0
  15. package/dist/mcp/slack-channel.js +42 -0
  16. package/dist/mcp/telegram-channel.js +42 -0
  17. package/dist/{persistent-session-RZH67PNC.js → persistent-session-PYAJ4VJW.js} +3 -3
  18. package/dist/{responsiveness-probe-NPNMNOFF.js → responsiveness-probe-5I2LIVCA.js} +3 -3
  19. package/dist/{session-auth-dead-CFAYSZ43.js → session-auth-dead-NUX643UJ.js} +2 -2
  20. package/package.json +1 -1
  21. package/dist/chunk-5GDKWIB3.js.map +0 -1
  22. package/dist/chunk-HGVJVYKW.js.map +0 -1
  23. package/dist/chunk-Z4O42VGJ.js.map +0 -1
  24. /package/dist/{claude-pair-runtime-W6KBVHK4.js.map → claude-pair-runtime-UZ2JB2KY.js.map} +0 -0
  25. /package/dist/{persistent-session-RZH67PNC.js.map → persistent-session-PYAJ4VJW.js.map} +0 -0
  26. /package/dist/{responsiveness-probe-NPNMNOFF.js.map → responsiveness-probe-5I2LIVCA.js.map} +0 -0
  27. /package/dist/{session-auth-dead-CFAYSZ43.js.map → session-auth-dead-NUX643UJ.js.map} +0 -0
package/dist/bin/agt.js CHANGED
@@ -40,10 +40,10 @@ import {
40
40
  success,
41
41
  table,
42
42
  warn
43
- } from "../chunk-Z4O42VGJ.js";
43
+ } from "../chunk-EX6INJDG.js";
44
44
  import {
45
45
  readDirectChatSessionState
46
- } from "../chunk-5GDKWIB3.js";
46
+ } from "../chunk-YAVWYI5S.js";
47
47
  import {
48
48
  AnchorSessionClient,
49
49
  CHANNEL_REGISTRY,
@@ -73,7 +73,7 @@ import {
73
73
  requiredMcpWildcard,
74
74
  resolveChannels,
75
75
  serializeManifestForSlackCli
76
- } from "../chunk-HGVJVYKW.js";
76
+ } from "../chunk-YOID6KOQ.js";
77
77
  import "../chunk-XWVM4KPK.js";
78
78
 
79
79
  // src/bin/agt.ts
@@ -4909,7 +4909,7 @@ import { execFileSync, execSync } from "child_process";
4909
4909
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4910
4910
  import chalk18 from "chalk";
4911
4911
  import ora16 from "ora";
4912
- var cliVersion = true ? "0.28.670" : "dev";
4912
+ var cliVersion = true ? "0.28.672" : "dev";
4913
4913
  async function fetchLatestVersion() {
4914
4914
  const host2 = getHost();
4915
4915
  if (!host2) return null;
@@ -5587,7 +5587,7 @@ async function auditSecretsCommand(options = {}) {
5587
5587
  `);
5588
5588
  }
5589
5589
  process.stdout.write(
5590
- "\nLiteral secrets in .mcp.json should be `${VAR}` placeholders with the raw value in .env.integrations (mode 0600). See docs/operator/credential-migration-eng5898.md.\n"
5590
+ "\nLiteral secrets in .mcp.json should be `${VAR}` placeholders resolved from the spawn env \u2014 the raw value in .env.integrations (mode 0600), or, for channel bot tokens under ENG-9350, injected directly via `tmux -e` and never on disk. See docs/operator/credential-migration-eng5898.md.\n"
5591
5591
  );
5592
5592
  for (const f of findings) {
5593
5593
  process.stderr.write(`${formatSecretFinding(f)}
@@ -6089,7 +6089,7 @@ function handleError(err) {
6089
6089
  }
6090
6090
 
6091
6091
  // src/bin/agt.ts
6092
- var cliVersion2 = true ? "0.28.670" : "dev";
6092
+ var cliVersion2 = true ? "0.28.672" : "dev";
6093
6093
  var program = new Command();
6094
6094
  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");
6095
6095
  program.hook("preAction", async (thisCommand, actionCommand) => {