CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | /**
* Mechanical auto-repair — Tier 1 of the auto-repair stack.
*
* Most CI failures are NOT logic bugs. They're mechanical: a lockfile
* drifted because someone forgot to commit it, formatting got out of
* sync, imports are ordered wrong. None of these need an AI call to
* fix — running the right deterministic command produces the patch.
*
* This module is consulted FIRST. If a mechanical fix lands, we save
* the cost + latency of a Claude round-trip. If not, the caller falls
* through to ai-powered repairGateFailure() in auto-repair.ts.
*
* Every function returns {attempted, success, filesChanged, summary,
* commitSha?} matching auto-repair.ts shape so callers can swap in/out
* uniformly.
*
* Safety: each repair runs in a temporary worktree so the bare repo
* stays pristine. Commits are signed "GlueCron AI [mechanical]" so
* the audit trail distinguishes them from Tier-2 AI patches.
*/
import { spawn } from "bun";
import { join } from "path";
import { getRepoPath } from "../git/repository";
export interface MechanicalRepairResult {
attempted: boolean;
success: boolean;
filesChanged: string[];
summary: string;
commitSha?: string;
error?: string;
}
/**
* What kind of failure are we dealing with? Cheap heuristic match on
* failure text before deciding which mechanical repair (if any) to try.
* Returns null if no mechanical pattern matches.
*/
export function classifyFailure(
failureText: string,
): "lockfile" | "formatting" | "imports" | null {
const t = failureText.toLowerCase();
// Lockfile drift signals
if (
t.includes("lockfile is out of sync") ||
t.includes("lockfile mismatch") ||
t.includes("frozen lockfile failed") ||
t.includes("frozen-lockfile") ||
t.includes("package-lock.json is not in sync") ||
t.includes("bun.lock") &&
(t.includes("outdated") || t.includes("mismatch"))
) {
return "lockfile";
}
// Formatting signals (Prettier / Biome / Bun fmt)
if (
t.includes("would be reformatted") ||
t.includes("style/formatting") ||
t.includes("prettier") ||
t.includes("formatting check failed") ||
/\bbiome\b.*\bformat\b/.test(t) ||
t.includes("bun fmt")
) {
return "formatting";
}
// Import-order signals (eslint-plugin-import, biome organize-imports)
if (
t.includes("imports are not sorted") ||
t.includes("organize-imports") ||
t.includes("import/order") ||
t.includes("unused-imports")
) {
return "imports";
}
return null;
}
/**
* Attempt a mechanical repair based on the failure classification.
* Returns {success: false, attempted: false} if no mechanical handler
* matches — caller should fall through to AI repair.
*/
export async function tryMechanicalRepair(
owner: string,
repo: string,
branch: string,
failureText: string,
): Promise<MechanicalRepairResult> {
const kind = classifyFailure(failureText);
if (!kind) {
return {
attempted: false,
success: false,
filesChanged: [],
summary: "no mechanical pattern matched",
};
}
const repoDir = getRepoPath(owner, repo);
const wt = await createWorktree(repoDir, branch);
if (!wt.ok) {
return {
attempted: true,
success: false,
filesChanged: [],
summary: `worktree failed: ${wt.error}`,
error: wt.error,
};
}
try {
let result: MechanicalRepairResult;
switch (kind) {
case "lockfile":
result = await repairLockfile(wt.path);
break;
case "formatting":
result = await repairFormatting(wt.path);
break;
case "imports":
result = await repairImports(wt.path);
break;
}
if (!result.success || result.filesChanged.length === 0) {
return result;
}
const sha = await commitChanges(
repoDir,
wt.path,
branch,
result.filesChanged,
`fix(${kind}): mechanical auto-repair\n\n${result.summary}\n\n[auto-repair by GlueCron AI / mechanical tier]`,
);
return { ...result, commitSha: sha ?? undefined };
} finally {
await cleanupWorktree(repoDir, wt.path);
}
}
// ─────────────────────────────────────────────────────────────────────────
// Individual repair handlers
// ─────────────────────────────────────────────────────────────────────────
async function repairLockfile(
worktreePath: string,
): Promise<MechanicalRepairResult> {
// Try bun first (this is a Bun repo)
const hasBunLock = await fileExists(join(worktreePath, "bun.lock"));
const hasPackageLock = await fileExists(join(worktreePath, "package-lock.json"));
const hasYarnLock = await fileExists(join(worktreePath, "yarn.lock"));
const hasPnpmLock = await fileExists(join(worktreePath, "pnpm-lock.yaml"));
if (!hasBunLock && !hasPackageLock && !hasYarnLock && !hasPnpmLock) {
return {
attempted: true,
success: false,
filesChanged: [],
summary: "no lockfile detected — nothing to regenerate",
};
}
let cmd: string[];
let lockfileName: string;
if (hasBunLock) {
cmd = ["bun", "install", "--lockfile-only"];
lockfileName = "bun.lock";
} else if (hasPackageLock) {
cmd = ["npm", "install", "--package-lock-only", "--no-audit", "--no-fund"];
lockfileName = "package-lock.json";
} else if (hasYarnLock) {
cmd = ["yarn", "install", "--mode", "update-lockfile"];
lockfileName = "yarn.lock";
} else {
cmd = ["pnpm", "install", "--lockfile-only"];
lockfileName = "pnpm-lock.yaml";
}
const { code, stderr } = await runCmd(cmd, worktreePath, 120_000);
if (code !== 0) {
return {
attempted: true,
success: false,
filesChanged: [],
summary: `lockfile regeneration failed (exit ${code})`,
error: stderr.slice(0, 400),
};
}
const changed = await dirtyFiles(worktreePath);
return {
attempted: true,
success: changed.length > 0,
filesChanged: changed,
summary:
changed.length > 0
? `regenerated ${lockfileName}`
: `lockfile already in sync`,
};
}
async function repairFormatting(
worktreePath: string,
): Promise<MechanicalRepairResult> {
// Try formatters in priority order: biome (fastest, growing adoption),
// prettier (industry standard), bun fmt (built-in fallback).
const tools: Array<{ check: string[]; cmd: string[]; name: string }> = [
{
check: ["bunx", "--bun", "biome", "--version"],
cmd: ["bunx", "--bun", "biome", "format", "--write", "."],
name: "biome",
},
{
check: ["bunx", "prettier", "--version"],
cmd: ["bunx", "prettier", "--write", "."],
name: "prettier",
},
];
for (const tool of tools) {
const probe = await runCmd(tool.check, worktreePath, 15_000);
if (probe.code !== 0) continue;
const apply = await runCmd(tool.cmd, worktreePath, 90_000);
if (apply.code !== 0) {
return {
attempted: true,
success: false,
filesChanged: [],
summary: `${tool.name} returned non-zero (${apply.code})`,
error: apply.stderr.slice(0, 400),
};
}
const changed = await dirtyFiles(worktreePath);
return {
attempted: true,
success: changed.length > 0,
filesChanged: changed,
summary:
changed.length > 0
? `reformatted ${changed.length} file(s) with ${tool.name}`
: `code already formatted (${tool.name} clean)`,
};
}
return {
attempted: true,
success: false,
filesChanged: [],
summary: "no formatter available (biome / prettier not installed)",
};
}
async function repairImports(
worktreePath: string,
): Promise<MechanicalRepairResult> {
// Prefer biome's organize-imports — single command, fast.
const probe = await runCmd(
["bunx", "--bun", "biome", "--version"],
worktreePath,
15_000,
);
if (probe.code !== 0) {
return {
attempted: true,
success: false,
filesChanged: [],
summary: "no import organiser available (biome not installed)",
};
}
const apply = await runCmd(
[
"bunx",
"--bun",
"biome",
"check",
"--write",
"--unsafe",
".",
],
worktreePath,
90_000,
);
if (apply.code !== 0) {
return {
attempted: true,
success: false,
filesChanged: [],
summary: `biome check exit ${apply.code}`,
error: apply.stderr.slice(0, 400),
};
}
const changed = await dirtyFiles(worktreePath);
return {
attempted: true,
success: changed.length > 0,
filesChanged: changed,
summary:
changed.length > 0
? `organised imports in ${changed.length} file(s)`
: `imports already organised`,
};
}
// ─────────────────────────────────────────────────────────────────────────
// helpers — worktree, git, fs
// ─────────────────────────────────────────────────────────────────────────
async function createWorktree(
bareRepoDir: string,
branch: string,
): Promise<{ ok: true; path: string } | { ok: false; error: string }> {
const wtPath = `/tmp/gluecron-mechrepair-${Date.now()}-${Math.random()
.toString(36)
.slice(2, 8)}`;
const { code, stderr } = await runCmd(
["git", "worktree", "add", "-f", wtPath, branch],
bareRepoDir,
30_000,
);
if (code !== 0) return { ok: false, error: stderr.slice(0, 400) };
return { ok: true, path: wtPath };
}
async function cleanupWorktree(bareRepoDir: string, wtPath: string) {
await runCmd(["git", "worktree", "remove", "-f", wtPath], bareRepoDir, 30_000);
}
async function dirtyFiles(worktreePath: string): Promise<string[]> {
const { stdout, code } = await runCmd(
["git", "status", "--porcelain"],
worktreePath,
15_000,
);
if (code !== 0) return [];
return stdout
.split("\n")
.map((line) => line.trim())
.filter((line) => line.length > 0)
.map((line) => line.replace(/^.{2,3}\s+/, ""));
}
async function commitChanges(
bareRepoDir: string,
worktreePath: string,
branch: string,
files: string[],
message: string,
): Promise<string | null> {
if (files.length === 0) return null;
const addRes = await runCmd(
["git", "add", "--", ...files],
worktreePath,
30_000,
);
if (addRes.code !== 0) return null;
const commitRes = await runCmd(
[
"git",
"-c",
"user.name=GlueCron AI",
"-c",
"user.email=ai-bot@gluecron.com",
"commit",
"-m",
message,
],
worktreePath,
30_000,
);
if (commitRes.code !== 0) return null;
const shaRes = await runCmd(["git", "rev-parse", "HEAD"], worktreePath, 15_000);
if (shaRes.code !== 0) return null;
// Push from the worktree back to the bare via direct branch update.
// The worktree shares object storage with the bare, so we just update
// the bare's branch ref.
const push = await runCmd(
["git", "push", bareRepoDir, `HEAD:${branch}`],
worktreePath,
30_000,
);
if (push.code !== 0) return null;
return shaRes.stdout.trim();
}
async function fileExists(path: string): Promise<boolean> {
try {
const f = Bun.file(path);
return await f.exists();
} catch {
return false;
}
}
async function runCmd(
cmd: string[],
cwd: string,
timeoutMs: number,
): Promise<{ code: number; stdout: string; stderr: string }> {
try {
const proc = spawn({
cmd,
cwd,
stdout: "pipe",
stderr: "pipe",
env: {
...process.env,
// Don't write to the user's HOME during install / format
HOME: "/tmp",
// Stop interactive prompts dead
CI: "true",
GIT_TERMINAL_PROMPT: "0",
},
});
const timer = setTimeout(() => {
try {
proc.kill("SIGKILL");
} catch {
/* already dead */
}
}, timeoutMs);
const code = await proc.exited;
clearTimeout(timer);
const stdout = await new Response(proc.stdout).text();
const stderr = await new Response(proc.stderr).text();
return { code: code ?? 1, stdout, stderr };
} catch (err) {
return {
code: 1,
stdout: "",
stderr: err instanceof Error ? err.message : String(err),
};
}
}
|