@integrity-labs/agt-cli 0.28.48 → 0.28.49
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-5CO27R3F.js → chunk-MJKGJXKV.js} +15 -1
- package/dist/chunk-MJKGJXKV.js.map +1 -0
- package/dist/{chunk-M5MBPE7H.js → chunk-NCP6GVXS.js} +2 -2
- package/dist/{chunk-A5V5GSWV.js → chunk-UVKKX46F.js} +3 -3
- package/dist/{claude-pair-runtime-F5WFIGUJ.js → claude-pair-runtime-SAJMKK2M.js} +2 -2
- package/dist/lib/manager-worker.js +9 -10
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-PZUQMDGX.js → persistent-session-HL2ANGTL.js} +3 -3
- package/dist/{responsiveness-probe-5TG3QMB2.js → responsiveness-probe-KSY4M6NR.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-5CO27R3F.js.map +0 -1
- /package/dist/{chunk-M5MBPE7H.js.map → chunk-NCP6GVXS.js.map} +0 -0
- /package/dist/{chunk-A5V5GSWV.js.map → chunk-UVKKX46F.js.map} +0 -0
- /package/dist/{claude-pair-runtime-F5WFIGUJ.js.map → claude-pair-runtime-SAJMKK2M.js.map} +0 -0
- /package/dist/{persistent-session-PZUQMDGX.js.map → persistent-session-HL2ANGTL.js.map} +0 -0
- /package/dist/{responsiveness-probe-5TG3QMB2.js.map → responsiveness-probe-KSY4M6NR.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
success,
|
|
38
38
|
table,
|
|
39
39
|
warn
|
|
40
|
-
} from "../chunk-
|
|
40
|
+
} from "../chunk-UVKKX46F.js";
|
|
41
41
|
import {
|
|
42
42
|
CHANNEL_REGISTRY,
|
|
43
43
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
renderTemplate,
|
|
65
65
|
resolveChannels,
|
|
66
66
|
serializeManifestForSlackCli
|
|
67
|
-
} from "../chunk-
|
|
67
|
+
} from "../chunk-MJKGJXKV.js";
|
|
68
68
|
|
|
69
69
|
// src/bin/agt.ts
|
|
70
70
|
import { join as join22 } from "path";
|
|
@@ -4777,7 +4777,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4777
4777
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4778
4778
|
import chalk18 from "chalk";
|
|
4779
4779
|
import ora16 from "ora";
|
|
4780
|
-
var cliVersion = true ? "0.28.
|
|
4780
|
+
var cliVersion = true ? "0.28.49" : "dev";
|
|
4781
4781
|
async function fetchLatestVersion() {
|
|
4782
4782
|
const host2 = getHost();
|
|
4783
4783
|
if (!host2) return null;
|
|
@@ -5787,7 +5787,7 @@ function handleError(err) {
|
|
|
5787
5787
|
}
|
|
5788
5788
|
|
|
5789
5789
|
// src/bin/agt.ts
|
|
5790
|
-
var cliVersion2 = true ? "0.28.
|
|
5790
|
+
var cliVersion2 = true ? "0.28.49" : "dev";
|
|
5791
5791
|
var program = new Command();
|
|
5792
5792
|
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");
|
|
5793
5793
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -1020,6 +1020,20 @@ var FLAG_REGISTRY = [
|
|
|
1020
1020
|
// AGT_RESUME_RECONCILER_ENABLED set keeps that value until the env is retired.
|
|
1021
1021
|
envVar: "AGT_RESUME_RECONCILER_ENABLED"
|
|
1022
1022
|
},
|
|
1023
|
+
{
|
|
1024
|
+
key: "memory-extraction",
|
|
1025
|
+
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.",
|
|
1026
|
+
flagType: "boolean",
|
|
1027
|
+
// Declared safe value is `false` (no extraction). Fail-safe direction: a
|
|
1028
|
+
// flag-DB read error must never start sending candidate memories across the
|
|
1029
|
+
// host→control-plane boundary on its own. Flip on per-host for the canary,
|
|
1030
|
+
// then fleet-wide from the admin Feature Flags page.
|
|
1031
|
+
defaultValue: false,
|
|
1032
|
+
// Migration override (ADR-0022): the pre-flags env gate stays the
|
|
1033
|
+
// highest-precedence operator override so a host already running with
|
|
1034
|
+
// AGT_MEMORY_EXTRACTION_ENABLED set keeps that value until the env is retired.
|
|
1035
|
+
envVar: "AGT_MEMORY_EXTRACTION_ENABLED"
|
|
1036
|
+
},
|
|
1023
1037
|
{
|
|
1024
1038
|
key: "channel-quarantine-mode",
|
|
1025
1039
|
description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
|
|
@@ -5456,4 +5470,4 @@ export {
|
|
|
5456
5470
|
parseEnvIntegrations,
|
|
5457
5471
|
probeMcpEnvSubstitution
|
|
5458
5472
|
};
|
|
5459
|
-
//# sourceMappingURL=chunk-
|
|
5473
|
+
//# sourceMappingURL=chunk-MJKGJXKV.js.map
|