Problem
Non-source artifacts are committed to the repo:
.idea/ — JetBrains Rider IDE settings
.agents/ — internal agent task tracking files (e.g. FEAT-001 multi-provider refactor)
These are machine/tool-specific and add noise to diffs and clones.
Proposed solution
- Add
.idea/ and .agents/ to .gitignore
- Remove tracked files from git history going forward (
git rm -r --cached)
- Document recommended IDE setup in README or
CONTRIBUTING.md if needed
Acceptance criteria
Notes
Do not delete local copies on contributor machines; only stop tracking in git.
Problem
Non-source artifacts are committed to the repo:
.idea/— JetBrains Rider IDE settings.agents/— internal agent task tracking files (e.g. FEAT-001 multi-provider refactor)These are machine/tool-specific and add noise to diffs and clones.
Proposed solution
.idea/and.agents/to.gitignoregit rm -r --cached)CONTRIBUTING.mdif neededAcceptance criteria
.idea/and.agents/are gitignoredNotes
Do not delete local copies on contributor machines; only stop tracking in git.