AK-508: ignore .architect/ and .reviewer/ agent findings dirs - #813
Draft
benw5483 wants to merge 1 commit into
Draft
AK-508: ignore .architect/ and .reviewer/ agent findings dirs#813benw5483 wants to merge 1 commit into
benw5483 wants to merge 1 commit into
Conversation
benw5483
force-pushed
the
ak-508-ignore-agent-findings-dirs
branch
from
July 29, 2026 00:21
1c2b92e to
5ba23a2
Compare
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: <operator-factory-bot> <factory-bot@actual.ai.invalid>
benw5483
force-pushed
the
ak-508-ignore-agent-findings-dirs
branch
from
July 29, 2026 00:51
5ba23a2 to
72e5219
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Coding-agent review rounds write
.architect/and.reviewer/findings directories at the repo root of every worktree. They hold internal run identifiers and raw review commentary. This repo didn't ignore them, so the standard recovery move when a build goes sideways (a broadgit add -A) could sweep them straight into a PR.This appends a five-line block to the existing
.gitignore. The comment above the two entries is deliberate: it tells the next person what these directories are, so they don't get deleted later as unexplained noise.Nothing matching was already tracked
Checked before committing:
Empty, so no findings file is already committed here and this change is purely preventive. Had it come back non-empty, untracking those files would've been a separate and much more careful job than adding an ignore rule.
The diff is additive only
git diff --numstatreports6 0 .gitignore: six lines added, zero removed. Nothing existing is deleted, reordered, or reformatted, and no other file in the repo is touched.Test plan
git diff --numstaton this PR shows additions only, against.gitignorealone.mkdir -p .architect .reviewer && touch .architect/x.json .reviewer/x.json && git status --porcelainleaves both directories out of the output.git check-ignore -v .architect/x.json .reviewer/x.jsonattributes the match to the two new.gitignorelines.All three ran locally on this branch and passed.