You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🤖 fix: address static-check failures (lint/format)\n\n- Return Result from title generator (no throws)\n- Update IPC call sites and logs\n- Apply Prettier\n\n_Generated with _
@@ -49,15 +54,11 @@ export async function generateWorkspaceName(
49
54
prompt: `Generate a git-safe branch/workspace name for this development task:\n\n"${message}"\n\nRequirements:\n- Git-safe identifier (e.g., "automatic-title-generation")\n- Lowercase, hyphens only, no spaces\n- Concise (2-5 words) and descriptive of the task`,
50
55
});
51
56
52
-
returnvalidateBranchName(result.object.name);
57
+
returnOk(validateBranchName(result.object.name));
53
58
}catch(error){
54
-
// If error is already a structured SendMessageError, rethrow as-is
0 commit comments