@integrity-labs/agt-cli 0.28.848 → 0.28.850
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 +5 -5
- package/dist/{chunk-N4TMATK2.js → chunk-OQSPURDB.js} +4 -4
- package/dist/{chunk-MFU2FD4N.js → chunk-WUXQVP7A.js} +17 -5
- package/dist/{chunk-MFU2FD4N.js.map → chunk-WUXQVP7A.js.map} +1 -1
- package/dist/{chunk-PMQNTU7W.js → chunk-XCAI3GSF.js} +2 -2
- package/dist/{claude-pair-runtime-BQ5JUW5F.js → claude-pair-runtime-CJXQTVSC.js} +2 -2
- package/dist/lib/manager-worker.js +13 -13
- package/dist/mcp/computer-use-proxy.js +317 -4
- package/dist/mcp/direct-chat-channel.js +16 -4
- package/dist/mcp/index.js +58 -8
- package/dist/mcp/origami.js +16 -4
- package/dist/mcp/slack-channel.js +16 -4
- package/dist/mcp/telegram-channel.js +16 -4
- package/dist/{persistent-session-JKES3FMW.js → persistent-session-YGK7YHPR.js} +3 -3
- package/dist/{responsiveness-probe-P7EAWN6J.js → responsiveness-probe-NGWO3JK3.js} +3 -3
- package/dist/{session-auth-dead-IFU2XLHO.js → session-auth-dead-4UZR5655.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-N4TMATK2.js.map → chunk-OQSPURDB.js.map} +0 -0
- /package/dist/{chunk-PMQNTU7W.js.map → chunk-XCAI3GSF.js.map} +0 -0
- /package/dist/{claude-pair-runtime-BQ5JUW5F.js.map → claude-pair-runtime-CJXQTVSC.js.map} +0 -0
- /package/dist/{persistent-session-JKES3FMW.js.map → persistent-session-YGK7YHPR.js.map} +0 -0
- /package/dist/{responsiveness-probe-P7EAWN6J.js.map → responsiveness-probe-NGWO3JK3.js.map} +0 -0
- /package/dist/{session-auth-dead-IFU2XLHO.js.map → session-auth-dead-4UZR5655.js.map} +0 -0
|
@@ -38088,10 +38088,22 @@ var FLAG_REGISTRY = [
|
|
|
38088
38088
|
// See the description: `shadow` is what prod compiles today, so it is the
|
|
38089
38089
|
// only default that ships this flag as a no-op.
|
|
38090
38090
|
defaultValue: "shadow",
|
|
38091
|
-
// enforce changes the admission rule on the platform's front door
|
|
38092
|
-
//
|
|
38093
|
-
//
|
|
38094
|
-
//
|
|
38091
|
+
// enforce changes the admission rule on the platform's front door. This is
|
|
38092
|
+
// precisely the deliberate, audited flip ADR-0022 §4 reserves confirmation
|
|
38093
|
+
// for, and it stays `sensitive` — but NOT for the reason first written here.
|
|
38094
|
+
// That read "the families it starts refusing include mcp-proxy, one of the
|
|
38095
|
+
// fleet's dominant callers", and ENG-9895 measured otherwise: mcp-proxy
|
|
38096
|
+
// verifies its own token on a route carrying no `authMiddleware`, so it is a
|
|
38097
|
+
// dominant caller of a different door and cannot be in the refused set. The
|
|
38098
|
+
// measured population at that door is ZERO over 298,839,353 prod log records
|
|
38099
|
+
// / 14 days, and the impersonation families are absent too — one
|
|
38100
|
+
// structurally (`X-Agent-Impersonation` header, own verifier), one by
|
|
38101
|
+
// measurement (307 requests through that door, zero lines). What keeps this
|
|
38102
|
+
// `sensitive` is therefore NOT an unresolved residue: it is that `enforce`
|
|
38103
|
+
// changes an admission rule on the front door, and that the predicate is
|
|
38104
|
+
// structural, so a FUTURE family 13 is born refusable without an edit here.
|
|
38105
|
+
// That is exactly the deliberate, audited flip ADR-0022 §4 reserves
|
|
38106
|
+
// confirmation for. docs/research/eng-9895-prod-shadow-measurement.md
|
|
38095
38107
|
sensitive: true
|
|
38096
38108
|
},
|
|
38097
38109
|
{
|
|
@@ -38220,10 +38220,22 @@ var FLAG_REGISTRY = [
|
|
|
38220
38220
|
// See the description: `shadow` is what prod compiles today, so it is the
|
|
38221
38221
|
// only default that ships this flag as a no-op.
|
|
38222
38222
|
defaultValue: "shadow",
|
|
38223
|
-
// enforce changes the admission rule on the platform's front door
|
|
38224
|
-
//
|
|
38225
|
-
//
|
|
38226
|
-
//
|
|
38223
|
+
// enforce changes the admission rule on the platform's front door. This is
|
|
38224
|
+
// precisely the deliberate, audited flip ADR-0022 §4 reserves confirmation
|
|
38225
|
+
// for, and it stays `sensitive` — but NOT for the reason first written here.
|
|
38226
|
+
// That read "the families it starts refusing include mcp-proxy, one of the
|
|
38227
|
+
// fleet's dominant callers", and ENG-9895 measured otherwise: mcp-proxy
|
|
38228
|
+
// verifies its own token on a route carrying no `authMiddleware`, so it is a
|
|
38229
|
+
// dominant caller of a different door and cannot be in the refused set. The
|
|
38230
|
+
// measured population at that door is ZERO over 298,839,353 prod log records
|
|
38231
|
+
// / 14 days, and the impersonation families are absent too — one
|
|
38232
|
+
// structurally (`X-Agent-Impersonation` header, own verifier), one by
|
|
38233
|
+
// measurement (307 requests through that door, zero lines). What keeps this
|
|
38234
|
+
// `sensitive` is therefore NOT an unresolved residue: it is that `enforce`
|
|
38235
|
+
// changes an admission rule on the front door, and that the predicate is
|
|
38236
|
+
// structural, so a FUTURE family 13 is born refusable without an edit here.
|
|
38237
|
+
// That is exactly the deliberate, audited flip ADR-0022 §4 reserves
|
|
38238
|
+
// confirmation for. docs/research/eng-9895-prod-shadow-measurement.md
|
|
38227
38239
|
sensitive: true
|
|
38228
38240
|
},
|
|
38229
38241
|
{
|
|
@@ -54,8 +54,8 @@ import {
|
|
|
54
54
|
writeDirectChatSessionState,
|
|
55
55
|
writeEgressAllowlist,
|
|
56
56
|
writePersistentClaudeWrapper
|
|
57
|
-
} from "./chunk-
|
|
58
|
-
import "./chunk-
|
|
57
|
+
} from "./chunk-XCAI3GSF.js";
|
|
58
|
+
import "./chunk-WUXQVP7A.js";
|
|
59
59
|
import "./chunk-XWVM4KPK.js";
|
|
60
60
|
export {
|
|
61
61
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -114,4 +114,4 @@ export {
|
|
|
114
114
|
writeEgressAllowlist,
|
|
115
115
|
writePersistentClaudeWrapper
|
|
116
116
|
};
|
|
117
|
-
//# sourceMappingURL=persistent-session-
|
|
117
|
+
//# sourceMappingURL=persistent-session-YGK7YHPR.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-XCAI3GSF.js";
|
|
4
|
+
import "./chunk-WUXQVP7A.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -764,4 +764,4 @@ export {
|
|
|
764
764
|
readAndResetSlackReplyBindingClassifications,
|
|
765
765
|
readAndResetSlackReplyTargetClassifications
|
|
766
766
|
};
|
|
767
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
767
|
+
//# sourceMappingURL=responsiveness-probe-NGWO3JK3.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WUXQVP7A.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-
|
|
206
|
+
//# sourceMappingURL=session-auth-dead-4UZR5655.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|