@integrity-labs/agt-cli 0.28.405 → 0.28.406
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-UYBG62IQ.js → chunk-RD7MIR3G.js} +12 -1
- package/dist/{chunk-UYBG62IQ.js.map → chunk-RD7MIR3G.js.map} +1 -1
- package/dist/{chunk-AAWYAPKX.js → chunk-UTFTZ4WD.js} +3 -3
- package/dist/{claude-pair-runtime-AG4PW6FE.js → claude-pair-runtime-W5Z4K7XK.js} +2 -2
- package/dist/lib/manager-worker.js +146 -93
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +11 -0
- package/dist/mcp/origami.js +11 -0
- package/dist/mcp/slack-channel.js +11 -0
- package/dist/mcp/telegram-channel.js +11 -0
- package/dist/{persistent-session-VMKIIW5Y.js → persistent-session-2AC3P5DJ.js} +2 -2
- package/dist/{responsiveness-probe-ZNMY5RVO.js → responsiveness-probe-LGJNUSPU.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-AAWYAPKX.js.map → chunk-UTFTZ4WD.js.map} +0 -0
- /package/dist/{claude-pair-runtime-AG4PW6FE.js.map → claude-pair-runtime-W5Z4K7XK.js.map} +0 -0
- /package/dist/{persistent-session-VMKIIW5Y.js.map → persistent-session-2AC3P5DJ.js.map} +0 -0
- /package/dist/{responsiveness-probe-ZNMY5RVO.js.map → responsiveness-probe-LGJNUSPU.js.map} +0 -0
|
@@ -35229,6 +35229,17 @@ var FLAG_REGISTRY = [
|
|
|
35229
35229
|
// call the flag evaluator) can gate the kanban_move `waiting` option. Also the
|
|
35230
35230
|
// highest-precedence operator override, per ADR-0022.
|
|
35231
35231
|
envVar: "AGT_KANBAN_WAITING_ENABLED"
|
|
35232
|
+
},
|
|
35233
|
+
{
|
|
35234
|
+
key: "scheduled-task-nudge-durable",
|
|
35235
|
+
description: 'Deliver the scheduled-task "work this card" nudge over the durable direct-chat notice rail instead of unverified tmux send-keys (ENG-8068, re-landing ENG-7971). When ON, routeScheduledTaskViaKanban enqueues the nudge via POST /host/scheduled-task/notify (kind:notice, push-and-consumed by the in-session MCP with a per-card consume-time revalidation) and closes the card + run on an enqueue failure, retiring the ENG-6351 orphaned-card gap where an unsubmitted keystroke left a scheduled task silently unrun. When OFF (default) the manager keeps the current tmux send-keys delivery, byte-for-byte as today. This is the kill switch: ENG-7971 was reverted once because the durable rail 500d on a session_id bug (fixed in ENG-8061); flip OFF to fall back to send-keys instantly without a code rollback if the durable path misbehaves. Resolved host-side by the manager via hostFlagStore().getBoolean (the manager evaluates the decision itself, so no spawn-env materialization is needed). Ships dark.',
|
|
35236
|
+
flagType: "boolean",
|
|
35237
|
+
// Declared safe value is `false`: the current, reverted-to send-keys delivery. Turning
|
|
35238
|
+
// it ON activates the durable rail per org/host once operators are confident. `false`
|
|
35239
|
+
// is also the fail-safe direction - a flag-DB read error must never silently switch a
|
|
35240
|
+
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
35241
|
+
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
35242
|
+
defaultValue: false
|
|
35232
35243
|
}
|
|
35233
35244
|
];
|
|
35234
35245
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
package/dist/mcp/origami.js
CHANGED
|
@@ -40845,6 +40845,17 @@ var FLAG_REGISTRY = [
|
|
|
40845
40845
|
// call the flag evaluator) can gate the kanban_move `waiting` option. Also the
|
|
40846
40846
|
// highest-precedence operator override, per ADR-0022.
|
|
40847
40847
|
envVar: "AGT_KANBAN_WAITING_ENABLED"
|
|
40848
|
+
},
|
|
40849
|
+
{
|
|
40850
|
+
key: "scheduled-task-nudge-durable",
|
|
40851
|
+
description: 'Deliver the scheduled-task "work this card" nudge over the durable direct-chat notice rail instead of unverified tmux send-keys (ENG-8068, re-landing ENG-7971). When ON, routeScheduledTaskViaKanban enqueues the nudge via POST /host/scheduled-task/notify (kind:notice, push-and-consumed by the in-session MCP with a per-card consume-time revalidation) and closes the card + run on an enqueue failure, retiring the ENG-6351 orphaned-card gap where an unsubmitted keystroke left a scheduled task silently unrun. When OFF (default) the manager keeps the current tmux send-keys delivery, byte-for-byte as today. This is the kill switch: ENG-7971 was reverted once because the durable rail 500d on a session_id bug (fixed in ENG-8061); flip OFF to fall back to send-keys instantly without a code rollback if the durable path misbehaves. Resolved host-side by the manager via hostFlagStore().getBoolean (the manager evaluates the decision itself, so no spawn-env materialization is needed). Ships dark.',
|
|
40852
|
+
flagType: "boolean",
|
|
40853
|
+
// Declared safe value is `false`: the current, reverted-to send-keys delivery. Turning
|
|
40854
|
+
// it ON activates the durable rail per org/host once operators are confident. `false`
|
|
40855
|
+
// is also the fail-safe direction - a flag-DB read error must never silently switch a
|
|
40856
|
+
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
40857
|
+
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
40858
|
+
defaultValue: false
|
|
40848
40859
|
}
|
|
40849
40860
|
];
|
|
40850
40861
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -34764,6 +34764,17 @@ var FLAG_REGISTRY = [
|
|
|
34764
34764
|
// call the flag evaluator) can gate the kanban_move `waiting` option. Also the
|
|
34765
34765
|
// highest-precedence operator override, per ADR-0022.
|
|
34766
34766
|
envVar: "AGT_KANBAN_WAITING_ENABLED"
|
|
34767
|
+
},
|
|
34768
|
+
{
|
|
34769
|
+
key: "scheduled-task-nudge-durable",
|
|
34770
|
+
description: 'Deliver the scheduled-task "work this card" nudge over the durable direct-chat notice rail instead of unverified tmux send-keys (ENG-8068, re-landing ENG-7971). When ON, routeScheduledTaskViaKanban enqueues the nudge via POST /host/scheduled-task/notify (kind:notice, push-and-consumed by the in-session MCP with a per-card consume-time revalidation) and closes the card + run on an enqueue failure, retiring the ENG-6351 orphaned-card gap where an unsubmitted keystroke left a scheduled task silently unrun. When OFF (default) the manager keeps the current tmux send-keys delivery, byte-for-byte as today. This is the kill switch: ENG-7971 was reverted once because the durable rail 500d on a session_id bug (fixed in ENG-8061); flip OFF to fall back to send-keys instantly without a code rollback if the durable path misbehaves. Resolved host-side by the manager via hostFlagStore().getBoolean (the manager evaluates the decision itself, so no spawn-env materialization is needed). Ships dark.',
|
|
34771
|
+
flagType: "boolean",
|
|
34772
|
+
// Declared safe value is `false`: the current, reverted-to send-keys delivery. Turning
|
|
34773
|
+
// it ON activates the durable rail per org/host once operators are confident. `false`
|
|
34774
|
+
// is also the fail-safe direction - a flag-DB read error must never silently switch a
|
|
34775
|
+
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
34776
|
+
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
34777
|
+
defaultValue: false
|
|
34767
34778
|
}
|
|
34768
34779
|
];
|
|
34769
34780
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -35114,6 +35114,17 @@ var FLAG_REGISTRY = [
|
|
|
35114
35114
|
// call the flag evaluator) can gate the kanban_move `waiting` option. Also the
|
|
35115
35115
|
// highest-precedence operator override, per ADR-0022.
|
|
35116
35116
|
envVar: "AGT_KANBAN_WAITING_ENABLED"
|
|
35117
|
+
},
|
|
35118
|
+
{
|
|
35119
|
+
key: "scheduled-task-nudge-durable",
|
|
35120
|
+
description: 'Deliver the scheduled-task "work this card" nudge over the durable direct-chat notice rail instead of unverified tmux send-keys (ENG-8068, re-landing ENG-7971). When ON, routeScheduledTaskViaKanban enqueues the nudge via POST /host/scheduled-task/notify (kind:notice, push-and-consumed by the in-session MCP with a per-card consume-time revalidation) and closes the card + run on an enqueue failure, retiring the ENG-6351 orphaned-card gap where an unsubmitted keystroke left a scheduled task silently unrun. When OFF (default) the manager keeps the current tmux send-keys delivery, byte-for-byte as today. This is the kill switch: ENG-7971 was reverted once because the durable rail 500d on a session_id bug (fixed in ENG-8061); flip OFF to fall back to send-keys instantly without a code rollback if the durable path misbehaves. Resolved host-side by the manager via hostFlagStore().getBoolean (the manager evaluates the decision itself, so no spawn-env materialization is needed). Ships dark.',
|
|
35121
|
+
flagType: "boolean",
|
|
35122
|
+
// Declared safe value is `false`: the current, reverted-to send-keys delivery. Turning
|
|
35123
|
+
// it ON activates the durable rail per org/host once operators are confident. `false`
|
|
35124
|
+
// is also the fail-safe direction - a flag-DB read error must never silently switch a
|
|
35125
|
+
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
35126
|
+
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
35127
|
+
defaultValue: false
|
|
35117
35128
|
}
|
|
35118
35129
|
];
|
|
35119
35130
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-RD7MIR3G.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-2AC3P5DJ.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-RD7MIR3G.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -437,4 +437,4 @@ export {
|
|
|
437
437
|
readAndResetSlackReplyBindingClassifications,
|
|
438
438
|
readAndResetSlackReplyTargetClassifications
|
|
439
439
|
};
|
|
440
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
440
|
+
//# sourceMappingURL=responsiveness-probe-LGJNUSPU.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|