From 8b38870e31618934a16805aca7d8f60d6610f160 Mon Sep 17 00:00:00 2001 From: Harsh Pandhe Date: Wed, 20 May 2026 10:57:19 +0530 Subject: [PATCH] chore: gitignore .claude/ and .daemon.pid harness artifacts These are local Claude Code / autonomous-loop runtime files (scheduled task locks, daemon PID). They appear in git status on every machine that runs the agent; nothing in the project depends on them. Ignored so they stop cluttering git status and never get accidentally staged. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 1c243fe..160e4cc 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,7 @@ outputs/ *.swp .idea/ .vscode/ + +# Local Claude Code / agent harness artifacts +.claude/ +.daemon.pid