From 3d55e2fcc6d7e8e73f452e56861b2bfc9e0efd91 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 23 Mar 2026 14:13:15 +0000 Subject: [PATCH] Add transient pipeline stages to scaffold .gitignore work/2_current/, work/3_qa/, work/4_merge/ are not committed to git (only 1_backlog, 5_done, 6_archived are). New projects were missing these entries in .storkit/.gitignore. Co-Authored-By: Claude Opus 4.6 (1M context) --- server/src/io/fs.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/src/io/fs.rs b/server/src/io/fs.rs index 99c34b6..7b32557 100644 --- a/server/src/io/fs.rs +++ b/server/src/io/fs.rs @@ -329,6 +329,9 @@ fn write_story_kit_gitignore(root: &Path) -> Result<(), String> { "worktrees/", "merge_workspace/", "coverage/", + "work/2_current/", + "work/3_qa/", + "work/4_merge/", ]; let gitignore_path = root.join(".storkit").join(".gitignore");