From 099df17e77fb8f1d6e5721232ba9a39127f0de4d Mon Sep 17 00:00:00 2001 From: Timmy Date: Sun, 17 May 2026 20:51:48 +0100 Subject: [PATCH] chore: gitignore /pipeline.db at repo root (phantom stale file) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A 0-byte pipeline.db sometimes appears at the repo root, left over from old code paths. Current master correctly opens it at .huskies/pipeline.db via project_root.join() in server/src/startup/project.rs:280 — no relative-path opener exists. This is purely defensive so any future regression doesn't sneak into commits. Stops 1123 from being a coder task. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 5ebe0366..b0ba50a2 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ _merge_parsed.json .huskies_port .huskies/bot.toml.bak .huskies/build_hash +# Phantom 0-byte pipeline.db sometimes appears at repo root from old code; canonical DB lives at .huskies/pipeline.db +/pipeline.db # Per-worktree planning file (written by coder agents, must never reach squash commits) PLAN.md