From 72e52199bbdbc8d2ffae27cc64090d7521377895 Mon Sep 17 00:00:00 2001 From: Ben Wisecup Date: Tue, 28 Jul 2026 20:04:40 -0400 Subject: [PATCH] chore(gitignore): ignore coding-agent review-findings dirs (AK-508) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Coding-agent architect and reviewer rounds write .architect/ and .reviewer/ findings directories at the repo root of every worktree. They hold internal run identifiers and raw review commentary, and this repo did not ignore them, so a broad `git add -A` recovery could sweep them into a PR. Additive change only: the block is appended to the existing .gitignore and no existing entry is removed or reordered. Verified that nothing matching the new patterns is currently tracked. Generated by the operator's software factory. City: factory-main ยท Agent: local-core.builder-3 On behalf of: @benw5483 Co-Authored-By: --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 4eb96357..bb4ec7b6 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,9 @@ benches/*_results*.json # Session recordings *.cast +# Coding-agent review-findings dirs. Automated review tooling writes these at +# the repo root of a working tree. They hold internal run identifiers and raw +# review commentary, so a broad `git add -A` must never sweep them into a PR. +.architect/ +.reviewer/ +