chore: gitignore the .local scratch directory - #2961
Conversation
|
Claude finished @DevMomo's task in 49s —— View job SummaryAdds Change-by-Change Review1.
|
| Area | Status | Notes |
|---|---|---|
| Frontmatter | N/A | No skill files changed |
| E2E Tests | N/A | No skill files changed |
| Skill Body | N/A | No skill files changed |
| References & Assets | N/A | No skill files changed |
| Repo Hygiene | OK | Prevents accidental commit of sensitive local artifacts |
Issues for Manual Review
None found.
Conclusion
Clean, well-scoped change. The .local/ ignore entry prevents accidental exposure of real tenant identifiers. No issues — LGTM.
- Gather context and read review criteria
- Read the full diff
- Read the full
.gitignorefile - Check for secrets/sensitive data in the PR
- Post review findings
d6cd58d to
d9f9f62
Compare
.local/ holds local scratch projects and CLI probe artifacts, including real connection IDs, folder keys, and account names. It was untracked but not ignored, so any `git add -A` swept it into a commit. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015DDDLGA54192tVTXiCgxEL
d9f9f62 to
f5edf2a
Compare
Problem
.local/is a documented convention in this repo — theuipath-troubleshootskill writes investigation artifacts there, includingraw/, which holds verbatim CLI responses from a live tenant:It isn't ignored, so anyone who runs that skill is one
git add .from committing tenant data:Fix
Ignore
.local/, with a comment naming why. Nothing tracked is affected —.local/has never been committed.