@integrity-labs/agt-cli 0.28.175 → 0.28.177

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-DHBEAJ6T.js");
103
+ const { resolveClaudeBinary } = await import("./persistent-session-OBWYOJP7.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-LN4ZVG3A.js.map
376
+ //# sourceMappingURL=claude-pair-runtime-SPP3GKYK.js.map
@@ -28,7 +28,7 @@ import {
28
28
  requireHost,
29
29
  safeWriteJsonAtomic,
30
30
  setConfigHash
31
- } from "../chunk-JOSQUNJP.js";
31
+ } from "../chunk-HTDMNULF.js";
32
32
  import {
33
33
  getProjectDir as getProjectDir2,
34
34
  getReadyTasks,
@@ -70,7 +70,7 @@ import {
70
70
  takeZombieDetection,
71
71
  transcriptActivityAgeSeconds,
72
72
  writeEgressAllowlist
73
- } from "../chunk-NZLZICAD.js";
73
+ } from "../chunk-4LMNQ2V7.js";
74
74
  import {
75
75
  CONVERSATION_FAILURE_CATEGORIES,
76
76
  DEFAULT_FRAMEWORK,
@@ -111,7 +111,7 @@ import {
111
111
  resolveChannels,
112
112
  resolveDmTarget,
113
113
  sumTranscriptUsageInWindow
114
- } from "../chunk-ULPUDU4J.js";
114
+ } from "../chunk-ODMNVKDO.js";
115
115
  import {
116
116
  parsePsRows,
117
117
  reapOrphanChannelMcps
@@ -6596,7 +6596,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
6596
6596
  var lastVersionCheckAt = 0;
6597
6597
  var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
6598
6598
  var lastResponsivenessProbeAt = 0;
6599
- var agtCliVersion = true ? "0.28.175" : "dev";
6599
+ var agtCliVersion = true ? "0.28.177" : "dev";
6600
6600
  function resolveBrewPath(execFileSync4) {
6601
6601
  try {
6602
6602
  const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
@@ -7489,7 +7489,7 @@ async function pollCycle() {
7489
7489
  }
7490
7490
  try {
7491
7491
  const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
7492
- const { collectDiagnostics } = await import("../persistent-session-DHBEAJ6T.js");
7492
+ const { collectDiagnostics } = await import("../persistent-session-OBWYOJP7.js");
7493
7493
  const diagCodeNames = [...agentState.persistentSessionAgents];
7494
7494
  const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
7495
7495
  let tailscaleHostname;
@@ -7637,7 +7637,7 @@ async function pollCycle() {
7637
7637
  const {
7638
7638
  collectResponsivenessProbes,
7639
7639
  getResponsivenessIntervalMs
7640
- } = await import("../responsiveness-probe-6XQIUFB7.js");
7640
+ } = await import("../responsiveness-probe-6AKUEVIG.js");
7641
7641
  const probeIntervalMs = getResponsivenessIntervalMs();
7642
7642
  if (now - lastResponsivenessProbeAt > probeIntervalMs) {
7643
7643
  const probeCodeNames = [...agentState.persistentSessionAgents];
@@ -7669,7 +7669,7 @@ async function pollCycle() {
7669
7669
  collectResponsivenessProbes,
7670
7670
  livePendingInboundOldestAgeSeconds,
7671
7671
  parkPendingInbound
7672
- } = await import("../responsiveness-probe-6XQIUFB7.js");
7672
+ } = await import("../responsiveness-probe-6AKUEVIG.js");
7673
7673
  const { getProjectDir: wedgeProjectDir } = await import("../claude-scheduler-FATCLHDM.js");
7674
7674
  const wedgeNow = /* @__PURE__ */ new Date();
7675
7675
  const liveAgents = agentState.persistentSessionAgents;
@@ -10644,7 +10644,7 @@ async function processClaudePairSessions(agents) {
10644
10644
  killPairSession,
10645
10645
  pairTmuxSession,
10646
10646
  finalizeClaudePairOnboarding
10647
- } = await import("../claude-pair-runtime-LN4ZVG3A.js");
10647
+ } = await import("../claude-pair-runtime-SPP3GKYK.js");
10648
10648
  for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
10649
10649
  log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
10650
10650
  const killed = await killPairSession(pairTmuxSession(pairId));
@@ -11416,6 +11416,12 @@ function deployMcpAssets() {
11416
11416
  // (re)starts it with the session, and a bundle update applies on the next
11417
11417
  // natural session restart.
11418
11418
  "augmented-admin.js",
11419
+ // ENG-7023: the per-org self-troubleshoot broker for the system_support
11420
+ // concierge agent, bundled with the CLI (never published to npm). Same
11421
+ // treatment as augmented-admin - NOT a channel, so not in
11422
+ // RESTARTABLE_CHANNEL_FILES; the reaper (re)starts it with the session and a
11423
+ // bundle update applies on the next natural session restart.
11424
+ "augmented-support.js",
11419
11425
  // ENG-6859: the remote OAuth MCP proxy (brand-ninja, granola). NOT in
11420
11426
  // RESTARTABLE_CHANNEL_FILES - it's not a channel; a bundle update applies on
11421
11427
  // the next natural session restart. It re-reads the token from the secrets