@integrity-labs/agt-cli 0.28.47 → 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.
@@ -100,7 +100,7 @@ async function spawnPairSession(session) {
100
100
  return { ok: true };
101
101
  } catch {
102
102
  }
103
- const { resolveClaudeBinary } = await import("./persistent-session-Q73X7PPM.js");
103
+ const { resolveClaudeBinary } = await import("./persistent-session-HL2ANGTL.js");
104
104
  const claudeBin = resolveClaudeBinary();
105
105
  const pairEnv = {
106
106
  ...process.env,
@@ -373,4 +373,4 @@ export {
373
373
  startClaudePair,
374
374
  submitClaudePairCode
375
375
  };
376
- //# sourceMappingURL=claude-pair-runtime-QXRSXJ4D.js.map
376
+ //# sourceMappingURL=claude-pair-runtime-SAJMKK2M.js.map
@@ -27,7 +27,7 @@ import {
27
27
  requireHost,
28
28
  safeWriteJsonAtomic,
29
29
  setConfigHash
30
- } from "../chunk-FON5YIFK.js";
30
+ } from "../chunk-UVKKX46F.js";
31
31
  import {
32
32
  getProjectDir as getProjectDir2,
33
33
  getReadyTasks,
@@ -65,7 +65,7 @@ import {
65
65
  takeWatchdogGiveUpCount,
66
66
  takeZombieDetection,
67
67
  transcriptActivityAgeSeconds
68
- } from "../chunk-UVE6VSU3.js";
68
+ } from "../chunk-NCP6GVXS.js";
69
69
  import {
70
70
  FLAGS_SCHEMA_VERSION,
71
71
  FLAG_REGISTRY,
@@ -96,7 +96,7 @@ import {
96
96
  resolveDmTarget,
97
97
  sumTranscriptUsageInWindow,
98
98
  wrapScheduledTaskPrompt
99
- } from "../chunk-ONG7KSRP.js";
99
+ } from "../chunk-MJKGJXKV.js";
100
100
  import {
101
101
  parsePsRows,
102
102
  reapOrphanChannelMcps
@@ -6630,7 +6630,7 @@ var cachedMaintenanceWindow = null;
6630
6630
  var lastVersionCheckAt = 0;
6631
6631
  var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
6632
6632
  var lastResponsivenessProbeAt = 0;
6633
- var agtCliVersion = true ? "0.28.47" : "dev";
6633
+ var agtCliVersion = true ? "0.28.49" : "dev";
6634
6634
  function resolveBrewPath(execFileSync4) {
6635
6635
  try {
6636
6636
  const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
@@ -7247,8 +7247,7 @@ async function runEvalClaude(prompt, model) {
7247
7247
  return stdout;
7248
7248
  }
7249
7249
  function memoryExtractionEnabled() {
7250
- const v = (process.env["AGT_MEMORY_EXTRACTION_ENABLED"] ?? "").trim().toLowerCase();
7251
- return v === "true" || v === "1" || v === "yes";
7250
+ return hostFlagStore().getBoolean("memory-extraction");
7252
7251
  }
7253
7252
  var conversationEvalBackend = null;
7254
7253
  function resolveConversationEvalBackend() {
@@ -7739,7 +7738,7 @@ async function pollCycle() {
7739
7738
  }
7740
7739
  try {
7741
7740
  const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
7742
- const { collectDiagnostics } = await import("../persistent-session-Q73X7PPM.js");
7741
+ const { collectDiagnostics } = await import("../persistent-session-HL2ANGTL.js");
7743
7742
  const diagCodeNames = [...agentState.persistentSessionAgents];
7744
7743
  const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
7745
7744
  let tailscaleHostname;
@@ -7840,7 +7839,7 @@ async function pollCycle() {
7840
7839
  const {
7841
7840
  collectResponsivenessProbes,
7842
7841
  getResponsivenessIntervalMs
7843
- } = await import("../responsiveness-probe-R7WZXP2Y.js");
7842
+ } = await import("../responsiveness-probe-KSY4M6NR.js");
7844
7843
  const probeIntervalMs = getResponsivenessIntervalMs();
7845
7844
  if (now - lastResponsivenessProbeAt > probeIntervalMs) {
7846
7845
  const probeCodeNames = [...agentState.persistentSessionAgents];
@@ -7872,7 +7871,7 @@ async function pollCycle() {
7872
7871
  collectResponsivenessProbes,
7873
7872
  livePendingInboundOldestAgeSeconds,
7874
7873
  parkPendingInbound
7875
- } = await import("../responsiveness-probe-R7WZXP2Y.js");
7874
+ } = await import("../responsiveness-probe-KSY4M6NR.js");
7876
7875
  const { getProjectDir: wedgeProjectDir } = await import("../claude-scheduler-FATCLHDM.js");
7877
7876
  const wedgeNow = /* @__PURE__ */ new Date();
7878
7877
  const liveAgents = agentState.persistentSessionAgents;
@@ -11276,7 +11275,7 @@ async function processClaudePairSessions(agents) {
11276
11275
  killPairSession,
11277
11276
  pairTmuxSession,
11278
11277
  finalizeClaudePairOnboarding
11279
- } = await import("../claude-pair-runtime-QXRSXJ4D.js");
11278
+ } = await import("../claude-pair-runtime-SAJMKK2M.js");
11280
11279
  for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
11281
11280
  log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
11282
11281
  const killed = await killPairSession(pairTmuxSession(pairId));