Drop the .loop scratch state from the tree - #133
Merged
Merged
Conversation
The /polish loop's working files -- polish-seen.md and polish-state.md -- rode into main with #127. They are per-run agent bookkeeping, not project artifacts: nothing in the tree, the build, or CI reads them, and they go stale the moment the branch they describe lands. Remove both and ignore .loop/ alongside .claude/ so a later run cannot commit them again.
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
No unresolved blocking issues were identified.
Pull request overview
Removes stale .loop scratch state and prevents future scratch files from being committed.
Changes:
- Deletes obsolete polish state and findings files.
- Adds
.loop/to.gitignore.
File summaries
| File | Description |
|---|---|
.loop/polish-state.md |
Removes stale run state. |
.loop/polish-seen.md |
Removes stale findings ledger. |
.gitignore |
Ignores future .loop/ scratch files. |
Review details
- Files reviewed: 2/3 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
zaoxing
added a commit
that referenced
this pull request
Sep 11, 2026
The /polish loop's working files are per-run agent bookkeeping, not project artifacts: nothing in the tree, the build, or CI reads them, and they go stale once the branch they describe has landed. #133 removes them from main; dropping them here too so a merge of this branch cannot carry them back in.
zaoxing
added a commit
that referenced
this pull request
Sep 11, 2026
The /polish loop's working files are per-run agent bookkeeping, not project artifacts: nothing in the tree, the build, or CI reads them, and they go stale once the branch they describe has landed. #133 removes them from main; dropping them here too so a merge of this branch cannot carry them back in.
zaoxing
added a commit
that referenced
this pull request
Sep 11, 2026
The /polish loop's working files are per-run agent bookkeeping, not project artifacts: nothing in the tree, the build, or CI reads them, and they go stale once the branch they describe has landed. #133 removes them from main; dropping them here too so a merge of this branch cannot carry them back in.
zaoxing
added a commit
that referenced
this pull request
Sep 11, 2026
The /polish loop's working files are per-run agent bookkeeping, not project artifacts: nothing in the tree, the build, or CI reads them, and they go stale once the branch they describe has landed. #133 removes them from main; dropping them here too so a merge of this branch cannot carry them back in.
zaoxing
added a commit
that referenced
this pull request
Sep 11, 2026
The /polish loop's working files are per-run agent bookkeeping, not project artifacts: nothing in the tree, the build, or CI reads them, and they go stale once the branch they describe has landed. #133 removes them from main; dropping them here too so a merge of this branch cannot carry them back in.
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.
What
Removes
.loop/polish-seen.mdand.loop/polish-state.md, and adds.loop/to.gitignore.Why
These are the
/polishloop's per-run working files — a findings ledger and aseen-set keyed to branch baselines (
92c2225/7eac029/a4d3dcb). They areagent bookkeeping, not project artifacts, and they went stale the moment those
branches landed. They rode into
mainwith the #127 merge (dac94dc)unintentionally.
Verified nothing depends on them before removing:
git grep -F .loop -- . ':!.loop/' ':!third_party/'onmainreturns nothing..github/.tests/test_live_loop_fixes.pyis deliberately left alone — despite the name itis unrelated to this tooling, and pins regressions for the E2E verification
loop's quorum DDL and
E2E_RING_PAYLOAD_BYTESfixes.The
.gitignoreentry sits next to the existing.claude/line so a later runcannot commit the directory again.
🤖 Generated with Claude Code