@integrity-labs/agt-cli 0.28.509 → 0.28.511
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-S5X4XFAC.js → chunk-I3DZ3LI5.js} +3 -3
- package/dist/{chunk-7U63M5R6.js → chunk-OQBHTDWK.js} +17 -1
- package/dist/{chunk-7U63M5R6.js.map → chunk-OQBHTDWK.js.map} +1 -1
- package/dist/{claude-pair-runtime-5CDR4XPI.js → claude-pair-runtime-AK6RLKSR.js} +2 -2
- package/dist/lib/manager-worker.js +175 -126
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +16 -0
- package/dist/mcp/index.js +10 -0
- package/dist/mcp/origami.js +16 -0
- package/dist/mcp/slack-channel.js +16 -0
- package/dist/mcp/telegram-channel.js +16 -0
- package/dist/{persistent-session-BDNW4K6M.js → persistent-session-CMG4VWT6.js} +2 -2
- package/dist/{responsiveness-probe-KR73VA2S.js → responsiveness-probe-COMUJVPF.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-S5X4XFAC.js.map → chunk-I3DZ3LI5.js.map} +0 -0
- /package/dist/{claude-pair-runtime-5CDR4XPI.js.map → claude-pair-runtime-AK6RLKSR.js.map} +0 -0
- /package/dist/{persistent-session-BDNW4K6M.js.map → persistent-session-CMG4VWT6.js.map} +0 -0
- /package/dist/{responsiveness-probe-KR73VA2S.js.map → responsiveness-probe-COMUJVPF.js.map} +0 -0
|
@@ -34995,6 +34995,22 @@ var FLAG_REGISTRY = [
|
|
|
34995
34995
|
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
34996
34996
|
// FLAGS_SCHEMA_VERSION.
|
|
34997
34997
|
},
|
|
34998
|
+
{
|
|
34999
|
+
key: "agt-version-drift-alarm",
|
|
35000
|
+
description: "Arms the ENG-8341 agt CLI version-drift alert. When a host has fallen behind its EFFECTIVE target (env pin > DB pin > release channel) across two or more of its OWN maintenance windows, the monitor opens a host_agt_version_drift alert. OBSERVE-FIRST rollout gate: the cron computes and LOGS the drift for every host on every run regardless of this flag, so the real fleet spread is measurable before anyone is paged - the ticket asks for the threshold to be set from observed data rather than a guess. Off = compute and log, open nothing. Boolean gate; ships dark. Evaluated API-side, in the cron.",
|
|
35001
|
+
flagType: "boolean",
|
|
35002
|
+
// Declared safe value is `false`. Fail-safe direction for a NEW alerting
|
|
35003
|
+
// cron is silence: ~21 hosts with no prior drift signal means the first
|
|
35004
|
+
// armed pass could open an alert for every host that is behind at once.
|
|
35005
|
+
// The cron also carries a bootstrap floor (agent-stall-monitor.ts's
|
|
35006
|
+
// precedent) so arming it does not retroactively page for drift that
|
|
35007
|
+
// started before the monitor existed.
|
|
35008
|
+
defaultValue: false,
|
|
35009
|
+
// Arming this makes a previously-invisible backlog visible all at once, in
|
|
35010
|
+
// the same shape ENG-8204's never-spawned-session-metric warned about - so
|
|
35011
|
+
// the flip is a deliberate, confirmed one (ADR-0022 sensitive-flag confirm).
|
|
35012
|
+
sensitive: true
|
|
35013
|
+
},
|
|
34998
35014
|
{
|
|
34999
35015
|
key: "memory-extraction",
|
|
35000
35016
|
description: "Host-side durable-memory extraction (ENG-6200): the manager extracts candidate memories from completed conversations and POSTs them to /host/memories/candidates, which writes dream_log via promoteCandidates. Post persistent-session cutover this is the ONLY live consolidation path. Boolean gate; ships dark \u2014 when off the manager runs no extraction, so 0 dream_log rows fleet-wide is the expected steady state until it is armed.",
|
package/dist/mcp/index.js
CHANGED
|
@@ -21500,6 +21500,16 @@ function describeReconnectRequestResult(resp) {
|
|
|
21500
21500
|
text: "A reconnect request for this integration was already sent recently, so no new notification went out. Stop retrying the failing tool and wait for the reconnect.",
|
|
21501
21501
|
isError: false
|
|
21502
21502
|
};
|
|
21503
|
+
case "notified_disputed":
|
|
21504
|
+
return {
|
|
21505
|
+
text: "Reconnect request sent. Note that the platform still shows this integration as connected, so your report and the stored status disagree \u2014 your manager has been notified with both, and with the error you reported. Stop retrying the failing tool; a human has to resolve the disagreement.",
|
|
21506
|
+
isError: false
|
|
21507
|
+
};
|
|
21508
|
+
// CS-1542: retained for older API stages that still return it. The route no
|
|
21509
|
+
// longer emits `healthy` - a stored status is not a probe, so it is not
|
|
21510
|
+
// allowed to end the request - but a host can run a newer CLI than the API
|
|
21511
|
+
// it talks to, and the previous copy ("no reconnect request was sent") is
|
|
21512
|
+
// the honest thing to say if this ever does come back.
|
|
21503
21513
|
case "healthy":
|
|
21504
21514
|
return {
|
|
21505
21515
|
text: "The platform shows this integration as connected, so no reconnect request was sent. If the tool is still failing, tell your operator exactly what error you saw instead of retrying.",
|
package/dist/mcp/origami.js
CHANGED
|
@@ -40886,6 +40886,22 @@ var FLAG_REGISTRY = [
|
|
|
40886
40886
|
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
40887
40887
|
// FLAGS_SCHEMA_VERSION.
|
|
40888
40888
|
},
|
|
40889
|
+
{
|
|
40890
|
+
key: "agt-version-drift-alarm",
|
|
40891
|
+
description: "Arms the ENG-8341 agt CLI version-drift alert. When a host has fallen behind its EFFECTIVE target (env pin > DB pin > release channel) across two or more of its OWN maintenance windows, the monitor opens a host_agt_version_drift alert. OBSERVE-FIRST rollout gate: the cron computes and LOGS the drift for every host on every run regardless of this flag, so the real fleet spread is measurable before anyone is paged - the ticket asks for the threshold to be set from observed data rather than a guess. Off = compute and log, open nothing. Boolean gate; ships dark. Evaluated API-side, in the cron.",
|
|
40892
|
+
flagType: "boolean",
|
|
40893
|
+
// Declared safe value is `false`. Fail-safe direction for a NEW alerting
|
|
40894
|
+
// cron is silence: ~21 hosts with no prior drift signal means the first
|
|
40895
|
+
// armed pass could open an alert for every host that is behind at once.
|
|
40896
|
+
// The cron also carries a bootstrap floor (agent-stall-monitor.ts's
|
|
40897
|
+
// precedent) so arming it does not retroactively page for drift that
|
|
40898
|
+
// started before the monitor existed.
|
|
40899
|
+
defaultValue: false,
|
|
40900
|
+
// Arming this makes a previously-invisible backlog visible all at once, in
|
|
40901
|
+
// the same shape ENG-8204's never-spawned-session-metric warned about - so
|
|
40902
|
+
// the flip is a deliberate, confirmed one (ADR-0022 sensitive-flag confirm).
|
|
40903
|
+
sensitive: true
|
|
40904
|
+
},
|
|
40889
40905
|
{
|
|
40890
40906
|
key: "memory-extraction",
|
|
40891
40907
|
description: "Host-side durable-memory extraction (ENG-6200): the manager extracts candidate memories from completed conversations and POSTs them to /host/memories/candidates, which writes dream_log via promoteCandidates. Post persistent-session cutover this is the ONLY live consolidation path. Boolean gate; ships dark \u2014 when off the manager runs no extraction, so 0 dream_log rows fleet-wide is the expected steady state until it is armed.",
|
|
@@ -35164,6 +35164,22 @@ var FLAG_REGISTRY = [
|
|
|
35164
35164
|
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
35165
35165
|
// FLAGS_SCHEMA_VERSION.
|
|
35166
35166
|
},
|
|
35167
|
+
{
|
|
35168
|
+
key: "agt-version-drift-alarm",
|
|
35169
|
+
description: "Arms the ENG-8341 agt CLI version-drift alert. When a host has fallen behind its EFFECTIVE target (env pin > DB pin > release channel) across two or more of its OWN maintenance windows, the monitor opens a host_agt_version_drift alert. OBSERVE-FIRST rollout gate: the cron computes and LOGS the drift for every host on every run regardless of this flag, so the real fleet spread is measurable before anyone is paged - the ticket asks for the threshold to be set from observed data rather than a guess. Off = compute and log, open nothing. Boolean gate; ships dark. Evaluated API-side, in the cron.",
|
|
35170
|
+
flagType: "boolean",
|
|
35171
|
+
// Declared safe value is `false`. Fail-safe direction for a NEW alerting
|
|
35172
|
+
// cron is silence: ~21 hosts with no prior drift signal means the first
|
|
35173
|
+
// armed pass could open an alert for every host that is behind at once.
|
|
35174
|
+
// The cron also carries a bootstrap floor (agent-stall-monitor.ts's
|
|
35175
|
+
// precedent) so arming it does not retroactively page for drift that
|
|
35176
|
+
// started before the monitor existed.
|
|
35177
|
+
defaultValue: false,
|
|
35178
|
+
// Arming this makes a previously-invisible backlog visible all at once, in
|
|
35179
|
+
// the same shape ENG-8204's never-spawned-session-metric warned about - so
|
|
35180
|
+
// the flip is a deliberate, confirmed one (ADR-0022 sensitive-flag confirm).
|
|
35181
|
+
sensitive: true
|
|
35182
|
+
},
|
|
35167
35183
|
{
|
|
35168
35184
|
key: "memory-extraction",
|
|
35169
35185
|
description: "Host-side durable-memory extraction (ENG-6200): the manager extracts candidate memories from completed conversations and POSTs them to /host/memories/candidates, which writes dream_log via promoteCandidates. Post persistent-session cutover this is the ONLY live consolidation path. Boolean gate; ships dark \u2014 when off the manager runs no extraction, so 0 dream_log rows fleet-wide is the expected steady state until it is armed.",
|
|
@@ -35490,6 +35490,22 @@ var FLAG_REGISTRY = [
|
|
|
35490
35490
|
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
35491
35491
|
// FLAGS_SCHEMA_VERSION.
|
|
35492
35492
|
},
|
|
35493
|
+
{
|
|
35494
|
+
key: "agt-version-drift-alarm",
|
|
35495
|
+
description: "Arms the ENG-8341 agt CLI version-drift alert. When a host has fallen behind its EFFECTIVE target (env pin > DB pin > release channel) across two or more of its OWN maintenance windows, the monitor opens a host_agt_version_drift alert. OBSERVE-FIRST rollout gate: the cron computes and LOGS the drift for every host on every run regardless of this flag, so the real fleet spread is measurable before anyone is paged - the ticket asks for the threshold to be set from observed data rather than a guess. Off = compute and log, open nothing. Boolean gate; ships dark. Evaluated API-side, in the cron.",
|
|
35496
|
+
flagType: "boolean",
|
|
35497
|
+
// Declared safe value is `false`. Fail-safe direction for a NEW alerting
|
|
35498
|
+
// cron is silence: ~21 hosts with no prior drift signal means the first
|
|
35499
|
+
// armed pass could open an alert for every host that is behind at once.
|
|
35500
|
+
// The cron also carries a bootstrap floor (agent-stall-monitor.ts's
|
|
35501
|
+
// precedent) so arming it does not retroactively page for drift that
|
|
35502
|
+
// started before the monitor existed.
|
|
35503
|
+
defaultValue: false,
|
|
35504
|
+
// Arming this makes a previously-invisible backlog visible all at once, in
|
|
35505
|
+
// the same shape ENG-8204's never-spawned-session-metric warned about - so
|
|
35506
|
+
// the flip is a deliberate, confirmed one (ADR-0022 sensitive-flag confirm).
|
|
35507
|
+
sensitive: true
|
|
35508
|
+
},
|
|
35493
35509
|
{
|
|
35494
35510
|
key: "memory-extraction",
|
|
35495
35511
|
description: "Host-side durable-memory extraction (ENG-6200): the manager extracts candidate memories from completed conversations and POSTs them to /host/memories/candidates, which writes dream_log via promoteCandidates. Post persistent-session cutover this is the ONLY live consolidation path. Boolean gate; ships dark \u2014 when off the manager runs no extraction, so 0 dream_log rows fleet-wide is the expected steady state until it is armed.",
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
writeDirectChatSessionState,
|
|
38
38
|
writeEgressAllowlist,
|
|
39
39
|
writePersistentClaudeWrapper
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-OQBHTDWK.js";
|
|
41
41
|
import "./chunk-XWVM4KPK.js";
|
|
42
42
|
export {
|
|
43
43
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -79,4 +79,4 @@ export {
|
|
|
79
79
|
writeEgressAllowlist,
|
|
80
80
|
writePersistentClaudeWrapper
|
|
81
81
|
};
|
|
82
|
-
//# sourceMappingURL=persistent-session-
|
|
82
|
+
//# sourceMappingURL=persistent-session-CMG4VWT6.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-OQBHTDWK.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -662,4 +662,4 @@ export {
|
|
|
662
662
|
readAndResetSlackReplyBindingClassifications,
|
|
663
663
|
readAndResetSlackReplyTargetClassifications
|
|
664
664
|
};
|
|
665
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
665
|
+
//# sourceMappingURL=responsiveness-probe-COMUJVPF.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|