@integrity-labs/agt-cli 0.28.569 → 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-7O2TXBWR.js → chunk-6XCGZUSS.js} +25 -8
- package/dist/{chunk-7O2TXBWR.js.map → chunk-6XCGZUSS.js.map} +1 -1
- package/dist/{chunk-JBOJC6PG.js → chunk-LNLLMDJJ.js} +3 -3
- package/dist/{claude-pair-runtime-XVEJ7XLB.js → claude-pair-runtime-NSIF6AYH.js} +2 -2
- package/dist/lib/manager-worker.js +245 -203
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +24 -7
- package/dist/mcp/origami.js +24 -7
- package/dist/mcp/slack-channel.js +24 -7
- package/dist/mcp/telegram-channel.js +24 -7
- package/dist/{persistent-session-WUNZJXCI.js → persistent-session-HY6GUPBQ.js} +2 -2
- package/dist/{responsiveness-probe-V3P5TGBH.js → responsiveness-probe-6EEZKJVV.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-JBOJC6PG.js.map → chunk-LNLLMDJJ.js.map} +0 -0
- /package/dist/{claude-pair-runtime-XVEJ7XLB.js.map → claude-pair-runtime-NSIF6AYH.js.map} +0 -0
- /package/dist/{persistent-session-WUNZJXCI.js.map → persistent-session-HY6GUPBQ.js.map} +0 -0
- /package/dist/{responsiveness-probe-V3P5TGBH.js.map → responsiveness-probe-6EEZKJVV.js.map} +0 -0
|
@@ -35393,13 +35393,30 @@ var FLAG_REGISTRY = [
|
|
|
35393
35393
|
// safe default — it resolves to `honors`, reporting every host as honouring
|
|
35394
35394
|
// the flip, including hosts whose agt-cli has no reader at all.
|
|
35395
35395
|
//
|
|
35396
|
-
//
|
|
35397
|
-
//
|
|
35398
|
-
//
|
|
35399
|
-
//
|
|
35400
|
-
//
|
|
35401
|
-
//
|
|
35402
|
-
|
|
35396
|
+
// WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
|
|
35397
|
+
// first build where flipping the flag does what the flag is documented to
|
|
35398
|
+
// do. Those diverged twice already, in the same direction:
|
|
35399
|
+
//
|
|
35400
|
+
// 0.28.566 (ENG-8575) — the first build with a reader. Pinned here and
|
|
35401
|
+
// correct on the day. It has the unbounded scan window and the coverage
|
|
35402
|
+
// rows that overstate (both ENG-8740), and no `logging_mode` enforcement
|
|
35403
|
+
// at all (ENG-8726) — so a hash-only agent on it emits plaintext
|
|
35404
|
+
// `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
|
|
35405
|
+
// breach this epic exists to prevent.
|
|
35406
|
+
// 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
|
|
35407
|
+
// no hash-only enforcement. The pin was NOT moved at that merge and went
|
|
35408
|
+
// stale for a day; reach reported those hosts `honors`.
|
|
35409
|
+
// 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
|
|
35410
|
+
//
|
|
35411
|
+
// MOVE THIS PIN whenever a change alters what arming the flag DOES on a
|
|
35412
|
+
// host, and verify it against the published tarball rather than inferring it
|
|
35413
|
+
// from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
|
|
35414
|
+
// package/dist/lib/manager-worker.js (the manager is the actual reader; the
|
|
35415
|
+
// dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
|
|
35416
|
+
// are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
|
|
35417
|
+
// patch-bumps from whatever is on main, so if another CLI-touching PR lands
|
|
35418
|
+
// first the real cut is higher than this and the pin under-reports.
|
|
35419
|
+
since: "0.28.570"
|
|
35403
35420
|
},
|
|
35404
35421
|
{
|
|
35405
35422
|
key: "conversation-eval-backend",
|
package/dist/mcp/origami.js
CHANGED
|
@@ -41284,13 +41284,30 @@ var FLAG_REGISTRY = [
|
|
|
41284
41284
|
// safe default — it resolves to `honors`, reporting every host as honouring
|
|
41285
41285
|
// the flip, including hosts whose agt-cli has no reader at all.
|
|
41286
41286
|
//
|
|
41287
|
-
//
|
|
41288
|
-
//
|
|
41289
|
-
//
|
|
41290
|
-
//
|
|
41291
|
-
//
|
|
41292
|
-
//
|
|
41293
|
-
|
|
41287
|
+
// WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
|
|
41288
|
+
// first build where flipping the flag does what the flag is documented to
|
|
41289
|
+
// do. Those diverged twice already, in the same direction:
|
|
41290
|
+
//
|
|
41291
|
+
// 0.28.566 (ENG-8575) — the first build with a reader. Pinned here and
|
|
41292
|
+
// correct on the day. It has the unbounded scan window and the coverage
|
|
41293
|
+
// rows that overstate (both ENG-8740), and no `logging_mode` enforcement
|
|
41294
|
+
// at all (ENG-8726) — so a hash-only agent on it emits plaintext
|
|
41295
|
+
// `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
|
|
41296
|
+
// breach this epic exists to prevent.
|
|
41297
|
+
// 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
|
|
41298
|
+
// no hash-only enforcement. The pin was NOT moved at that merge and went
|
|
41299
|
+
// stale for a day; reach reported those hosts `honors`.
|
|
41300
|
+
// 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
|
|
41301
|
+
//
|
|
41302
|
+
// MOVE THIS PIN whenever a change alters what arming the flag DOES on a
|
|
41303
|
+
// host, and verify it against the published tarball rather than inferring it
|
|
41304
|
+
// from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
|
|
41305
|
+
// package/dist/lib/manager-worker.js (the manager is the actual reader; the
|
|
41306
|
+
// dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
|
|
41307
|
+
// are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
|
|
41308
|
+
// patch-bumps from whatever is on main, so if another CLI-touching PR lands
|
|
41309
|
+
// first the real cut is higher than this and the pin under-reports.
|
|
41310
|
+
since: "0.28.570"
|
|
41294
41311
|
},
|
|
41295
41312
|
{
|
|
41296
41313
|
key: "conversation-eval-backend",
|
|
@@ -35729,13 +35729,30 @@ var FLAG_REGISTRY = [
|
|
|
35729
35729
|
// safe default — it resolves to `honors`, reporting every host as honouring
|
|
35730
35730
|
// the flip, including hosts whose agt-cli has no reader at all.
|
|
35731
35731
|
//
|
|
35732
|
-
//
|
|
35733
|
-
//
|
|
35734
|
-
//
|
|
35735
|
-
//
|
|
35736
|
-
//
|
|
35737
|
-
//
|
|
35738
|
-
|
|
35732
|
+
// WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
|
|
35733
|
+
// first build where flipping the flag does what the flag is documented to
|
|
35734
|
+
// do. Those diverged twice already, in the same direction:
|
|
35735
|
+
//
|
|
35736
|
+
// 0.28.566 (ENG-8575) — the first build with a reader. Pinned here and
|
|
35737
|
+
// correct on the day. It has the unbounded scan window and the coverage
|
|
35738
|
+
// rows that overstate (both ENG-8740), and no `logging_mode` enforcement
|
|
35739
|
+
// at all (ENG-8726) — so a hash-only agent on it emits plaintext
|
|
35740
|
+
// `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
|
|
35741
|
+
// breach this epic exists to prevent.
|
|
35742
|
+
// 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
|
|
35743
|
+
// no hash-only enforcement. The pin was NOT moved at that merge and went
|
|
35744
|
+
// stale for a day; reach reported those hosts `honors`.
|
|
35745
|
+
// 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
|
|
35746
|
+
//
|
|
35747
|
+
// MOVE THIS PIN whenever a change alters what arming the flag DOES on a
|
|
35748
|
+
// host, and verify it against the published tarball rather than inferring it
|
|
35749
|
+
// from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
|
|
35750
|
+
// package/dist/lib/manager-worker.js (the manager is the actual reader; the
|
|
35751
|
+
// dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
|
|
35752
|
+
// are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
|
|
35753
|
+
// patch-bumps from whatever is on main, so if another CLI-touching PR lands
|
|
35754
|
+
// first the real cut is higher than this and the pin under-reports.
|
|
35755
|
+
since: "0.28.570"
|
|
35739
35756
|
},
|
|
35740
35757
|
{
|
|
35741
35758
|
key: "conversation-eval-backend",
|
|
@@ -35888,13 +35888,30 @@ var FLAG_REGISTRY = [
|
|
|
35888
35888
|
// safe default — it resolves to `honors`, reporting every host as honouring
|
|
35889
35889
|
// the flip, including hosts whose agt-cli has no reader at all.
|
|
35890
35890
|
//
|
|
35891
|
-
//
|
|
35892
|
-
//
|
|
35893
|
-
//
|
|
35894
|
-
//
|
|
35895
|
-
//
|
|
35896
|
-
//
|
|
35897
|
-
|
|
35891
|
+
// WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
|
|
35892
|
+
// first build where flipping the flag does what the flag is documented to
|
|
35893
|
+
// do. Those diverged twice already, in the same direction:
|
|
35894
|
+
//
|
|
35895
|
+
// 0.28.566 (ENG-8575) — the first build with a reader. Pinned here and
|
|
35896
|
+
// correct on the day. It has the unbounded scan window and the coverage
|
|
35897
|
+
// rows that overstate (both ENG-8740), and no `logging_mode` enforcement
|
|
35898
|
+
// at all (ENG-8726) — so a hash-only agent on it emits plaintext
|
|
35899
|
+
// `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
|
|
35900
|
+
// breach this epic exists to prevent.
|
|
35901
|
+
// 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
|
|
35902
|
+
// no hash-only enforcement. The pin was NOT moved at that merge and went
|
|
35903
|
+
// stale for a day; reach reported those hosts `honors`.
|
|
35904
|
+
// 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
|
|
35905
|
+
//
|
|
35906
|
+
// MOVE THIS PIN whenever a change alters what arming the flag DOES on a
|
|
35907
|
+
// host, and verify it against the published tarball rather than inferring it
|
|
35908
|
+
// from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
|
|
35909
|
+
// package/dist/lib/manager-worker.js (the manager is the actual reader; the
|
|
35910
|
+
// dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
|
|
35911
|
+
// are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
|
|
35912
|
+
// patch-bumps from whatever is on main, so if another CLI-touching PR lands
|
|
35913
|
+
// first the real cut is higher than this and the pin under-reports.
|
|
35914
|
+
since: "0.28.570"
|
|
35898
35915
|
},
|
|
35899
35916
|
{
|
|
35900
35917
|
key: "conversation-eval-backend",
|
|
@@ -41,7 +41,7 @@ import {
|
|
|
41
41
|
writeDirectChatSessionState,
|
|
42
42
|
writeEgressAllowlist,
|
|
43
43
|
writePersistentClaudeWrapper
|
|
44
|
-
} from "./chunk-
|
|
44
|
+
} from "./chunk-6XCGZUSS.js";
|
|
45
45
|
import "./chunk-XWVM4KPK.js";
|
|
46
46
|
export {
|
|
47
47
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -87,4 +87,4 @@ export {
|
|
|
87
87
|
writeEgressAllowlist,
|
|
88
88
|
writePersistentClaudeWrapper
|
|
89
89
|
};
|
|
90
|
-
//# sourceMappingURL=persistent-session-
|
|
90
|
+
//# sourceMappingURL=persistent-session-HY6GUPBQ.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-6XCGZUSS.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -689,4 +689,4 @@ export {
|
|
|
689
689
|
readAndResetSlackReplyBindingClassifications,
|
|
690
690
|
readAndResetSlackReplyTargetClassifications
|
|
691
691
|
};
|
|
692
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
692
|
+
//# sourceMappingURL=responsiveness-probe-6EEZKJVV.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|