chore: ignore gh-aw run artifacts and local MCP config - #1688
Merged
Conversation
Add two .gitignore entries identified during E2E recovery audit
(recovery/frozen-e2e-20260812):
/run-artifacts/ — gh-aw runtime output (aw-prompts, MCP logs,
safe-outputs, agent I/O) produced during live
workflow runs; not a source artifact.
/.mcp.json — machine-local MCP server configuration; personal
to the developer's environment.
Both paths were present as untracked files during the bradygaster/
squad-gh-aw-e2e-4 live demo session and are confirmed absent from
all remote branches. Ignoring them prevents accidental staging.
No product code, test, workflow, or squad-state changes.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 32ea40b4-299f-49f4-9561-243ad1f277c7
Contributor
🛫 PR Readiness Check
PR Scope: 🔧 Infrastructure
|
| Status | Check | Details |
|---|---|---|
| ✅ | Single commit | 1 commit — clean history |
| ✅ | Not in draft | Ready for review |
| ✅ | Branch up to date | Up to date with dev |
| ❌ | Copilot review | No Copilot review yet — it may still be processing |
| ✅ | Changeset present | No source files changed — changeset not required |
| ✅ | Scope clean | No .squad/ or docs/proposals/ files |
| ✅ | No merge conflicts | No merge conflicts |
| ✅ | Copilot threads resolved | No Copilot review threads |
| ✅ | CI passing | All checks passing |
Files Changed (1 file, +5 −0)
| File | +/− |
|---|---|
.gitignore |
+5 −0 |
Total: +5 −0
This check runs automatically on every push. Fix any ❌ items and push again.
See CONTRIBUTING.md and PR Requirements for details.
Contributor
🟢 Impact Analysis — PR #1688Risk tier: 🟢 LOW 📊 Summary
🎯 Risk Factors
📦 Modules Affectedroot (1 file)
This report is generated automatically for every PR. See #733 for details. |
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
Adds two
.gitignoreentries surfaced during thebradygaster/squad-gh-aw-e2e-4live demo recovery audit (branchrecovery/frozen-e2e-20260812).Changes
Added ignore rules
/run-artifacts/aw-prompts/, MCP logs,safe-outputs.jsonl,agent_output.json, AIC usage cache. Generated, not a source artifact./.mcp.jsonsquad_stateserver via@bradygaster/squad-cli@insider). Developer-environment-specific; should never be committed.Both paths were present as untracked files in the frozen E2E session worktree and are absent from all remote branches. Without these rules, a future
git add .or inattentive staging could silently commit gigabytes of run logs or a machine-local config containing server addresses.Recovery context
The audit was performed on a detached-HEAD worktree frozen at
61cc6429after a successful E2E run (5 epics, 12 tasks, 44/44 tests passing). Recovery examined every dirty/untracked path against a freshly fetchedorigin/dev. All other recovered content —test/gh-aw-quality.test.ts(634 lines) andworkflows/squad.md— was confirmed byte-identical toorigin/devby FIDO checkpointe5320de9and Procedures commit13e6447d; no re-commit was needed or made here.Validation
git check-ignore -v run-artifacts/→.gitignore:57:/run-artifacts/✅git check-ignore -v .mcp.json→.gitignore:59:/.mcp.json✅package.jsonnot ignored ✅Scope
repo-health — ignore rules only. No changeset required (no package source modified).