@integrity-labs/agt-cli 0.28.509 → 0.28.510
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-7U63M5R6.js → chunk-7DZNVMMX.js} +17 -1
- package/dist/{chunk-7U63M5R6.js.map → chunk-7DZNVMMX.js.map} +1 -1
- package/dist/{chunk-S5X4XFAC.js → chunk-EQW3EHDQ.js} +3 -3
- package/dist/{claude-pair-runtime-5CDR4XPI.js → claude-pair-runtime-4CYSUXLF.js} +2 -2
- package/dist/lib/manager-worker.js +23 -11
- 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-4VF7V4HB.js} +2 -2
- package/dist/{responsiveness-probe-KR73VA2S.js → responsiveness-probe-PWS3FIRF.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-S5X4XFAC.js.map → chunk-EQW3EHDQ.js.map} +0 -0
- /package/dist/{claude-pair-runtime-5CDR4XPI.js.map → claude-pair-runtime-4CYSUXLF.js.map} +0 -0
- /package/dist/{persistent-session-BDNW4K6M.js.map → persistent-session-4VF7V4HB.js.map} +0 -0
- /package/dist/{responsiveness-probe-KR73VA2S.js.map → responsiveness-probe-PWS3FIRF.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-EQW3EHDQ.js";
|
|
44
44
|
import {
|
|
45
45
|
AnchorSessionClient,
|
|
46
46
|
CHANNEL_REGISTRY,
|
|
@@ -71,7 +71,7 @@ import {
|
|
|
71
71
|
requiredMcpWildcard,
|
|
72
72
|
resolveChannels,
|
|
73
73
|
serializeManifestForSlackCli
|
|
74
|
-
} from "../chunk-
|
|
74
|
+
} from "../chunk-7DZNVMMX.js";
|
|
75
75
|
import "../chunk-XWVM4KPK.js";
|
|
76
76
|
|
|
77
77
|
// src/bin/agt.ts
|
|
@@ -4830,7 +4830,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4830
4830
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4831
4831
|
import chalk18 from "chalk";
|
|
4832
4832
|
import ora16 from "ora";
|
|
4833
|
-
var cliVersion = true ? "0.28.
|
|
4833
|
+
var cliVersion = true ? "0.28.510" : "dev";
|
|
4834
4834
|
async function fetchLatestVersion() {
|
|
4835
4835
|
const host2 = getHost();
|
|
4836
4836
|
if (!host2) return null;
|
|
@@ -6002,7 +6002,7 @@ function handleError(err) {
|
|
|
6002
6002
|
}
|
|
6003
6003
|
|
|
6004
6004
|
// src/bin/agt.ts
|
|
6005
|
-
var cliVersion2 = true ? "0.28.
|
|
6005
|
+
var cliVersion2 = true ? "0.28.510" : "dev";
|
|
6006
6006
|
var program = new Command();
|
|
6007
6007
|
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");
|
|
6008
6008
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -9864,6 +9864,22 @@ var FLAG_REGISTRY = [
|
|
|
9864
9864
|
// safe: `since` is excluded from projectDefinition, so it does not roll
|
|
9865
9865
|
// FLAGS_SCHEMA_VERSION.
|
|
9866
9866
|
},
|
|
9867
|
+
{
|
|
9868
|
+
key: "agt-version-drift-alarm",
|
|
9869
|
+
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.",
|
|
9870
|
+
flagType: "boolean",
|
|
9871
|
+
// Declared safe value is `false`. Fail-safe direction for a NEW alerting
|
|
9872
|
+
// cron is silence: ~21 hosts with no prior drift signal means the first
|
|
9873
|
+
// armed pass could open an alert for every host that is behind at once.
|
|
9874
|
+
// The cron also carries a bootstrap floor (agent-stall-monitor.ts's
|
|
9875
|
+
// precedent) so arming it does not retroactively page for drift that
|
|
9876
|
+
// started before the monitor existed.
|
|
9877
|
+
defaultValue: false,
|
|
9878
|
+
// Arming this makes a previously-invisible backlog visible all at once, in
|
|
9879
|
+
// the same shape ENG-8204's never-spawned-session-metric warned about - so
|
|
9880
|
+
// the flip is a deliberate, confirmed one (ADR-0022 sensitive-flag confirm).
|
|
9881
|
+
sensitive: true
|
|
9882
|
+
},
|
|
9867
9883
|
{
|
|
9868
9884
|
key: "memory-extraction",
|
|
9869
9885
|
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.",
|
|
@@ -14923,4 +14939,4 @@ export {
|
|
|
14923
14939
|
stopAllSessionsAndWait,
|
|
14924
14940
|
getProjectDir
|
|
14925
14941
|
};
|
|
14926
|
-
//# sourceMappingURL=chunk-
|
|
14942
|
+
//# sourceMappingURL=chunk-7DZNVMMX.js.map
|