style: run oxfmt

This commit is contained in:
Peter Steinberger
2026-01-16 21:11:55 +00:00
parent 168a0f4998
commit d887027e95
7 changed files with 16 additions and 16 deletions

View File

@@ -30,7 +30,11 @@ const fsp = fs.promises;
const skillsLogger = createSubsystemLogger("skills");
const skillCommandDebugOnce = new Set<string>();
function debugSkillCommandOnce(messageKey: string, message: string, meta?: Record<string, unknown>) {
function debugSkillCommandOnce(
messageKey: string,
message: string,
meta?: Record<string, unknown>,
) {
if (skillCommandDebugOnce.has(messageKey)) return;
skillCommandDebugOnce.add(messageKey);
skillsLogger.debug(message, meta);