@integrity-labs/agt-cli 0.28.506 → 0.28.507
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-SMHHGXI5.js → chunk-4PRR22KH.js} +31 -1
- package/dist/{chunk-SMHHGXI5.js.map → chunk-4PRR22KH.js.map} +1 -1
- package/dist/{chunk-43UIRCO7.js → chunk-75NQ7UBH.js} +3 -3
- package/dist/{claude-pair-runtime-7CZWWZJ2.js → claude-pair-runtime-37TIOIJQ.js} +2 -2
- package/dist/lib/manager-worker.js +34 -13
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +30 -0
- package/dist/mcp/origami.js +30 -0
- package/dist/mcp/slack-channel.js +30 -0
- package/dist/mcp/telegram-channel.js +30 -0
- package/dist/{persistent-session-RAXQFDPB.js → persistent-session-OMAAP4OU.js} +2 -2
- package/dist/{responsiveness-probe-PBWABVLJ.js → responsiveness-probe-NRH2AQW6.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-43UIRCO7.js.map → chunk-75NQ7UBH.js.map} +0 -0
- /package/dist/{claude-pair-runtime-7CZWWZJ2.js.map → claude-pair-runtime-37TIOIJQ.js.map} +0 -0
- /package/dist/{persistent-session-RAXQFDPB.js.map → persistent-session-OMAAP4OU.js.map} +0 -0
- /package/dist/{responsiveness-probe-PBWABVLJ.js.map → responsiveness-probe-NRH2AQW6.js.map} +0 -0
|
@@ -34950,6 +34950,36 @@ var FLAG_REGISTRY = [
|
|
|
34950
34950
|
// AGT_RESUME_RECONCILER_ENABLED set keeps that value until the env is retired.
|
|
34951
34951
|
envVar: "AGT_RESUME_RECONCILER_ENABLED"
|
|
34952
34952
|
},
|
|
34953
|
+
{
|
|
34954
|
+
key: "auto-resume-enabled",
|
|
34955
|
+
description: "DO NOT ARM YET (ENG-8395): this flag has no `since` set until a follow-up bisects it from the published agt-cli dist, and an unset `since` makes the flip-reach estimate report FULL reach for a reader that is host-side \u2014 it will tell you a flip reached hosts that have no code to honour it. Arm only once that follow-up has landed. Bounded BLIND auto-resume for circuit-breaker pauses (ENG-6088): at most one unattended resume per trip cycle, fired once the trip driver has been quiet for the configured window and only for provisioning-reload trips (the ENG-7577 class gate \u2014 a crash-class trip still needs an operator). Superseded wherever `resume-reconciler` is on: that path proves the dependency recovered instead of assuming it, and the blind timer is its flag-off fallback. Boolean gate; ships dark. ENG-8395 promoted this from a raw host env var because AGT_AUTO_RESUME_ENABLED lives in the host env file, so its grain is per-HOST \u2014 one flip arms every agent that host runs (agt-aws-1 carries 14), which made the canary-then-fleet rollout its own documentation prescribes impossible. As a registry flag it resolves per org/team/host/AGENT, so one agent can genuinely be cut over first. Read host-side by the manager (agt-cli), not centrally.",
|
|
34956
|
+
flagType: "boolean",
|
|
34957
|
+
// Declared safe value is `false` — identical to today's behaviour on a host
|
|
34958
|
+
// that has never set the env var. Fail-safe direction on a flag-DB read
|
|
34959
|
+
// error is "no unattended resume of a paused agent".
|
|
34960
|
+
defaultValue: false,
|
|
34961
|
+
// Migration override (ADR-0022) — KEPT, not swapped (ENG-8395 is an addition).
|
|
34962
|
+
// The pre-flags env gate stays the highest-precedence operator override so a
|
|
34963
|
+
// host already running with AGT_AUTO_RESUME_ENABLED set keeps that value, and
|
|
34964
|
+
// so an operator retains a host-local escape hatch that needs no control-plane
|
|
34965
|
+
// round-trip. Note the host reader accepts a slightly WIDER truthy vocabulary
|
|
34966
|
+
// than coerceEnvValue (it also honours the legacy yes/on/no/off spellings);
|
|
34967
|
+
// both agree on true/1/false/0, and the reader is the authority for this gate.
|
|
34968
|
+
envVar: "AGT_AUTO_RESUME_ENABLED",
|
|
34969
|
+
// An unattended resume is a real availability change — the agent starts
|
|
34970
|
+
// spawning sessions again with no human in the loop — so arming it is a
|
|
34971
|
+
// deliberate, confirmed write (ADR-0022 sensitive-flag confirm).
|
|
34972
|
+
sensitive: true
|
|
34973
|
+
// ENG-8395 AC5: `since` is deliberately UNSET at merge. It must be bisected
|
|
34974
|
+
// from the PUBLISHED agt-cli dist once the artifact carrying the host-side
|
|
34975
|
+
// reader exists, never guessed — auto-resume.ts is host-side, so an
|
|
34976
|
+
// under-`since` host has no consumer for this flag and a guessed value makes
|
|
34977
|
+
// the flip-reach modal promise reach it does not have (the defect caught on
|
|
34978
|
+
// ENG-8344 / PR #4014). Precedent for the bisect method: slack-hot-thread-guard
|
|
34979
|
+
// = 0.28.339, slack-scheduled-channel-guard = 0.28.421. Setting it later is
|
|
34980
|
+
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
34981
|
+
// FLAGS_SCHEMA_VERSION.
|
|
34982
|
+
},
|
|
34953
34983
|
{
|
|
34954
34984
|
key: "memory-extraction",
|
|
34955
34985
|
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/origami.js
CHANGED
|
@@ -40841,6 +40841,36 @@ var FLAG_REGISTRY = [
|
|
|
40841
40841
|
// AGT_RESUME_RECONCILER_ENABLED set keeps that value until the env is retired.
|
|
40842
40842
|
envVar: "AGT_RESUME_RECONCILER_ENABLED"
|
|
40843
40843
|
},
|
|
40844
|
+
{
|
|
40845
|
+
key: "auto-resume-enabled",
|
|
40846
|
+
description: "DO NOT ARM YET (ENG-8395): this flag has no `since` set until a follow-up bisects it from the published agt-cli dist, and an unset `since` makes the flip-reach estimate report FULL reach for a reader that is host-side \u2014 it will tell you a flip reached hosts that have no code to honour it. Arm only once that follow-up has landed. Bounded BLIND auto-resume for circuit-breaker pauses (ENG-6088): at most one unattended resume per trip cycle, fired once the trip driver has been quiet for the configured window and only for provisioning-reload trips (the ENG-7577 class gate \u2014 a crash-class trip still needs an operator). Superseded wherever `resume-reconciler` is on: that path proves the dependency recovered instead of assuming it, and the blind timer is its flag-off fallback. Boolean gate; ships dark. ENG-8395 promoted this from a raw host env var because AGT_AUTO_RESUME_ENABLED lives in the host env file, so its grain is per-HOST \u2014 one flip arms every agent that host runs (agt-aws-1 carries 14), which made the canary-then-fleet rollout its own documentation prescribes impossible. As a registry flag it resolves per org/team/host/AGENT, so one agent can genuinely be cut over first. Read host-side by the manager (agt-cli), not centrally.",
|
|
40847
|
+
flagType: "boolean",
|
|
40848
|
+
// Declared safe value is `false` — identical to today's behaviour on a host
|
|
40849
|
+
// that has never set the env var. Fail-safe direction on a flag-DB read
|
|
40850
|
+
// error is "no unattended resume of a paused agent".
|
|
40851
|
+
defaultValue: false,
|
|
40852
|
+
// Migration override (ADR-0022) — KEPT, not swapped (ENG-8395 is an addition).
|
|
40853
|
+
// The pre-flags env gate stays the highest-precedence operator override so a
|
|
40854
|
+
// host already running with AGT_AUTO_RESUME_ENABLED set keeps that value, and
|
|
40855
|
+
// so an operator retains a host-local escape hatch that needs no control-plane
|
|
40856
|
+
// round-trip. Note the host reader accepts a slightly WIDER truthy vocabulary
|
|
40857
|
+
// than coerceEnvValue (it also honours the legacy yes/on/no/off spellings);
|
|
40858
|
+
// both agree on true/1/false/0, and the reader is the authority for this gate.
|
|
40859
|
+
envVar: "AGT_AUTO_RESUME_ENABLED",
|
|
40860
|
+
// An unattended resume is a real availability change — the agent starts
|
|
40861
|
+
// spawning sessions again with no human in the loop — so arming it is a
|
|
40862
|
+
// deliberate, confirmed write (ADR-0022 sensitive-flag confirm).
|
|
40863
|
+
sensitive: true
|
|
40864
|
+
// ENG-8395 AC5: `since` is deliberately UNSET at merge. It must be bisected
|
|
40865
|
+
// from the PUBLISHED agt-cli dist once the artifact carrying the host-side
|
|
40866
|
+
// reader exists, never guessed — auto-resume.ts is host-side, so an
|
|
40867
|
+
// under-`since` host has no consumer for this flag and a guessed value makes
|
|
40868
|
+
// the flip-reach modal promise reach it does not have (the defect caught on
|
|
40869
|
+
// ENG-8344 / PR #4014). Precedent for the bisect method: slack-hot-thread-guard
|
|
40870
|
+
// = 0.28.339, slack-scheduled-channel-guard = 0.28.421. Setting it later is
|
|
40871
|
+
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
40872
|
+
// FLAGS_SCHEMA_VERSION.
|
|
40873
|
+
},
|
|
40844
40874
|
{
|
|
40845
40875
|
key: "memory-extraction",
|
|
40846
40876
|
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.",
|
|
@@ -35119,6 +35119,36 @@ var FLAG_REGISTRY = [
|
|
|
35119
35119
|
// AGT_RESUME_RECONCILER_ENABLED set keeps that value until the env is retired.
|
|
35120
35120
|
envVar: "AGT_RESUME_RECONCILER_ENABLED"
|
|
35121
35121
|
},
|
|
35122
|
+
{
|
|
35123
|
+
key: "auto-resume-enabled",
|
|
35124
|
+
description: "DO NOT ARM YET (ENG-8395): this flag has no `since` set until a follow-up bisects it from the published agt-cli dist, and an unset `since` makes the flip-reach estimate report FULL reach for a reader that is host-side \u2014 it will tell you a flip reached hosts that have no code to honour it. Arm only once that follow-up has landed. Bounded BLIND auto-resume for circuit-breaker pauses (ENG-6088): at most one unattended resume per trip cycle, fired once the trip driver has been quiet for the configured window and only for provisioning-reload trips (the ENG-7577 class gate \u2014 a crash-class trip still needs an operator). Superseded wherever `resume-reconciler` is on: that path proves the dependency recovered instead of assuming it, and the blind timer is its flag-off fallback. Boolean gate; ships dark. ENG-8395 promoted this from a raw host env var because AGT_AUTO_RESUME_ENABLED lives in the host env file, so its grain is per-HOST \u2014 one flip arms every agent that host runs (agt-aws-1 carries 14), which made the canary-then-fleet rollout its own documentation prescribes impossible. As a registry flag it resolves per org/team/host/AGENT, so one agent can genuinely be cut over first. Read host-side by the manager (agt-cli), not centrally.",
|
|
35125
|
+
flagType: "boolean",
|
|
35126
|
+
// Declared safe value is `false` — identical to today's behaviour on a host
|
|
35127
|
+
// that has never set the env var. Fail-safe direction on a flag-DB read
|
|
35128
|
+
// error is "no unattended resume of a paused agent".
|
|
35129
|
+
defaultValue: false,
|
|
35130
|
+
// Migration override (ADR-0022) — KEPT, not swapped (ENG-8395 is an addition).
|
|
35131
|
+
// The pre-flags env gate stays the highest-precedence operator override so a
|
|
35132
|
+
// host already running with AGT_AUTO_RESUME_ENABLED set keeps that value, and
|
|
35133
|
+
// so an operator retains a host-local escape hatch that needs no control-plane
|
|
35134
|
+
// round-trip. Note the host reader accepts a slightly WIDER truthy vocabulary
|
|
35135
|
+
// than coerceEnvValue (it also honours the legacy yes/on/no/off spellings);
|
|
35136
|
+
// both agree on true/1/false/0, and the reader is the authority for this gate.
|
|
35137
|
+
envVar: "AGT_AUTO_RESUME_ENABLED",
|
|
35138
|
+
// An unattended resume is a real availability change — the agent starts
|
|
35139
|
+
// spawning sessions again with no human in the loop — so arming it is a
|
|
35140
|
+
// deliberate, confirmed write (ADR-0022 sensitive-flag confirm).
|
|
35141
|
+
sensitive: true
|
|
35142
|
+
// ENG-8395 AC5: `since` is deliberately UNSET at merge. It must be bisected
|
|
35143
|
+
// from the PUBLISHED agt-cli dist once the artifact carrying the host-side
|
|
35144
|
+
// reader exists, never guessed — auto-resume.ts is host-side, so an
|
|
35145
|
+
// under-`since` host has no consumer for this flag and a guessed value makes
|
|
35146
|
+
// the flip-reach modal promise reach it does not have (the defect caught on
|
|
35147
|
+
// ENG-8344 / PR #4014). Precedent for the bisect method: slack-hot-thread-guard
|
|
35148
|
+
// = 0.28.339, slack-scheduled-channel-guard = 0.28.421. Setting it later is
|
|
35149
|
+
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
35150
|
+
// FLAGS_SCHEMA_VERSION.
|
|
35151
|
+
},
|
|
35122
35152
|
{
|
|
35123
35153
|
key: "memory-extraction",
|
|
35124
35154
|
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.",
|
|
@@ -35445,6 +35445,36 @@ var FLAG_REGISTRY = [
|
|
|
35445
35445
|
// AGT_RESUME_RECONCILER_ENABLED set keeps that value until the env is retired.
|
|
35446
35446
|
envVar: "AGT_RESUME_RECONCILER_ENABLED"
|
|
35447
35447
|
},
|
|
35448
|
+
{
|
|
35449
|
+
key: "auto-resume-enabled",
|
|
35450
|
+
description: "DO NOT ARM YET (ENG-8395): this flag has no `since` set until a follow-up bisects it from the published agt-cli dist, and an unset `since` makes the flip-reach estimate report FULL reach for a reader that is host-side \u2014 it will tell you a flip reached hosts that have no code to honour it. Arm only once that follow-up has landed. Bounded BLIND auto-resume for circuit-breaker pauses (ENG-6088): at most one unattended resume per trip cycle, fired once the trip driver has been quiet for the configured window and only for provisioning-reload trips (the ENG-7577 class gate \u2014 a crash-class trip still needs an operator). Superseded wherever `resume-reconciler` is on: that path proves the dependency recovered instead of assuming it, and the blind timer is its flag-off fallback. Boolean gate; ships dark. ENG-8395 promoted this from a raw host env var because AGT_AUTO_RESUME_ENABLED lives in the host env file, so its grain is per-HOST \u2014 one flip arms every agent that host runs (agt-aws-1 carries 14), which made the canary-then-fleet rollout its own documentation prescribes impossible. As a registry flag it resolves per org/team/host/AGENT, so one agent can genuinely be cut over first. Read host-side by the manager (agt-cli), not centrally.",
|
|
35451
|
+
flagType: "boolean",
|
|
35452
|
+
// Declared safe value is `false` — identical to today's behaviour on a host
|
|
35453
|
+
// that has never set the env var. Fail-safe direction on a flag-DB read
|
|
35454
|
+
// error is "no unattended resume of a paused agent".
|
|
35455
|
+
defaultValue: false,
|
|
35456
|
+
// Migration override (ADR-0022) — KEPT, not swapped (ENG-8395 is an addition).
|
|
35457
|
+
// The pre-flags env gate stays the highest-precedence operator override so a
|
|
35458
|
+
// host already running with AGT_AUTO_RESUME_ENABLED set keeps that value, and
|
|
35459
|
+
// so an operator retains a host-local escape hatch that needs no control-plane
|
|
35460
|
+
// round-trip. Note the host reader accepts a slightly WIDER truthy vocabulary
|
|
35461
|
+
// than coerceEnvValue (it also honours the legacy yes/on/no/off spellings);
|
|
35462
|
+
// both agree on true/1/false/0, and the reader is the authority for this gate.
|
|
35463
|
+
envVar: "AGT_AUTO_RESUME_ENABLED",
|
|
35464
|
+
// An unattended resume is a real availability change — the agent starts
|
|
35465
|
+
// spawning sessions again with no human in the loop — so arming it is a
|
|
35466
|
+
// deliberate, confirmed write (ADR-0022 sensitive-flag confirm).
|
|
35467
|
+
sensitive: true
|
|
35468
|
+
// ENG-8395 AC5: `since` is deliberately UNSET at merge. It must be bisected
|
|
35469
|
+
// from the PUBLISHED agt-cli dist once the artifact carrying the host-side
|
|
35470
|
+
// reader exists, never guessed — auto-resume.ts is host-side, so an
|
|
35471
|
+
// under-`since` host has no consumer for this flag and a guessed value makes
|
|
35472
|
+
// the flip-reach modal promise reach it does not have (the defect caught on
|
|
35473
|
+
// ENG-8344 / PR #4014). Precedent for the bisect method: slack-hot-thread-guard
|
|
35474
|
+
// = 0.28.339, slack-scheduled-channel-guard = 0.28.421. Setting it later is
|
|
35475
|
+
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
35476
|
+
// FLAGS_SCHEMA_VERSION.
|
|
35477
|
+
},
|
|
35448
35478
|
{
|
|
35449
35479
|
key: "memory-extraction",
|
|
35450
35480
|
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-4PRR22KH.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-OMAAP4OU.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-4PRR22KH.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-NRH2AQW6.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|