From 7ad9fb537b6490813cf008d280dffa59e5ef0886 Mon Sep 17 00:00:00 2001 From: cc-vps Date: Mon, 22 Dec 2025 13:48:06 -0800 Subject: [PATCH] fix: add interactions.jsonl to .gitignore allowlist The interactions.jsonl file is an append-only audit log that should be tracked in git (synced with bd sync), but it was missing from the negation patterns in .beads/.gitignore. This adds !interactions.jsonl alongside !issues.jsonl and !metadata.json for consistency and clarity that this file should be committed. Co-authored-by: Christian Catalan --- .beads/.gitignore | 1 + cmd/bd/doctor/gitignore.go | 1 + 2 files changed, 2 insertions(+) diff --git a/.beads/.gitignore b/.beads/.gitignore index 374adb81..65bd4ae6 100644 --- a/.beads/.gitignore +++ b/.beads/.gitignore @@ -28,5 +28,6 @@ beads.right.meta.json # Keep JSONL exports and config (source of truth for git) !issues.jsonl +!interactions.jsonl !metadata.json !config.json diff --git a/cmd/bd/doctor/gitignore.go b/cmd/bd/doctor/gitignore.go index 363b604e..e64cec14 100644 --- a/cmd/bd/doctor/gitignore.go +++ b/cmd/bd/doctor/gitignore.go @@ -37,6 +37,7 @@ beads.right.meta.json # Keep JSONL exports and config (source of truth for git) !issues.jsonl +!interactions.jsonl !metadata.json !config.json `