docs: clean up stale project-scaffolding refs in .agent/rules#132
Merged
Conversation
Project-tracker became self-contained for graph scanning (#6060, 2026-04-25 + 2026-05-11 follow-up). Many .agent/rules/*.md files still pointed at scaffolding paths that no longer exist: - `project-scaffolding/Documents/PROJECT_STRUCTURE_STANDARDS.md` — removed when scaffolding restructured. Links removed; no local replacement. - `project-scaffolding/Documents/CODE_QUALITY_STANDARDS.md` — local copy at `.agent/rules/CODE_QUALITY_STANDARDS.md` is the live one. Links repointed. - `project-scaffolding/Documents/PROJECT_KICKOFF_GUIDE.md` — removed. Links removed. - `project-scaffolding/Documents/reference/LOCAL_MODEL_LEARNINGS.md` — removed. MODEL_LEARNINGS.md is the local successor. - `project-scaffolding/Documents/reports/trustworthy_ai_report.md` — removed. Inline reference left as historical pointer. - `project-scaffolding/EXTERNAL_RESOURCES.md` → `.yaml`. Renamed upstream; all 9 occurrences corrected. - `project-scaffolding/agentsync/sync_governance.py` — removed when project-tracker became self-contained. REVIEWS_AND_GOVERNANCE_ PROTOCOL.md header rewritten to drop the "DO NOT EDIT" banner; the file is now manually owned in project-tracker. The 2026-01-29 graph-garbage-nodes incident report is left as-is — its scaffolding paths describe state at the time of writing. Follow-up to #6060. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
.agent/rules/were pointing at scaffolding paths that no longer exist after #6060 made project-tracker self-contained for graph scanning. Fixed in place:project-scaffolding/Documents/*.mdlinks: removed (no local replacement) OR repointed to local successor where one exists (CODE_QUALITY_STANDARDS.md).EXTERNAL_RESOURCES.md→.yaml(9 occurrences, file was renamed upstream).REVIEWS_AND_GOVERNANCE_PROTOCOL.md"DO NOT EDIT — synced fromagentsync/sync_governance.py" header replaced with a "manually owned in project-tracker" note (the sync script was removed in #6060).Test plan
grep -rn "project-scaffolding/Documents\|project-scaffolding/agentsync" .agent/rules/returns only the historical incident report and one intentional "this file replaced the old version at X" pointer.grep -rn "EXTERNAL_RESOURCES\.md\b" .agent/rules/returns 0 hits.Related