Skip to content

AK-508: ignore .architect/ and .reviewer/ agent findings dirs - #813

Draft
benw5483 wants to merge 1 commit into
mainfrom
ak-508-ignore-agent-findings-dirs
Draft

AK-508: ignore .architect/ and .reviewer/ agent findings dirs#813
benw5483 wants to merge 1 commit into
mainfrom
ak-508-ignore-agent-findings-dirs

Conversation

@benw5483

Copy link
Copy Markdown
Contributor

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 broad git 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:

$ git ls-files | grep -E '^\.(architect|reviewer)/'
(no output)

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 --numstat reports 6 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 --numstat on this PR shows additions only, against .gitignore alone.
  • mkdir -p .architect .reviewer && touch .architect/x.json .reviewer/x.json && git status --porcelain leaves both directories out of the output.
  • git check-ignore -v .architect/x.json .reviewer/x.json attributes the match to the two new .gitignore lines.

All three ran locally on this branch and passed.


Generated by the operator's software factory.
• City: factory-main · Agent: local-core.builder-4
• On behalf of: @benw5483

@benw5483
benw5483 force-pushed the ak-508-ignore-agent-findings-dirs branch from 1c2b92e to 5ba23a2 Compare July 29, 2026 00:21
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
benw5483 force-pushed the ak-508-ignore-agent-findings-dirs branch from 5ba23a2 to 72e5219 Compare July 29, 2026 00:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant