@integrity-labs/agt-cli 0.28.677 → 0.28.678

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 (25) hide show
  1. package/dist/bin/agt.js +5 -5
  2. package/dist/{chunk-HTLUHAKN.js → chunk-3PCP5NT2.js} +551 -397
  3. package/dist/chunk-3PCP5NT2.js.map +1 -0
  4. package/dist/{chunk-GYYEUNTD.js → chunk-5DHJE2G7.js} +24 -1
  5. package/dist/chunk-5DHJE2G7.js.map +1 -0
  6. package/dist/{chunk-F6CUSDJ6.js → chunk-LTOGVWUR.js} +2 -2
  7. package/dist/{claude-pair-runtime-MY5LMJVT.js → claude-pair-runtime-X6CWJNW2.js} +2 -2
  8. package/dist/lib/manager-worker.js +15 -13
  9. package/dist/lib/manager-worker.js.map +1 -1
  10. package/dist/mcp/direct-chat-channel.js +23 -0
  11. package/dist/mcp/index.js +23 -0
  12. package/dist/mcp/origami.js +23 -0
  13. package/dist/mcp/slack-channel.js +23 -0
  14. package/dist/mcp/telegram-channel.js +23 -0
  15. package/dist/{persistent-session-TMOTEVV6.js → persistent-session-EZEYH3PM.js} +3 -3
  16. package/dist/{responsiveness-probe-ZHE7S6G4.js → responsiveness-probe-VS6GODYP.js} +3 -3
  17. package/dist/{session-auth-dead-JCKENEY5.js → session-auth-dead-7U24PZZS.js} +2 -2
  18. package/package.json +1 -1
  19. package/dist/chunk-GYYEUNTD.js.map +0 -1
  20. package/dist/chunk-HTLUHAKN.js.map +0 -1
  21. /package/dist/{chunk-F6CUSDJ6.js.map → chunk-LTOGVWUR.js.map} +0 -0
  22. /package/dist/{claude-pair-runtime-MY5LMJVT.js.map → claude-pair-runtime-X6CWJNW2.js.map} +0 -0
  23. /package/dist/{persistent-session-TMOTEVV6.js.map → persistent-session-EZEYH3PM.js.map} +0 -0
  24. /package/dist/{responsiveness-probe-ZHE7S6G4.js.map → responsiveness-probe-VS6GODYP.js.map} +0 -0
  25. /package/dist/{session-auth-dead-JCKENEY5.js.map → session-auth-dead-7U24PZZS.js.map} +0 -0
@@ -35895,6 +35895,29 @@ var FLAG_REGISTRY = [
35895
35895
  // first the real cut is higher than this and the pin under-reports.
35896
35896
  since: "0.28.570"
35897
35897
  },
35898
+ {
35899
+ key: "secret-files-tmpfs",
35900
+ description: "Host-side RAM-backing of the per-agent .env.integrations secret files (ENG-9348, epic ENG-9347). When on, the manager turns both copies (the agent-dir file and the project/ mirror) into symlinks pointing at a 0700 per-agent directory under tmpfs (/dev/shm, else /run), so plaintext channel/integration tokens live only in RAM: the persistent EBS volume holds a symlink (no token bytes), an EBS snapshot captures nothing, and a host shutdown is a genuine wipe. Every consumer path is unchanged (same file paths). Boolean gate; ships dark. Fail-safe in every direction \u2014 off is byte-for-byte today; a host with no genuine tmpfs root (e.g. macOS dev) silently keeps the persistent files; a symlink-setup error logs and falls back to the persistent path. Reboot clears tmpfs, and the manager re-backs on its next refresh (surviving reboot is not required \u2014 secrets are re-fetched on refresh).",
35901
+ flagType: "boolean",
35902
+ // Declared safe value is `false` (persistent files, today's behaviour).
35903
+ // Fail-safe direction: a flag-DB read error must never, on its own, start
35904
+ // relocating where prod secret files physically live. Flip on per-host for a
35905
+ // canary, verify no plaintext lands on the persistent volume, then fleet-wide
35906
+ // from the admin Feature Flags page.
35907
+ defaultValue: false,
35908
+ // ADR-0022 operator override, read by the host flag store's env layer (not a
35909
+ // hand-written process.env gate) — same posture as memory-extraction /
35910
+ // tool-call-audit above. Gives a per-host canary before the DB flag exists.
35911
+ envVar: "AGT_SECRET_FILES_TMPFS_ENABLED",
35912
+ // Deliberately-unreachable placeholder until this ships: no published CLI
35913
+ // carries the manager reader + core writer yet, so reach must report "no
35914
+ // host honors" rather than the `honors`-for-everyone that omitting `since`
35915
+ // produces. MOVE THIS PIN to the actual auto-published agt-cli version at
35916
+ // merge (auto-publish patch-bumps from main; verify against the tarball, the
35917
+ // ENG-8575/ENG-9350 lesson) — the marker is `setSecretFileTmpfsBacking` in
35918
+ // package/dist/lib/manager-worker.js.
35919
+ since: "99.0.0"
35920
+ },
35898
35921
  {
35899
35922
  key: "memory-file-tombstones",
35900
35923
  description: "Host-side removal of RETIRED agent memory files (ENG-9257). The control plane sends an explicit tombstone list on /host/memories and the manager moves the matching .md out of the agent's memory directory \u2014 but only when its write-time manifest says the manager itself wrote that exact file and the sha256 still matches, so an agent-edited or hand-authored file is retained and reported instead. Boolean gate; ships dark. Scope is retirement only, never expiry: /host/memories has always withheld expired rows, so an expiry-driven list would make months of accumulated backlog deletable on the first armed tick. This is the ONLY thing that makes retirement visible to the agent, which reads its memory directory straight off disk \u2014 every server-side reader already excludes retired rows, so with this off a retired memory is gone everywhere except the one surface that changes the agent's behaviour.",
package/dist/mcp/index.js CHANGED
@@ -42822,6 +42822,29 @@ var FLAG_REGISTRY = [
42822
42822
  // first the real cut is higher than this and the pin under-reports.
42823
42823
  since: "0.28.570"
42824
42824
  },
42825
+ {
42826
+ key: "secret-files-tmpfs",
42827
+ description: "Host-side RAM-backing of the per-agent .env.integrations secret files (ENG-9348, epic ENG-9347). When on, the manager turns both copies (the agent-dir file and the project/ mirror) into symlinks pointing at a 0700 per-agent directory under tmpfs (/dev/shm, else /run), so plaintext channel/integration tokens live only in RAM: the persistent EBS volume holds a symlink (no token bytes), an EBS snapshot captures nothing, and a host shutdown is a genuine wipe. Every consumer path is unchanged (same file paths). Boolean gate; ships dark. Fail-safe in every direction \u2014 off is byte-for-byte today; a host with no genuine tmpfs root (e.g. macOS dev) silently keeps the persistent files; a symlink-setup error logs and falls back to the persistent path. Reboot clears tmpfs, and the manager re-backs on its next refresh (surviving reboot is not required \u2014 secrets are re-fetched on refresh).",
42828
+ flagType: "boolean",
42829
+ // Declared safe value is `false` (persistent files, today's behaviour).
42830
+ // Fail-safe direction: a flag-DB read error must never, on its own, start
42831
+ // relocating where prod secret files physically live. Flip on per-host for a
42832
+ // canary, verify no plaintext lands on the persistent volume, then fleet-wide
42833
+ // from the admin Feature Flags page.
42834
+ defaultValue: false,
42835
+ // ADR-0022 operator override, read by the host flag store's env layer (not a
42836
+ // hand-written process.env gate) — same posture as memory-extraction /
42837
+ // tool-call-audit above. Gives a per-host canary before the DB flag exists.
42838
+ envVar: "AGT_SECRET_FILES_TMPFS_ENABLED",
42839
+ // Deliberately-unreachable placeholder until this ships: no published CLI
42840
+ // carries the manager reader + core writer yet, so reach must report "no
42841
+ // host honors" rather than the `honors`-for-everyone that omitting `since`
42842
+ // produces. MOVE THIS PIN to the actual auto-published agt-cli version at
42843
+ // merge (auto-publish patch-bumps from main; verify against the tarball, the
42844
+ // ENG-8575/ENG-9350 lesson) — the marker is `setSecretFileTmpfsBacking` in
42845
+ // package/dist/lib/manager-worker.js.
42846
+ since: "99.0.0"
42847
+ },
42825
42848
  {
42826
42849
  key: "memory-file-tombstones",
42827
42850
  description: "Host-side removal of RETIRED agent memory files (ENG-9257). The control plane sends an explicit tombstone list on /host/memories and the manager moves the matching .md out of the agent's memory directory \u2014 but only when its write-time manifest says the manager itself wrote that exact file and the sha256 still matches, so an agent-edited or hand-authored file is retained and reported instead. Boolean gate; ships dark. Scope is retirement only, never expiry: /host/memories has always withheld expired rows, so an expiry-driven list would make months of accumulated backlog deletable on the first armed tick. This is the ONLY thing that makes retirement visible to the agent, which reads its memory directory straight off disk \u2014 every server-side reader already excludes retired rows, so with this off a retired memory is gone everywhere except the one surface that changes the agent's behaviour.",
@@ -41633,6 +41633,29 @@ var FLAG_REGISTRY = [
41633
41633
  // first the real cut is higher than this and the pin under-reports.
41634
41634
  since: "0.28.570"
41635
41635
  },
41636
+ {
41637
+ key: "secret-files-tmpfs",
41638
+ description: "Host-side RAM-backing of the per-agent .env.integrations secret files (ENG-9348, epic ENG-9347). When on, the manager turns both copies (the agent-dir file and the project/ mirror) into symlinks pointing at a 0700 per-agent directory under tmpfs (/dev/shm, else /run), so plaintext channel/integration tokens live only in RAM: the persistent EBS volume holds a symlink (no token bytes), an EBS snapshot captures nothing, and a host shutdown is a genuine wipe. Every consumer path is unchanged (same file paths). Boolean gate; ships dark. Fail-safe in every direction \u2014 off is byte-for-byte today; a host with no genuine tmpfs root (e.g. macOS dev) silently keeps the persistent files; a symlink-setup error logs and falls back to the persistent path. Reboot clears tmpfs, and the manager re-backs on its next refresh (surviving reboot is not required \u2014 secrets are re-fetched on refresh).",
41639
+ flagType: "boolean",
41640
+ // Declared safe value is `false` (persistent files, today's behaviour).
41641
+ // Fail-safe direction: a flag-DB read error must never, on its own, start
41642
+ // relocating where prod secret files physically live. Flip on per-host for a
41643
+ // canary, verify no plaintext lands on the persistent volume, then fleet-wide
41644
+ // from the admin Feature Flags page.
41645
+ defaultValue: false,
41646
+ // ADR-0022 operator override, read by the host flag store's env layer (not a
41647
+ // hand-written process.env gate) — same posture as memory-extraction /
41648
+ // tool-call-audit above. Gives a per-host canary before the DB flag exists.
41649
+ envVar: "AGT_SECRET_FILES_TMPFS_ENABLED",
41650
+ // Deliberately-unreachable placeholder until this ships: no published CLI
41651
+ // carries the manager reader + core writer yet, so reach must report "no
41652
+ // host honors" rather than the `honors`-for-everyone that omitting `since`
41653
+ // produces. MOVE THIS PIN to the actual auto-published agt-cli version at
41654
+ // merge (auto-publish patch-bumps from main; verify against the tarball, the
41655
+ // ENG-8575/ENG-9350 lesson) — the marker is `setSecretFileTmpfsBacking` in
41656
+ // package/dist/lib/manager-worker.js.
41657
+ since: "99.0.0"
41658
+ },
41636
41659
  {
41637
41660
  key: "memory-file-tombstones",
41638
41661
  description: "Host-side removal of RETIRED agent memory files (ENG-9257). The control plane sends an explicit tombstone list on /host/memories and the manager moves the matching .md out of the agent's memory directory \u2014 but only when its write-time manifest says the manager itself wrote that exact file and the sha256 still matches, so an agent-edited or hand-authored file is retained and reported instead. Boolean gate; ships dark. Scope is retirement only, never expiry: /host/memories has always withheld expired rows, so an expiry-driven list would make months of accumulated backlog deletable on the first armed tick. This is the ONLY thing that makes retirement visible to the agent, which reads its memory directory straight off disk \u2014 every server-side reader already excludes retired rows, so with this off a retired memory is gone everywhere except the one surface that changes the agent's behaviour.",
@@ -36116,6 +36116,29 @@ var FLAG_REGISTRY = [
36116
36116
  // first the real cut is higher than this and the pin under-reports.
36117
36117
  since: "0.28.570"
36118
36118
  },
36119
+ {
36120
+ key: "secret-files-tmpfs",
36121
+ description: "Host-side RAM-backing of the per-agent .env.integrations secret files (ENG-9348, epic ENG-9347). When on, the manager turns both copies (the agent-dir file and the project/ mirror) into symlinks pointing at a 0700 per-agent directory under tmpfs (/dev/shm, else /run), so plaintext channel/integration tokens live only in RAM: the persistent EBS volume holds a symlink (no token bytes), an EBS snapshot captures nothing, and a host shutdown is a genuine wipe. Every consumer path is unchanged (same file paths). Boolean gate; ships dark. Fail-safe in every direction \u2014 off is byte-for-byte today; a host with no genuine tmpfs root (e.g. macOS dev) silently keeps the persistent files; a symlink-setup error logs and falls back to the persistent path. Reboot clears tmpfs, and the manager re-backs on its next refresh (surviving reboot is not required \u2014 secrets are re-fetched on refresh).",
36122
+ flagType: "boolean",
36123
+ // Declared safe value is `false` (persistent files, today's behaviour).
36124
+ // Fail-safe direction: a flag-DB read error must never, on its own, start
36125
+ // relocating where prod secret files physically live. Flip on per-host for a
36126
+ // canary, verify no plaintext lands on the persistent volume, then fleet-wide
36127
+ // from the admin Feature Flags page.
36128
+ defaultValue: false,
36129
+ // ADR-0022 operator override, read by the host flag store's env layer (not a
36130
+ // hand-written process.env gate) — same posture as memory-extraction /
36131
+ // tool-call-audit above. Gives a per-host canary before the DB flag exists.
36132
+ envVar: "AGT_SECRET_FILES_TMPFS_ENABLED",
36133
+ // Deliberately-unreachable placeholder until this ships: no published CLI
36134
+ // carries the manager reader + core writer yet, so reach must report "no
36135
+ // host honors" rather than the `honors`-for-everyone that omitting `since`
36136
+ // produces. MOVE THIS PIN to the actual auto-published agt-cli version at
36137
+ // merge (auto-publish patch-bumps from main; verify against the tarball, the
36138
+ // ENG-8575/ENG-9350 lesson) — the marker is `setSecretFileTmpfsBacking` in
36139
+ // package/dist/lib/manager-worker.js.
36140
+ since: "99.0.0"
36141
+ },
36119
36142
  {
36120
36143
  key: "memory-file-tombstones",
36121
36144
  description: "Host-side removal of RETIRED agent memory files (ENG-9257). The control plane sends an explicit tombstone list on /host/memories and the manager moves the matching .md out of the agent's memory directory \u2014 but only when its write-time manifest says the manager itself wrote that exact file and the sha256 still matches, so an agent-edited or hand-authored file is retained and reported instead. Boolean gate; ships dark. Scope is retirement only, never expiry: /host/memories has always withheld expired rows, so an expiry-driven list would make months of accumulated backlog deletable on the first armed tick. This is the ONLY thing that makes retirement visible to the agent, which reads its memory directory straight off disk \u2014 every server-side reader already excludes retired rows, so with this off a retired memory is gone everywhere except the one surface that changes the agent's behaviour.",
@@ -36260,6 +36260,29 @@ var FLAG_REGISTRY = [
36260
36260
  // first the real cut is higher than this and the pin under-reports.
36261
36261
  since: "0.28.570"
36262
36262
  },
36263
+ {
36264
+ key: "secret-files-tmpfs",
36265
+ description: "Host-side RAM-backing of the per-agent .env.integrations secret files (ENG-9348, epic ENG-9347). When on, the manager turns both copies (the agent-dir file and the project/ mirror) into symlinks pointing at a 0700 per-agent directory under tmpfs (/dev/shm, else /run), so plaintext channel/integration tokens live only in RAM: the persistent EBS volume holds a symlink (no token bytes), an EBS snapshot captures nothing, and a host shutdown is a genuine wipe. Every consumer path is unchanged (same file paths). Boolean gate; ships dark. Fail-safe in every direction \u2014 off is byte-for-byte today; a host with no genuine tmpfs root (e.g. macOS dev) silently keeps the persistent files; a symlink-setup error logs and falls back to the persistent path. Reboot clears tmpfs, and the manager re-backs on its next refresh (surviving reboot is not required \u2014 secrets are re-fetched on refresh).",
36266
+ flagType: "boolean",
36267
+ // Declared safe value is `false` (persistent files, today's behaviour).
36268
+ // Fail-safe direction: a flag-DB read error must never, on its own, start
36269
+ // relocating where prod secret files physically live. Flip on per-host for a
36270
+ // canary, verify no plaintext lands on the persistent volume, then fleet-wide
36271
+ // from the admin Feature Flags page.
36272
+ defaultValue: false,
36273
+ // ADR-0022 operator override, read by the host flag store's env layer (not a
36274
+ // hand-written process.env gate) — same posture as memory-extraction /
36275
+ // tool-call-audit above. Gives a per-host canary before the DB flag exists.
36276
+ envVar: "AGT_SECRET_FILES_TMPFS_ENABLED",
36277
+ // Deliberately-unreachable placeholder until this ships: no published CLI
36278
+ // carries the manager reader + core writer yet, so reach must report "no
36279
+ // host honors" rather than the `honors`-for-everyone that omitting `since`
36280
+ // produces. MOVE THIS PIN to the actual auto-published agt-cli version at
36281
+ // merge (auto-publish patch-bumps from main; verify against the tarball, the
36282
+ // ENG-8575/ENG-9350 lesson) — the marker is `setSecretFileTmpfsBacking` in
36283
+ // package/dist/lib/manager-worker.js.
36284
+ since: "99.0.0"
36285
+ },
36263
36286
  {
36264
36287
  key: "memory-file-tombstones",
36265
36288
  description: "Host-side removal of RETIRED agent memory files (ENG-9257). The control plane sends an explicit tombstone list on /host/memories and the manager moves the matching .md out of the agent's memory directory \u2014 but only when its write-time manifest says the manager itself wrote that exact file and the sha256 still matches, so an agent-edited or hand-authored file is retained and reported instead. Boolean gate; ships dark. Scope is retirement only, never expiry: /host/memories has always withheld expired rows, so an expiry-driven list would make months of accumulated backlog deletable on the first armed tick. This is the ONLY thing that makes retirement visible to the agent, which reads its memory directory straight off disk \u2014 every server-side reader already excludes retired rows, so with this off a retired memory is gone everywhere except the one surface that changes the agent's behaviour.",
@@ -43,8 +43,8 @@ import {
43
43
  writeDirectChatSessionState,
44
44
  writeEgressAllowlist,
45
45
  writePersistentClaudeWrapper
46
- } from "./chunk-F6CUSDJ6.js";
47
- import "./chunk-GYYEUNTD.js";
46
+ } from "./chunk-LTOGVWUR.js";
47
+ import "./chunk-5DHJE2G7.js";
48
48
  import "./chunk-XWVM4KPK.js";
49
49
  export {
50
50
  EGRESS_BASELINE_DOMAINS,
@@ -92,4 +92,4 @@ export {
92
92
  writeEgressAllowlist,
93
93
  writePersistentClaudeWrapper
94
94
  };
95
- //# sourceMappingURL=persistent-session-TMOTEVV6.js.map
95
+ //# sourceMappingURL=persistent-session-EZEYH3PM.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-F6CUSDJ6.js";
4
- import "./chunk-GYYEUNTD.js";
3
+ } from "./chunk-LTOGVWUR.js";
4
+ import "./chunk-5DHJE2G7.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -727,4 +727,4 @@ export {
727
727
  readAndResetSlackReplyBindingClassifications,
728
728
  readAndResetSlackReplyTargetClassifications
729
729
  };
730
- //# sourceMappingURL=responsiveness-probe-ZHE7S6G4.js.map
730
+ //# sourceMappingURL=responsiveness-probe-VS6GODYP.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-GYYEUNTD.js";
3
+ } from "./chunk-5DHJE2G7.js";
4
4
 
5
5
  // src/lib/session-auth-dead.ts
6
6
  import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
@@ -203,4 +203,4 @@ export {
203
203
  decideSessionAuthState,
204
204
  probeSessionAuth
205
205
  };
206
- //# sourceMappingURL=session-auth-dead-JCKENEY5.js.map
206
+ //# sourceMappingURL=session-auth-dead-7U24PZZS.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.677",
3
+ "version": "0.28.678",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {