fix: repair CI formatting + launchd test

This commit is contained in:
Peter Steinberger
2026-01-16 03:52:47 +00:00
parent f6e619f078
commit 01c8d099ad
4 changed files with 12 additions and 16 deletions

View File

@@ -1,10 +1,7 @@
import crypto from "node:crypto";
import { buildWorkspaceSkillSnapshot } from "../../agents/skills.js";
import {
ensureSkillsWatcher,
getSkillsSnapshotVersion,
} from "../../agents/skills/refresh.js";
import { ensureSkillsWatcher, getSkillsSnapshotVersion } from "../../agents/skills/refresh.js";
import type { ClawdbotConfig } from "../../config/config.js";
import { type SessionEntry, updateSessionStore } from "../../config/sessions.js";
import { buildChannelSummary } from "../../infra/channel-summary.js";
@@ -137,7 +134,7 @@ export async function ensureSkillSnapshot(params: {
eligibility: { remote: remoteEligibility },
snapshotVersion,
})
: nextEntry?.skillsSnapshot ??
: (nextEntry?.skillsSnapshot ??
(isFirstTurnInSession
? undefined
: buildWorkspaceSkillSnapshot(workspaceDir, {
@@ -145,7 +142,7 @@ export async function ensureSkillSnapshot(params: {
skillFilter,
eligibility: { remote: remoteEligibility },
snapshotVersion,
}));
})));
if (
skillsSnapshot &&
sessionStore &&