@integrity-labs/agt-cli 0.28.404 → 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-V5CRVBVC.js → chunk-RD7MIR3G.js} +12 -1
- package/dist/{chunk-V5CRVBVC.js.map → chunk-RD7MIR3G.js.map} +1 -1
- package/dist/{chunk-SW3FOBHR.js → chunk-UTFTZ4WD.js} +30 -7
- package/dist/{chunk-SW3FOBHR.js.map → chunk-UTFTZ4WD.js.map} +1 -1
- package/dist/{claude-pair-runtime-HDSV7CKE.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 +63 -3
- package/dist/mcp/origami.js +11 -0
- package/dist/mcp/slack-channel.js +70 -10
- package/dist/mcp/telegram-channel.js +68 -8
- package/dist/{persistent-session-GRCJPRH5.js → persistent-session-2AC3P5DJ.js} +2 -2
- package/dist/{responsiveness-probe-DNM5APN5.js → responsiveness-probe-LGJNUSPU.js} +2 -2
- package/package.json +1 -1
- /package/dist/{claude-pair-runtime-HDSV7CKE.js.map → claude-pair-runtime-W5Z4K7XK.js.map} +0 -0
- /package/dist/{persistent-session-GRCJPRH5.js.map → persistent-session-2AC3P5DJ.js.map} +0 -0
- /package/dist/{responsiveness-probe-DNM5APN5.js.map → responsiveness-probe-LGJNUSPU.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
success,
|
|
41
41
|
table,
|
|
42
42
|
warn
|
|
43
|
-
} from "../chunk-
|
|
43
|
+
} from "../chunk-UTFTZ4WD.js";
|
|
44
44
|
import {
|
|
45
45
|
AnchorSessionClient,
|
|
46
46
|
CHANNEL_REGISTRY,
|
|
@@ -70,7 +70,7 @@ import {
|
|
|
70
70
|
renderTemplate,
|
|
71
71
|
resolveChannels,
|
|
72
72
|
serializeManifestForSlackCli
|
|
73
|
-
} from "../chunk-
|
|
73
|
+
} from "../chunk-RD7MIR3G.js";
|
|
74
74
|
import "../chunk-XWVM4KPK.js";
|
|
75
75
|
|
|
76
76
|
// src/bin/agt.ts
|
|
@@ -4829,7 +4829,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4829
4829
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4830
4830
|
import chalk18 from "chalk";
|
|
4831
4831
|
import ora16 from "ora";
|
|
4832
|
-
var cliVersion = true ? "0.28.
|
|
4832
|
+
var cliVersion = true ? "0.28.406" : "dev";
|
|
4833
4833
|
async function fetchLatestVersion() {
|
|
4834
4834
|
const host2 = getHost();
|
|
4835
4835
|
if (!host2) return null;
|
|
@@ -6001,7 +6001,7 @@ function handleError(err) {
|
|
|
6001
6001
|
}
|
|
6002
6002
|
|
|
6003
6003
|
// src/bin/agt.ts
|
|
6004
|
-
var cliVersion2 = true ? "0.28.
|
|
6004
|
+
var cliVersion2 = true ? "0.28.406" : "dev";
|
|
6005
6005
|
var program = new Command();
|
|
6006
6006
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
6007
6007
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -8609,6 +8609,17 @@ var FLAG_REGISTRY = [
|
|
|
8609
8609
|
// call the flag evaluator) can gate the kanban_move `waiting` option. Also the
|
|
8610
8610
|
// highest-precedence operator override, per ADR-0022.
|
|
8611
8611
|
envVar: "AGT_KANBAN_WAITING_ENABLED"
|
|
8612
|
+
},
|
|
8613
|
+
{
|
|
8614
|
+
key: "scheduled-task-nudge-durable",
|
|
8615
|
+
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.',
|
|
8616
|
+
flagType: "boolean",
|
|
8617
|
+
// Declared safe value is `false`: the current, reverted-to send-keys delivery. Turning
|
|
8618
|
+
// it ON activates the durable rail per org/host once operators are confident. `false`
|
|
8619
|
+
// is also the fail-safe direction - a flag-DB read error must never silently switch a
|
|
8620
|
+
// fleet onto the rail that broke prod twice. Net-new gate, so registry-only (ADR-0022);
|
|
8621
|
+
// consumed by the manager's own logic, not an in-container MCP, so no env materialization.
|
|
8622
|
+
defaultValue: false
|
|
8612
8623
|
}
|
|
8613
8624
|
];
|
|
8614
8625
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -12462,4 +12473,4 @@ export {
|
|
|
12462
12473
|
stopAllSessionsAndWait,
|
|
12463
12474
|
getProjectDir
|
|
12464
12475
|
};
|
|
12465
|
-
//# sourceMappingURL=chunk-
|
|
12476
|
+
//# sourceMappingURL=chunk-RD7MIR3G.js.map
|