From 4b0f53eb2d60014c41c804381728ed3f76608e6f Mon Sep 17 00:00:00 2001 From: opencode controller Date: Mon, 29 Jun 2026 20:27:11 -0400 Subject: [PATCH] tooling: gitignore *.kate-swp + .superpowers/ scratch dir - *.kate-swp: Kate editor's swap files have a different extension pattern than vim's *.swp; without this, kate-swp files like docs/reviews/.2026-06-28-slice-1-claude-adversarial-assessment.md.kate-swp leak into the working tree. - .superpowers/: the superpowers companion scratches its visual-brainstorming server state (HTML mockups, server.log, server.pid, server-info) under .superpowers/brainstorm/ in the project root. The companion explicitly advises gitignoring this directory; scratch artifacts are not source. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e690a6b..ae79292 100644 --- a/.gitignore +++ b/.gitignore @@ -15,9 +15,13 @@ # Editor / OS .DS_Store *.swp +*.kate-swp .idea/ .vscode/ # Local worktrees (per using-git-worktrees skill; isolation, not content) .worktrees/ worktrees/ + +# visual-brainstorming scratch (superpowers companion) +.superpowers/