From 455bdec06c4f934598db421528e60f9977719e3c Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Wed, 22 Apr 2026 18:06:20 +0900 Subject: [PATCH] chore: gitignore .port_sessions/ to prevent dogfood-run pollution MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every 'claw flush-transcript' call without --directory writes to .port_sessions/.json in CWD. Without a gitignore entry, every dogfood run leaves dozens of untracked files in the repo, masking real changes in 'git status' output. Now that #160/#166 ship structured session lifecycle commands and deterministic --session-id, this directory is purely transient by default — belongs in .gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 919ab83..53a8c5d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,5 +8,8 @@ archive/ # Claw Code local artifacts .claw/settings.local.json .claw/sessions/ +# #160/#166: default session storage directory (flush-transcript output, +# dogfood runs, etc.). Claws specifying --directory elsewhere are fine. +.port_sessions/ .clawhip/ status-help.txt