@integrity-labs/agt-cli 0.28.479 → 0.28.481
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 +4 -4
- package/dist/{chunk-WANZSIX6.js → chunk-4XLEJP7G.js} +31 -14
- package/dist/chunk-4XLEJP7G.js.map +1 -0
- package/dist/{chunk-MLA5NJWV.js → chunk-YYNUZWK7.js} +32 -26
- package/dist/chunk-YYNUZWK7.js.map +1 -0
- package/dist/{claude-pair-runtime-UA3ZZQ2V.js → claude-pair-runtime-7CI63PCV.js} +2 -2
- package/dist/lib/manager-worker.js +11 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +19 -11
- package/dist/mcp/origami.js +19 -11
- package/dist/mcp/slack-channel.js +19 -11
- package/dist/mcp/telegram-channel.js +19 -11
- package/dist/{persistent-session-FQKD2RA6.js → persistent-session-Q4YE53I5.js} +2 -2
- package/dist/{responsiveness-probe-JQUE3XQG.js → responsiveness-probe-MOFFFCOY.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-MLA5NJWV.js.map +0 -1
- package/dist/chunk-WANZSIX6.js.map +0 -1
- /package/dist/{claude-pair-runtime-UA3ZZQ2V.js.map → claude-pair-runtime-7CI63PCV.js.map} +0 -0
- /package/dist/{persistent-session-FQKD2RA6.js.map → persistent-session-Q4YE53I5.js.map} +0 -0
- /package/dist/{responsiveness-probe-JQUE3XQG.js.map → responsiveness-probe-MOFFFCOY.js.map} +0 -0
|
@@ -31900,7 +31900,7 @@ var compiledMetaSchema = ajv2.compile(context_meta_schema_default);
|
|
|
31900
31900
|
var READ_VERBS = "GET|LIST|FIND|FETCH|RETRIEVE|SEARCH|QUERY|DESCRIBE|INSPECT|SCAN|SHOW|VIEW|READ|EXPORT|DOWNLOAD";
|
|
31901
31901
|
var NO_READ_VERB_ACTION = `(?!(?:^|.*[_-])(${READ_VERBS})[_-])`;
|
|
31902
31902
|
var DRAFT_COMPOSE_VERBS = "CREATE|COMPOSE|SAVE|UPDATE|ADD";
|
|
31903
|
-
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|
|
|
31903
|
+
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|DISPATCH|SUBMIT";
|
|
31904
31904
|
var NO_DRAFT_COMPOSE_ACTION = `(?!(?=.*(?:^|[_-])(?:${DRAFT_COMPOSE_VERBS})[_-])(?!.*(?:^|[_-])(?:${DRAFT_DISPATCH_VERBS})[_-]).*_DRAFT(?:_|$))`;
|
|
31905
31905
|
var NO_READ_VERB_INCL_SUFFIX = `(?!(?:^|.*[_-])(${READ_VERBS})(?:[_-]|$))`;
|
|
31906
31906
|
function p(re) {
|
|
@@ -34852,17 +34852,25 @@ var FLAG_REGISTRY = [
|
|
|
34852
34852
|
},
|
|
34853
34853
|
{
|
|
34854
34854
|
key: "synthetic-probe-enabled",
|
|
34855
|
-
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint.
|
|
34855
|
+
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
|
|
34856
34856
|
flagType: "boolean",
|
|
34857
|
-
//
|
|
34858
|
-
//
|
|
34859
|
-
//
|
|
34860
|
-
//
|
|
34861
|
-
//
|
|
34862
|
-
//
|
|
34863
|
-
//
|
|
34864
|
-
//
|
|
34865
|
-
|
|
34857
|
+
// ON by default — this deliberately matches the fleet's live behaviour rather than the
|
|
34858
|
+
// dark default ENG-8074 declared, and the history is worth keeping straight:
|
|
34859
|
+
//
|
|
34860
|
+
// ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
|
|
34861
|
+
// (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
|
|
34862
|
+
// default was never reachable: sst.config.ts pinned the declared envVar to the literal
|
|
34863
|
+
// 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
|
|
34864
|
+
// probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
|
|
34865
|
+
// real authority for the first time — so its value must now be chosen for the fleet it
|
|
34866
|
+
// actually controls, not inherited from an intent that never took effect.
|
|
34867
|
+
//
|
|
34868
|
+
// `true` keeps prod exactly as it has been running. Flipping to `false` here instead
|
|
34869
|
+
// would have silently switched agent liveness probing off at the next deploy — including
|
|
34870
|
+
// the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
|
|
34871
|
+
// alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
|
|
34872
|
+
// if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
|
|
34873
|
+
defaultValue: true,
|
|
34866
34874
|
envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
|
|
34867
34875
|
},
|
|
34868
34876
|
{
|
package/dist/mcp/origami.js
CHANGED
|
@@ -38227,7 +38227,7 @@ var compiledMetaSchema = ajv2.compile(context_meta_schema_default);
|
|
|
38227
38227
|
var READ_VERBS = "GET|LIST|FIND|FETCH|RETRIEVE|SEARCH|QUERY|DESCRIBE|INSPECT|SCAN|SHOW|VIEW|READ|EXPORT|DOWNLOAD";
|
|
38228
38228
|
var NO_READ_VERB_ACTION = `(?!(?:^|.*[_-])(${READ_VERBS})[_-])`;
|
|
38229
38229
|
var DRAFT_COMPOSE_VERBS = "CREATE|COMPOSE|SAVE|UPDATE|ADD";
|
|
38230
|
-
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|
|
|
38230
|
+
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|DISPATCH|SUBMIT";
|
|
38231
38231
|
var NO_DRAFT_COMPOSE_ACTION = `(?!(?=.*(?:^|[_-])(?:${DRAFT_COMPOSE_VERBS})[_-])(?!.*(?:^|[_-])(?:${DRAFT_DISPATCH_VERBS})[_-]).*_DRAFT(?:_|$))`;
|
|
38232
38232
|
var NO_READ_VERB_INCL_SUFFIX = `(?!(?:^|.*[_-])(${READ_VERBS})(?:[_-]|$))`;
|
|
38233
38233
|
function p(re) {
|
|
@@ -40799,17 +40799,25 @@ var FLAG_REGISTRY = [
|
|
|
40799
40799
|
},
|
|
40800
40800
|
{
|
|
40801
40801
|
key: "synthetic-probe-enabled",
|
|
40802
|
-
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint.
|
|
40802
|
+
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
|
|
40803
40803
|
flagType: "boolean",
|
|
40804
|
-
//
|
|
40805
|
-
//
|
|
40806
|
-
//
|
|
40807
|
-
//
|
|
40808
|
-
//
|
|
40809
|
-
//
|
|
40810
|
-
//
|
|
40811
|
-
//
|
|
40812
|
-
|
|
40804
|
+
// ON by default — this deliberately matches the fleet's live behaviour rather than the
|
|
40805
|
+
// dark default ENG-8074 declared, and the history is worth keeping straight:
|
|
40806
|
+
//
|
|
40807
|
+
// ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
|
|
40808
|
+
// (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
|
|
40809
|
+
// default was never reachable: sst.config.ts pinned the declared envVar to the literal
|
|
40810
|
+
// 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
|
|
40811
|
+
// probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
|
|
40812
|
+
// real authority for the first time — so its value must now be chosen for the fleet it
|
|
40813
|
+
// actually controls, not inherited from an intent that never took effect.
|
|
40814
|
+
//
|
|
40815
|
+
// `true` keeps prod exactly as it has been running. Flipping to `false` here instead
|
|
40816
|
+
// would have silently switched agent liveness probing off at the next deploy — including
|
|
40817
|
+
// the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
|
|
40818
|
+
// alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
|
|
40819
|
+
// if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
|
|
40820
|
+
defaultValue: true,
|
|
40813
40821
|
envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
|
|
40814
40822
|
},
|
|
40815
40823
|
{
|
|
@@ -32122,7 +32122,7 @@ var compiledMetaSchema = ajv2.compile(context_meta_schema_default);
|
|
|
32122
32122
|
var READ_VERBS = "GET|LIST|FIND|FETCH|RETRIEVE|SEARCH|QUERY|DESCRIBE|INSPECT|SCAN|SHOW|VIEW|READ|EXPORT|DOWNLOAD";
|
|
32123
32123
|
var NO_READ_VERB_ACTION = `(?!(?:^|.*[_-])(${READ_VERBS})[_-])`;
|
|
32124
32124
|
var DRAFT_COMPOSE_VERBS = "CREATE|COMPOSE|SAVE|UPDATE|ADD";
|
|
32125
|
-
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|
|
|
32125
|
+
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|DISPATCH|SUBMIT";
|
|
32126
32126
|
var NO_DRAFT_COMPOSE_ACTION = `(?!(?=.*(?:^|[_-])(?:${DRAFT_COMPOSE_VERBS})[_-])(?!.*(?:^|[_-])(?:${DRAFT_DISPATCH_VERBS})[_-]).*_DRAFT(?:_|$))`;
|
|
32127
32127
|
var NO_READ_VERB_INCL_SUFFIX = `(?!(?:^|.*[_-])(${READ_VERBS})(?:[_-]|$))`;
|
|
32128
32128
|
function p(re) {
|
|
@@ -35077,17 +35077,25 @@ var FLAG_REGISTRY = [
|
|
|
35077
35077
|
},
|
|
35078
35078
|
{
|
|
35079
35079
|
key: "synthetic-probe-enabled",
|
|
35080
|
-
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint.
|
|
35080
|
+
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
|
|
35081
35081
|
flagType: "boolean",
|
|
35082
|
-
//
|
|
35083
|
-
//
|
|
35084
|
-
//
|
|
35085
|
-
//
|
|
35086
|
-
//
|
|
35087
|
-
//
|
|
35088
|
-
//
|
|
35089
|
-
//
|
|
35090
|
-
|
|
35082
|
+
// ON by default — this deliberately matches the fleet's live behaviour rather than the
|
|
35083
|
+
// dark default ENG-8074 declared, and the history is worth keeping straight:
|
|
35084
|
+
//
|
|
35085
|
+
// ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
|
|
35086
|
+
// (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
|
|
35087
|
+
// default was never reachable: sst.config.ts pinned the declared envVar to the literal
|
|
35088
|
+
// 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
|
|
35089
|
+
// probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
|
|
35090
|
+
// real authority for the first time — so its value must now be chosen for the fleet it
|
|
35091
|
+
// actually controls, not inherited from an intent that never took effect.
|
|
35092
|
+
//
|
|
35093
|
+
// `true` keeps prod exactly as it has been running. Flipping to `false` here instead
|
|
35094
|
+
// would have silently switched agent liveness probing off at the next deploy — including
|
|
35095
|
+
// the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
|
|
35096
|
+
// alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
|
|
35097
|
+
// if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
|
|
35098
|
+
defaultValue: true,
|
|
35091
35099
|
envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
|
|
35092
35100
|
},
|
|
35093
35101
|
{
|
|
@@ -32448,7 +32448,7 @@ var compiledMetaSchema = ajv2.compile(context_meta_schema_default);
|
|
|
32448
32448
|
var READ_VERBS = "GET|LIST|FIND|FETCH|RETRIEVE|SEARCH|QUERY|DESCRIBE|INSPECT|SCAN|SHOW|VIEW|READ|EXPORT|DOWNLOAD";
|
|
32449
32449
|
var NO_READ_VERB_ACTION = `(?!(?:^|.*[_-])(${READ_VERBS})[_-])`;
|
|
32450
32450
|
var DRAFT_COMPOSE_VERBS = "CREATE|COMPOSE|SAVE|UPDATE|ADD";
|
|
32451
|
-
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|
|
|
32451
|
+
var DRAFT_DISPATCH_VERBS = "SEND|POST|PUBLISH|DISPATCH|SUBMIT";
|
|
32452
32452
|
var NO_DRAFT_COMPOSE_ACTION = `(?!(?=.*(?:^|[_-])(?:${DRAFT_COMPOSE_VERBS})[_-])(?!.*(?:^|[_-])(?:${DRAFT_DISPATCH_VERBS})[_-]).*_DRAFT(?:_|$))`;
|
|
32453
32453
|
var NO_READ_VERB_INCL_SUFFIX = `(?!(?:^|.*[_-])(${READ_VERBS})(?:[_-]|$))`;
|
|
32454
32454
|
function p(re) {
|
|
@@ -35403,17 +35403,25 @@ var FLAG_REGISTRY = [
|
|
|
35403
35403
|
},
|
|
35404
35404
|
{
|
|
35405
35405
|
key: "synthetic-probe-enabled",
|
|
35406
|
-
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint.
|
|
35406
|
+
description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
|
|
35407
35407
|
flagType: "boolean",
|
|
35408
|
-
//
|
|
35409
|
-
//
|
|
35410
|
-
//
|
|
35411
|
-
//
|
|
35412
|
-
//
|
|
35413
|
-
//
|
|
35414
|
-
//
|
|
35415
|
-
//
|
|
35416
|
-
|
|
35408
|
+
// ON by default — this deliberately matches the fleet's live behaviour rather than the
|
|
35409
|
+
// dark default ENG-8074 declared, and the history is worth keeping straight:
|
|
35410
|
+
//
|
|
35411
|
+
// ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
|
|
35412
|
+
// (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
|
|
35413
|
+
// default was never reachable: sst.config.ts pinned the declared envVar to the literal
|
|
35414
|
+
// 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
|
|
35415
|
+
// probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
|
|
35416
|
+
// real authority for the first time — so its value must now be chosen for the fleet it
|
|
35417
|
+
// actually controls, not inherited from an intent that never took effect.
|
|
35418
|
+
//
|
|
35419
|
+
// `true` keeps prod exactly as it has been running. Flipping to `false` here instead
|
|
35420
|
+
// would have silently switched agent liveness probing off at the next deploy — including
|
|
35421
|
+
// the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
|
|
35422
|
+
// alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
|
|
35423
|
+
// if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
|
|
35424
|
+
defaultValue: true,
|
|
35417
35425
|
envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
|
|
35418
35426
|
},
|
|
35419
35427
|
{
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-4XLEJP7G.js";
|
|
40
40
|
import "./chunk-XWVM4KPK.js";
|
|
41
41
|
export {
|
|
42
42
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -77,4 +77,4 @@ export {
|
|
|
77
77
|
writeEgressAllowlist,
|
|
78
78
|
writePersistentClaudeWrapper
|
|
79
79
|
};
|
|
80
|
-
//# sourceMappingURL=persistent-session-
|
|
80
|
+
//# sourceMappingURL=persistent-session-Q4YE53I5.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-4XLEJP7G.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -596,4 +596,4 @@ export {
|
|
|
596
596
|
readAndResetSlackReplyBindingClassifications,
|
|
597
597
|
readAndResetSlackReplyTargetClassifications
|
|
598
598
|
};
|
|
599
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
599
|
+
//# sourceMappingURL=responsiveness-probe-MOFFFCOY.js.map
|