@integrity-labs/agt-cli 0.28.407 → 0.28.409
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-5YCE2JNY.js → chunk-QEWIZCQC.js} +23 -3
- package/dist/{chunk-5YCE2JNY.js.map → chunk-QEWIZCQC.js.map} +1 -1
- package/dist/{chunk-RD7MIR3G.js → chunk-YLLK4G3B.js} +31 -2
- package/dist/{chunk-RD7MIR3G.js.map → chunk-YLLK4G3B.js.map} +1 -1
- package/dist/{claude-pair-runtime-W5Z4K7XK.js → claude-pair-runtime-XGPENQB7.js} +2 -2
- package/dist/lib/manager-worker.js +69 -64
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +9 -0
- package/dist/mcp/origami.js +9 -0
- package/dist/mcp/slack-channel.js +9 -0
- package/dist/mcp/telegram-channel.js +9 -0
- package/dist/{persistent-session-2AC3P5DJ.js → persistent-session-W5QSIM7F.js} +2 -2
- package/dist/{responsiveness-probe-LGJNUSPU.js → responsiveness-probe-B7XCQQN4.js} +2 -2
- package/package.json +1 -1
- /package/dist/{claude-pair-runtime-W5Z4K7XK.js.map → claude-pair-runtime-XGPENQB7.js.map} +0 -0
- /package/dist/{persistent-session-2AC3P5DJ.js.map → persistent-session-W5QSIM7F.js.map} +0 -0
- /package/dist/{responsiveness-probe-LGJNUSPU.js.map → responsiveness-probe-B7XCQQN4.js.map} +0 -0
|
@@ -35240,6 +35240,15 @@ var FLAG_REGISTRY = [
|
|
|
35240
35240
|
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
35241
35241
|
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
35242
35242
|
defaultValue: false
|
|
35243
|
+
},
|
|
35244
|
+
{
|
|
35245
|
+
key: "scheduled-task-confirmation-card",
|
|
35246
|
+
description: `Post the \u{1F44D}/\u{1F44E} "Task complete?" kanban confirmation card for completed scheduled_task runs (ENG-4576 / ENG-6048). OFF (default) kills these cards fleet-wide: ENG-8072 found they mis-thread onto the run's captured slack_delivery, which in the persistent-session model is frequently a conversational reply rather than the task's own output - so a routine cron's confirmation card lands in an unrelated human thread (e.g. a half-hourly reconciliation card posted into a "you're back online" DM), and a clean cron emits a human \u{1F44D}/\u{1F44E} prompt on every tick regardless. The card was net-negative, so it is disabled by default. Turn it ON per org to restore scheduled-task ratings for a customer who wants them (e.g. a daily digest delivered to a channel). Evaluated per-org in the API (POST /host/runs/finish + the manager rating-prompt route) via getEvaluatedFlags(); the decision is passed into postScheduledTaskKanbanConfirmation. API-only gate - no host env materialization. Ships dark (cards off).`,
|
|
35247
|
+
flagType: "boolean",
|
|
35248
|
+
// Declared safe value is `false`: cards suppressed. `false` is also the fail-closed
|
|
35249
|
+
// direction - a flag-DB read error must not resurrect the mis-threading/noise the kill
|
|
35250
|
+
// fixes. Net-new gate, registry-only (ADR-0022); API-evaluated, no env materialization.
|
|
35251
|
+
defaultValue: false
|
|
35243
35252
|
}
|
|
35244
35253
|
];
|
|
35245
35254
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
package/dist/mcp/origami.js
CHANGED
|
@@ -40856,6 +40856,15 @@ var FLAG_REGISTRY = [
|
|
|
40856
40856
|
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
40857
40857
|
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
40858
40858
|
defaultValue: false
|
|
40859
|
+
},
|
|
40860
|
+
{
|
|
40861
|
+
key: "scheduled-task-confirmation-card",
|
|
40862
|
+
description: `Post the \u{1F44D}/\u{1F44E} "Task complete?" kanban confirmation card for completed scheduled_task runs (ENG-4576 / ENG-6048). OFF (default) kills these cards fleet-wide: ENG-8072 found they mis-thread onto the run's captured slack_delivery, which in the persistent-session model is frequently a conversational reply rather than the task's own output - so a routine cron's confirmation card lands in an unrelated human thread (e.g. a half-hourly reconciliation card posted into a "you're back online" DM), and a clean cron emits a human \u{1F44D}/\u{1F44E} prompt on every tick regardless. The card was net-negative, so it is disabled by default. Turn it ON per org to restore scheduled-task ratings for a customer who wants them (e.g. a daily digest delivered to a channel). Evaluated per-org in the API (POST /host/runs/finish + the manager rating-prompt route) via getEvaluatedFlags(); the decision is passed into postScheduledTaskKanbanConfirmation. API-only gate - no host env materialization. Ships dark (cards off).`,
|
|
40863
|
+
flagType: "boolean",
|
|
40864
|
+
// Declared safe value is `false`: cards suppressed. `false` is also the fail-closed
|
|
40865
|
+
// direction - a flag-DB read error must not resurrect the mis-threading/noise the kill
|
|
40866
|
+
// fixes. Net-new gate, registry-only (ADR-0022); API-evaluated, no env materialization.
|
|
40867
|
+
defaultValue: false
|
|
40859
40868
|
}
|
|
40860
40869
|
];
|
|
40861
40870
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -34775,6 +34775,15 @@ var FLAG_REGISTRY = [
|
|
|
34775
34775
|
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
34776
34776
|
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
34777
34777
|
defaultValue: false
|
|
34778
|
+
},
|
|
34779
|
+
{
|
|
34780
|
+
key: "scheduled-task-confirmation-card",
|
|
34781
|
+
description: `Post the \u{1F44D}/\u{1F44E} "Task complete?" kanban confirmation card for completed scheduled_task runs (ENG-4576 / ENG-6048). OFF (default) kills these cards fleet-wide: ENG-8072 found they mis-thread onto the run's captured slack_delivery, which in the persistent-session model is frequently a conversational reply rather than the task's own output - so a routine cron's confirmation card lands in an unrelated human thread (e.g. a half-hourly reconciliation card posted into a "you're back online" DM), and a clean cron emits a human \u{1F44D}/\u{1F44E} prompt on every tick regardless. The card was net-negative, so it is disabled by default. Turn it ON per org to restore scheduled-task ratings for a customer who wants them (e.g. a daily digest delivered to a channel). Evaluated per-org in the API (POST /host/runs/finish + the manager rating-prompt route) via getEvaluatedFlags(); the decision is passed into postScheduledTaskKanbanConfirmation. API-only gate - no host env materialization. Ships dark (cards off).`,
|
|
34782
|
+
flagType: "boolean",
|
|
34783
|
+
// Declared safe value is `false`: cards suppressed. `false` is also the fail-closed
|
|
34784
|
+
// direction - a flag-DB read error must not resurrect the mis-threading/noise the kill
|
|
34785
|
+
// fixes. Net-new gate, registry-only (ADR-0022); API-evaluated, no env materialization.
|
|
34786
|
+
defaultValue: false
|
|
34778
34787
|
}
|
|
34779
34788
|
];
|
|
34780
34789
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -35125,6 +35125,15 @@ var FLAG_REGISTRY = [
|
|
|
35125
35125
|
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
35126
35126
|
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
35127
35127
|
defaultValue: false
|
|
35128
|
+
},
|
|
35129
|
+
{
|
|
35130
|
+
key: "scheduled-task-confirmation-card",
|
|
35131
|
+
description: `Post the \u{1F44D}/\u{1F44E} "Task complete?" kanban confirmation card for completed scheduled_task runs (ENG-4576 / ENG-6048). OFF (default) kills these cards fleet-wide: ENG-8072 found they mis-thread onto the run's captured slack_delivery, which in the persistent-session model is frequently a conversational reply rather than the task's own output - so a routine cron's confirmation card lands in an unrelated human thread (e.g. a half-hourly reconciliation card posted into a "you're back online" DM), and a clean cron emits a human \u{1F44D}/\u{1F44E} prompt on every tick regardless. The card was net-negative, so it is disabled by default. Turn it ON per org to restore scheduled-task ratings for a customer who wants them (e.g. a daily digest delivered to a channel). Evaluated per-org in the API (POST /host/runs/finish + the manager rating-prompt route) via getEvaluatedFlags(); the decision is passed into postScheduledTaskKanbanConfirmation. API-only gate - no host env materialization. Ships dark (cards off).`,
|
|
35132
|
+
flagType: "boolean",
|
|
35133
|
+
// Declared safe value is `false`: cards suppressed. `false` is also the fail-closed
|
|
35134
|
+
// direction - a flag-DB read error must not resurrect the mis-threading/noise the kill
|
|
35135
|
+
// fixes. Net-new gate, registry-only (ADR-0022); API-evaluated, no env materialization.
|
|
35136
|
+
defaultValue: false
|
|
35128
35137
|
}
|
|
35129
35138
|
];
|
|
35130
35139
|
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-YLLK4G3B.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-W5QSIM7F.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-YLLK4G3B.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-B7XCQQN4.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|