From 8851780819a2dbf851fc8bce84332b193e15ef40 Mon Sep 17 00:00:00 2001 From: ZhenghuaBao Date: Fri, 24 Jul 2026 17:49:04 +0800 Subject: [PATCH] chore: gitignore local research and iteration artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Local reviewer transcripts, draft prompts, and week-by-week notes live next to the action for convenience while iterating, but must not land in this public repo via an accidental `git add -A`. Add explicit ignores for the three known folders / file patterns: - docs/reports/ — local weekly reports - feedbacks/ — local review transcripts and adjudication scratch - rules/*.draft.md — WIP severity / conventions rules Anything intended to ship should live in a tracked, generically-worded file (README, docs/, rules/*.md). Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index e375bd2..067551b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,11 @@ node_modules/ .env.* *.log .DS_Store + +# Local research / iteration artifacts. Kept out of the public repo so +# reviewer transcripts, draft prompts, and week-by-week notes cannot land +# via an accidental `git add -A`. Anything meant for the repo should live +# in a tracked, generically-worded file (README, docs/, rules/*.md). +docs/reports/ +feedbacks/ +rules/*.draft.md