@integrity-labs/agt-cli 0.28.928 → 0.28.930
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 +51 -6
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-Y7ERASS6.js → chunk-7F32775G.js} +63 -1
- package/dist/{chunk-Y7ERASS6.js.map → chunk-7F32775G.js.map} +1 -1
- package/dist/{chunk-NIUBYSLW.js → chunk-HC3EDWKC.js} +2 -2
- package/dist/{chunk-OXWLTPU2.js → chunk-NCNQFUNQ.js} +23 -8
- package/dist/{chunk-OXWLTPU2.js.map → chunk-NCNQFUNQ.js.map} +1 -1
- package/dist/{claude-pair-runtime-RFY57WC3.js → claude-pair-runtime-TDP2NJTT.js} +2 -2
- package/dist/lib/manager-worker.js +26 -17
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +21 -0
- package/dist/mcp/index.js +21 -0
- package/dist/mcp/origami.js +21 -0
- package/dist/mcp/slack-channel.js +21 -0
- package/dist/mcp/telegram-channel.js +21 -0
- package/dist/{persistent-session-O3AKW6IW.js → persistent-session-Z7S2MMRH.js} +3 -3
- package/dist/{responsiveness-probe-MIPUX3BG.js → responsiveness-probe-SR62Y32C.js} +3 -3
- package/dist/{session-auth-dead-ZGZZLE4X.js → session-auth-dead-25KP23AU.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-NIUBYSLW.js.map → chunk-HC3EDWKC.js.map} +0 -0
- /package/dist/{claude-pair-runtime-RFY57WC3.js.map → claude-pair-runtime-TDP2NJTT.js.map} +0 -0
- /package/dist/{persistent-session-O3AKW6IW.js.map → persistent-session-Z7S2MMRH.js.map} +0 -0
- /package/dist/{responsiveness-probe-MIPUX3BG.js.map → responsiveness-probe-SR62Y32C.js.map} +0 -0
- /package/dist/{session-auth-dead-ZGZZLE4X.js.map → session-auth-dead-25KP23AU.js.map} +0 -0
|
@@ -35308,6 +35308,10 @@ function parseUsageBanner(text, now = /* @__PURE__ */ new Date()) {
|
|
|
35308
35308
|
return best;
|
|
35309
35309
|
}
|
|
35310
35310
|
|
|
35311
|
+
// ../core/dist/claude-code-usage/banner-remedy.js
|
|
35312
|
+
var BANNER_REMEDY_MAX_LENGTH = 200;
|
|
35313
|
+
var REMEDY_PATTERN = new RegExp("hit\\s+your\\s+(?:(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3})\\s+)?limit\\s*\xB7\\s*(?<remedy>[^\xB7]{1," + String(BANNER_REMEDY_MAX_LENGTH * 2) + "}?)\\s*\xB7(?=[^\xB7]{0,80}?\\bresets\\b)", "giu");
|
|
35314
|
+
|
|
35311
35315
|
// ../core/dist/claude-code-usage/run-marker.js
|
|
35312
35316
|
var RUN_MARKER_RE = /<!--\s*agt-run:([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})\s*-->/;
|
|
35313
35317
|
var RUN_MARKER_RE_GLOBAL = new RegExp(RUN_MARKER_RE.source, "g");
|
|
@@ -37410,6 +37414,23 @@ var FLAG_REGISTRY = [
|
|
|
37410
37414
|
// env var is retired.
|
|
37411
37415
|
envVar: "AUGMENTED_CONNECTIVITY_ESCALATION_ENABLED"
|
|
37412
37416
|
},
|
|
37417
|
+
{
|
|
37418
|
+
key: "integration-connectivity-reconcile",
|
|
37419
|
+
description: "Arm integration-connectivity STATUS reconciliation (ENG-6139, armable per-org by ENG-10473). When on, a hard-down connectivity observation (a `down` reading with consecutive_connectivity_failures at/over the hysteresis threshold) on an otherwise-healthy row downgrades it to status=error, status_message=connectivity_down, so the record stops asserting a live connection the probe has disproved; recovery restores status=active, but ONLY for rows this path downgraded. When off it stays shadow - logs what it WOULD downgrade and touches only the connectivity columns. \u26A0\uFE0F A downgraded row drops out of host-runtime's `.in('status',['active','configured'])` provisioning filter, so the agent LOSES that MCP server: correct for a dead credential, and a provisioning change either way, which is why arming is a deliberate operator act. Sibling of integration-connectivity-escalation: that flag arms the alert, this one arms the record.",
|
|
37420
|
+
flagType: "boolean",
|
|
37421
|
+
// Declared safe value is `false` (shadow / record untouched). It matches the
|
|
37422
|
+
// route's compiled default since ENG-6139, so migrating the reader onto this
|
|
37423
|
+
// flag (ADR-0022) preserves fleet behaviour exactly. `false` is also the
|
|
37424
|
+
// fail-safe direction: a flag-DB read error must never de-provision an
|
|
37425
|
+
// integration on its own.
|
|
37426
|
+
defaultValue: false,
|
|
37427
|
+
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
37428
|
+
// highest-precedence operator override. ENG-10473 deliberately does NOT wire
|
|
37429
|
+
// this var in sst.config.ts - ENG-8303 records what happens when a declared
|
|
37430
|
+
// envVar is pinned there: it outranks the DB value and makes the flag inert
|
|
37431
|
+
// everywhere it matters.
|
|
37432
|
+
envVar: "AUGMENTED_CONNECTIVITY_RECONCILE_STATUS"
|
|
37433
|
+
},
|
|
37413
37434
|
{
|
|
37414
37435
|
key: "slack-manifest-remediate",
|
|
37415
37436
|
description: "Let the Slack manifest drift monitor PUSH, not just alert (ENG-9963). updateSlackManifest had exactly one caller \u2014 a console button \u2014 so nothing but a human click ever pushed a manifest; ENG-7762 changed the generator with no rollout mechanism and 26 agents went 53 days with no working per-agent slash commands. When on, the daily drift cron pushes the generated manifest for a drifted agent. When off it alerts exactly as before. NOTE what arming this authorises: a push REPLACES a customer-owned Slack app's entire manifest, so the cron only ever pushes drift whose diffs are purely additive (isSafelyRemediable) \u2014 an app with live-only entries a push would destroy is declined and left for a human. Boolean gate; ships dark.",
|
package/dist/mcp/index.js
CHANGED
|
@@ -27888,6 +27888,10 @@ var BANNER_PATTERNS = [
|
|
|
27888
27888
|
new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
|
|
27889
27889
|
];
|
|
27890
27890
|
|
|
27891
|
+
// ../core/dist/claude-code-usage/banner-remedy.js
|
|
27892
|
+
var BANNER_REMEDY_MAX_LENGTH = 200;
|
|
27893
|
+
var REMEDY_PATTERN = new RegExp("hit\\s+your\\s+(?:(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3})\\s+)?limit\\s*\xB7\\s*(?<remedy>[^\xB7]{1," + String(BANNER_REMEDY_MAX_LENGTH * 2) + "}?)\\s*\xB7(?=[^\xB7]{0,80}?\\bresets\\b)", "giu");
|
|
27894
|
+
|
|
27891
27895
|
// ../core/dist/claude-code-usage/run-marker.js
|
|
27892
27896
|
var RUN_MARKER_RE = /<!--\s*agt-run:([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})\s*-->/;
|
|
27893
27897
|
var RUN_MARKER_RE_GLOBAL = new RegExp(RUN_MARKER_RE.source, "g");
|
|
@@ -29726,6 +29730,23 @@ var FLAG_REGISTRY = [
|
|
|
29726
29730
|
// env var is retired.
|
|
29727
29731
|
envVar: "AUGMENTED_CONNECTIVITY_ESCALATION_ENABLED"
|
|
29728
29732
|
},
|
|
29733
|
+
{
|
|
29734
|
+
key: "integration-connectivity-reconcile",
|
|
29735
|
+
description: "Arm integration-connectivity STATUS reconciliation (ENG-6139, armable per-org by ENG-10473). When on, a hard-down connectivity observation (a `down` reading with consecutive_connectivity_failures at/over the hysteresis threshold) on an otherwise-healthy row downgrades it to status=error, status_message=connectivity_down, so the record stops asserting a live connection the probe has disproved; recovery restores status=active, but ONLY for rows this path downgraded. When off it stays shadow - logs what it WOULD downgrade and touches only the connectivity columns. \u26A0\uFE0F A downgraded row drops out of host-runtime's `.in('status',['active','configured'])` provisioning filter, so the agent LOSES that MCP server: correct for a dead credential, and a provisioning change either way, which is why arming is a deliberate operator act. Sibling of integration-connectivity-escalation: that flag arms the alert, this one arms the record.",
|
|
29736
|
+
flagType: "boolean",
|
|
29737
|
+
// Declared safe value is `false` (shadow / record untouched). It matches the
|
|
29738
|
+
// route's compiled default since ENG-6139, so migrating the reader onto this
|
|
29739
|
+
// flag (ADR-0022) preserves fleet behaviour exactly. `false` is also the
|
|
29740
|
+
// fail-safe direction: a flag-DB read error must never de-provision an
|
|
29741
|
+
// integration on its own.
|
|
29742
|
+
defaultValue: false,
|
|
29743
|
+
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
29744
|
+
// highest-precedence operator override. ENG-10473 deliberately does NOT wire
|
|
29745
|
+
// this var in sst.config.ts - ENG-8303 records what happens when a declared
|
|
29746
|
+
// envVar is pinned there: it outranks the DB value and makes the flag inert
|
|
29747
|
+
// everywhere it matters.
|
|
29748
|
+
envVar: "AUGMENTED_CONNECTIVITY_RECONCILE_STATUS"
|
|
29749
|
+
},
|
|
29729
29750
|
{
|
|
29730
29751
|
key: "slack-manifest-remediate",
|
|
29731
29752
|
description: "Let the Slack manifest drift monitor PUSH, not just alert (ENG-9963). updateSlackManifest had exactly one caller \u2014 a console button \u2014 so nothing but a human click ever pushed a manifest; ENG-7762 changed the generator with no rollout mechanism and 26 agents went 53 days with no working per-agent slash commands. When on, the daily drift cron pushes the generated manifest for a drifted agent. When off it alerts exactly as before. NOTE what arming this authorises: a push REPLACES a customer-owned Slack app's entire manifest, so the cron only ever pushes drift whose diffs are purely additive (isSafelyRemediable) \u2014 an app with live-only entries a push would destroy is declined and left for a human. Boolean gate; ships dark.",
|
package/dist/mcp/origami.js
CHANGED
|
@@ -41810,6 +41810,10 @@ var BANNER_PATTERNS = [
|
|
|
41810
41810
|
new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
|
|
41811
41811
|
];
|
|
41812
41812
|
|
|
41813
|
+
// ../core/dist/claude-code-usage/banner-remedy.js
|
|
41814
|
+
var BANNER_REMEDY_MAX_LENGTH = 200;
|
|
41815
|
+
var REMEDY_PATTERN = new RegExp("hit\\s+your\\s+(?:(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3})\\s+)?limit\\s*\xB7\\s*(?<remedy>[^\xB7]{1," + String(BANNER_REMEDY_MAX_LENGTH * 2) + "}?)\\s*\xB7(?=[^\xB7]{0,80}?\\bresets\\b)", "giu");
|
|
41816
|
+
|
|
41813
41817
|
// ../core/dist/claude-code-usage/run-marker.js
|
|
41814
41818
|
var RUN_MARKER_RE = /<!--\s*agt-run:([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})\s*-->/;
|
|
41815
41819
|
var RUN_MARKER_RE_GLOBAL = new RegExp(RUN_MARKER_RE.source, "g");
|
|
@@ -43627,6 +43631,23 @@ var FLAG_REGISTRY = [
|
|
|
43627
43631
|
// env var is retired.
|
|
43628
43632
|
envVar: "AUGMENTED_CONNECTIVITY_ESCALATION_ENABLED"
|
|
43629
43633
|
},
|
|
43634
|
+
{
|
|
43635
|
+
key: "integration-connectivity-reconcile",
|
|
43636
|
+
description: "Arm integration-connectivity STATUS reconciliation (ENG-6139, armable per-org by ENG-10473). When on, a hard-down connectivity observation (a `down` reading with consecutive_connectivity_failures at/over the hysteresis threshold) on an otherwise-healthy row downgrades it to status=error, status_message=connectivity_down, so the record stops asserting a live connection the probe has disproved; recovery restores status=active, but ONLY for rows this path downgraded. When off it stays shadow - logs what it WOULD downgrade and touches only the connectivity columns. \u26A0\uFE0F A downgraded row drops out of host-runtime's `.in('status',['active','configured'])` provisioning filter, so the agent LOSES that MCP server: correct for a dead credential, and a provisioning change either way, which is why arming is a deliberate operator act. Sibling of integration-connectivity-escalation: that flag arms the alert, this one arms the record.",
|
|
43637
|
+
flagType: "boolean",
|
|
43638
|
+
// Declared safe value is `false` (shadow / record untouched). It matches the
|
|
43639
|
+
// route's compiled default since ENG-6139, so migrating the reader onto this
|
|
43640
|
+
// flag (ADR-0022) preserves fleet behaviour exactly. `false` is also the
|
|
43641
|
+
// fail-safe direction: a flag-DB read error must never de-provision an
|
|
43642
|
+
// integration on its own.
|
|
43643
|
+
defaultValue: false,
|
|
43644
|
+
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
43645
|
+
// highest-precedence operator override. ENG-10473 deliberately does NOT wire
|
|
43646
|
+
// this var in sst.config.ts - ENG-8303 records what happens when a declared
|
|
43647
|
+
// envVar is pinned there: it outranks the DB value and makes the flag inert
|
|
43648
|
+
// everywhere it matters.
|
|
43649
|
+
envVar: "AUGMENTED_CONNECTIVITY_RECONCILE_STATUS"
|
|
43650
|
+
},
|
|
43630
43651
|
{
|
|
43631
43652
|
key: "slack-manifest-remediate",
|
|
43632
43653
|
description: "Let the Slack manifest drift monitor PUSH, not just alert (ENG-9963). updateSlackManifest had exactly one caller \u2014 a console button \u2014 so nothing but a human click ever pushed a manifest; ENG-7762 changed the generator with no rollout mechanism and 26 agents went 53 days with no working per-agent slash commands. When on, the daily drift cron pushes the generated manifest for a drifted agent. When off it alerts exactly as before. NOTE what arming this authorises: a push REPLACES a customer-owned Slack app's entire manifest, so the cron only ever pushes drift whose diffs are purely additive (isSafelyRemediable) \u2014 an app with live-only entries a push would destroy is declined and left for a human. Boolean gate; ships dark.",
|
|
@@ -36181,6 +36181,10 @@ function parseUsageBanner(text, now = /* @__PURE__ */ new Date()) {
|
|
|
36181
36181
|
return best;
|
|
36182
36182
|
}
|
|
36183
36183
|
|
|
36184
|
+
// ../core/dist/claude-code-usage/banner-remedy.js
|
|
36185
|
+
var BANNER_REMEDY_MAX_LENGTH = 200;
|
|
36186
|
+
var REMEDY_PATTERN = new RegExp("hit\\s+your\\s+(?:(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3})\\s+)?limit\\s*\xB7\\s*(?<remedy>[^\xB7]{1," + String(BANNER_REMEDY_MAX_LENGTH * 2) + "}?)\\s*\xB7(?=[^\xB7]{0,80}?\\bresets\\b)", "giu");
|
|
36187
|
+
|
|
36184
36188
|
// ../core/dist/claude-code-usage/run-marker.js
|
|
36185
36189
|
var RUN_MARKER_RE = /<!--\s*agt-run:([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})\s*-->/;
|
|
36186
36190
|
var RUN_MARKER_RE_GLOBAL = new RegExp(RUN_MARKER_RE.source, "g");
|
|
@@ -38286,6 +38290,23 @@ var FLAG_REGISTRY = [
|
|
|
38286
38290
|
// env var is retired.
|
|
38287
38291
|
envVar: "AUGMENTED_CONNECTIVITY_ESCALATION_ENABLED"
|
|
38288
38292
|
},
|
|
38293
|
+
{
|
|
38294
|
+
key: "integration-connectivity-reconcile",
|
|
38295
|
+
description: "Arm integration-connectivity STATUS reconciliation (ENG-6139, armable per-org by ENG-10473). When on, a hard-down connectivity observation (a `down` reading with consecutive_connectivity_failures at/over the hysteresis threshold) on an otherwise-healthy row downgrades it to status=error, status_message=connectivity_down, so the record stops asserting a live connection the probe has disproved; recovery restores status=active, but ONLY for rows this path downgraded. When off it stays shadow - logs what it WOULD downgrade and touches only the connectivity columns. \u26A0\uFE0F A downgraded row drops out of host-runtime's `.in('status',['active','configured'])` provisioning filter, so the agent LOSES that MCP server: correct for a dead credential, and a provisioning change either way, which is why arming is a deliberate operator act. Sibling of integration-connectivity-escalation: that flag arms the alert, this one arms the record.",
|
|
38296
|
+
flagType: "boolean",
|
|
38297
|
+
// Declared safe value is `false` (shadow / record untouched). It matches the
|
|
38298
|
+
// route's compiled default since ENG-6139, so migrating the reader onto this
|
|
38299
|
+
// flag (ADR-0022) preserves fleet behaviour exactly. `false` is also the
|
|
38300
|
+
// fail-safe direction: a flag-DB read error must never de-provision an
|
|
38301
|
+
// integration on its own.
|
|
38302
|
+
defaultValue: false,
|
|
38303
|
+
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
38304
|
+
// highest-precedence operator override. ENG-10473 deliberately does NOT wire
|
|
38305
|
+
// this var in sst.config.ts - ENG-8303 records what happens when a declared
|
|
38306
|
+
// envVar is pinned there: it outranks the DB value and makes the flag inert
|
|
38307
|
+
// everywhere it matters.
|
|
38308
|
+
envVar: "AUGMENTED_CONNECTIVITY_RECONCILE_STATUS"
|
|
38309
|
+
},
|
|
38289
38310
|
{
|
|
38290
38311
|
key: "slack-manifest-remediate",
|
|
38291
38312
|
description: "Let the Slack manifest drift monitor PUSH, not just alert (ENG-9963). updateSlackManifest had exactly one caller \u2014 a console button \u2014 so nothing but a human click ever pushed a manifest; ENG-7762 changed the generator with no rollout mechanism and 26 agents went 53 days with no working per-agent slash commands. When on, the daily drift cron pushes the generated manifest for a drifted agent. When off it alerts exactly as before. NOTE what arming this authorises: a push REPLACES a customer-owned Slack app's entire manifest, so the cron only ever pushes drift whose diffs are purely additive (isSafelyRemediable) \u2014 an app with live-only entries a push would destroy is declined and left for a human. Boolean gate; ships dark.",
|
|
@@ -36217,6 +36217,10 @@ function parseUsageBanner(text, now = /* @__PURE__ */ new Date()) {
|
|
|
36217
36217
|
return best;
|
|
36218
36218
|
}
|
|
36219
36219
|
|
|
36220
|
+
// ../core/dist/claude-code-usage/banner-remedy.js
|
|
36221
|
+
var BANNER_REMEDY_MAX_LENGTH = 200;
|
|
36222
|
+
var REMEDY_PATTERN = new RegExp("hit\\s+your\\s+(?:(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3})\\s+)?limit\\s*\xB7\\s*(?<remedy>[^\xB7]{1," + String(BANNER_REMEDY_MAX_LENGTH * 2) + "}?)\\s*\xB7(?=[^\xB7]{0,80}?\\bresets\\b)", "giu");
|
|
36223
|
+
|
|
36220
36224
|
// ../core/dist/claude-code-usage/run-marker.js
|
|
36221
36225
|
var RUN_MARKER_RE = /<!--\s*agt-run:([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})\s*-->/;
|
|
36222
36226
|
var RUN_MARKER_RE_GLOBAL = new RegExp(RUN_MARKER_RE.source, "g");
|
|
@@ -38322,6 +38326,23 @@ var FLAG_REGISTRY = [
|
|
|
38322
38326
|
// env var is retired.
|
|
38323
38327
|
envVar: "AUGMENTED_CONNECTIVITY_ESCALATION_ENABLED"
|
|
38324
38328
|
},
|
|
38329
|
+
{
|
|
38330
|
+
key: "integration-connectivity-reconcile",
|
|
38331
|
+
description: "Arm integration-connectivity STATUS reconciliation (ENG-6139, armable per-org by ENG-10473). When on, a hard-down connectivity observation (a `down` reading with consecutive_connectivity_failures at/over the hysteresis threshold) on an otherwise-healthy row downgrades it to status=error, status_message=connectivity_down, so the record stops asserting a live connection the probe has disproved; recovery restores status=active, but ONLY for rows this path downgraded. When off it stays shadow - logs what it WOULD downgrade and touches only the connectivity columns. \u26A0\uFE0F A downgraded row drops out of host-runtime's `.in('status',['active','configured'])` provisioning filter, so the agent LOSES that MCP server: correct for a dead credential, and a provisioning change either way, which is why arming is a deliberate operator act. Sibling of integration-connectivity-escalation: that flag arms the alert, this one arms the record.",
|
|
38332
|
+
flagType: "boolean",
|
|
38333
|
+
// Declared safe value is `false` (shadow / record untouched). It matches the
|
|
38334
|
+
// route's compiled default since ENG-6139, so migrating the reader onto this
|
|
38335
|
+
// flag (ADR-0022) preserves fleet behaviour exactly. `false` is also the
|
|
38336
|
+
// fail-safe direction: a flag-DB read error must never de-provision an
|
|
38337
|
+
// integration on its own.
|
|
38338
|
+
defaultValue: false,
|
|
38339
|
+
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
38340
|
+
// highest-precedence operator override. ENG-10473 deliberately does NOT wire
|
|
38341
|
+
// this var in sst.config.ts - ENG-8303 records what happens when a declared
|
|
38342
|
+
// envVar is pinned there: it outranks the DB value and makes the flag inert
|
|
38343
|
+
// everywhere it matters.
|
|
38344
|
+
envVar: "AUGMENTED_CONNECTIVITY_RECONCILE_STATUS"
|
|
38345
|
+
},
|
|
38325
38346
|
{
|
|
38326
38347
|
key: "slack-manifest-remediate",
|
|
38327
38348
|
description: "Let the Slack manifest drift monitor PUSH, not just alert (ENG-9963). updateSlackManifest had exactly one caller \u2014 a console button \u2014 so nothing but a human click ever pushed a manifest; ENG-7762 changed the generator with no rollout mechanism and 26 agents went 53 days with no working per-agent slash commands. When on, the daily drift cron pushes the generated manifest for a drifted agent. When off it alerts exactly as before. NOTE what arming this authorises: a push REPLACES a customer-owned Slack app's entire manifest, so the cron only ever pushes drift whose diffs are purely additive (isSafelyRemediable) \u2014 an app with live-only entries a push would destroy is declined and left for a human. Boolean gate; ships dark.",
|
|
@@ -62,8 +62,8 @@ import {
|
|
|
62
62
|
writeDirectChatSessionState,
|
|
63
63
|
writeEgressAllowlist,
|
|
64
64
|
writePersistentClaudeWrapper
|
|
65
|
-
} from "./chunk-
|
|
66
|
-
import "./chunk-
|
|
65
|
+
} from "./chunk-HC3EDWKC.js";
|
|
66
|
+
import "./chunk-7F32775G.js";
|
|
67
67
|
import "./chunk-XWVM4KPK.js";
|
|
68
68
|
export {
|
|
69
69
|
CLAUDE_HOST_WIDE,
|
|
@@ -130,4 +130,4 @@ export {
|
|
|
130
130
|
writeEgressAllowlist,
|
|
131
131
|
writePersistentClaudeWrapper
|
|
132
132
|
};
|
|
133
|
-
//# sourceMappingURL=persistent-session-
|
|
133
|
+
//# sourceMappingURL=persistent-session-Z7S2MMRH.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-HC3EDWKC.js";
|
|
4
|
+
import "./chunk-7F32775G.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -799,4 +799,4 @@ export {
|
|
|
799
799
|
readAndResetSlackReplyBindingClassifications,
|
|
800
800
|
readAndResetSlackReplyTargetClassifications
|
|
801
801
|
};
|
|
802
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
802
|
+
//# sourceMappingURL=responsiveness-probe-SR62Y32C.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-7F32775G.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-25KP23AU.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|