Skip to content

Commit 67d7c8a

Browse files
chore: simplify .gitignore and prepare repo for public release
Slim the committed .gitignore down to generic patterns (Python, env, model artifacts, secrets, IDE, Next.js, root-level visual-regression globs). Move local-only patterns to .git/info/exclude. Also pull in the latest in-progress site polish under web/.
1 parent 60ae06b commit 67d7c8a

18 files changed

Lines changed: 1220 additions & 518 deletions

.gitignore

Lines changed: 10 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -40,38 +40,16 @@ data/cache/
4040
anthropic_key.txt
4141
huggingface_token.txt
4242

43-
# AMD Developer Cloud orchestration (ephemeral state + logs)
43+
# Eval outputs (regenerable from eval scripts; published ledger lives in docs/)
44+
data/eval/*.json
45+
data/eval/*.jsonl
46+
data/eval/*.txt
47+
data/sample/
48+
49+
# AMD Developer Cloud orchestration state
4450
.adc_state.json
45-
scripts/adc/*.log
4651
docs/adc-runs/
4752

48-
# Local-only session notes (engineering log for the maintainer; not for
49-
# public consumption). Public-facing changelog lives in docs/CHANGELOG.md.
50-
docs/session_*.md
51-
docs/mi300x_handoff.md
52-
docs/superpowers/
53-
54-
# Agent / AI tooling state — never commit. CLAUDE.md is project memory used
55-
# locally by Claude Code; .claude/ is the per-project plugin/hook tree;
56-
# .mcp.json is the MCP server config; .adc_known_hosts is the SSH host db.
57-
CLAUDE.md
58-
.claude/
59-
.mcp.json
60-
.adc_known_hosts
61-
62-
# Operational logs from background eval runs and orchestrators (large,
63-
# regenerable, not part of the published reproducibility ledger).
64-
bo*_autopilot.log
65-
bo*_full.log
66-
bo*_smoke.log
67-
data/eval/*.log
68-
data/eval/*.epoch
69-
data/eval/*.err
70-
texput.log
71-
72-
# Personal hackathon scratch (private notes, not public collateral).
73-
amd-developer-hackathon.md
74-
7553
# IDE / OS
7654
.vscode/
7755
.idea/
@@ -85,46 +63,12 @@ web/out/
8563
web/playwright-report/
8664
web/test-results/
8765
web/lh.json
88-
89-
# build artifacts
9066
web/tsconfig.tsbuildinfo
91-
web/.next/
92-
web/out/
93-
web/playwright-report/
9467

95-
# Local visual-regression artifacts and Lighthouse runs from the r2 polish
96-
# pass and earlier audit/review passes. Generated by Playwright scripts
97-
# at the repo root; large and regenerable. Committed Playwright snapshots
98-
# live under web/tests/e2e/__snapshots__/.
68+
# Local visual-regression and Lighthouse artifacts at the repo root
9969
/*.png
10070
/*.jpeg
10171
/*.jpg
102-
/*-lh-*.report.html
103-
/*-lh-*.report.json
72+
/*.report.html
73+
/*.report.json
10474
/*-vitals.json
105-
/.playwright-mcp/
106-
/tmp-lh-*
107-
108-
# Operational eval outputs (run logs, scoring JSON/JSONL). Regenerable
109-
# from the eval scripts; the published reproducibility ledger is in
110-
# docs/. Do not commit.
111-
data/eval/*.json
112-
data/eval/*.jsonl
113-
data/eval/*.txt
114-
data/sample/
115-
116-
# Internal engineering notes for the r2 / r3 / awwwards / audit passes.
117-
/r2-handoff.md
118-
/r2-readout.md
119-
/r2-findings.md
120-
/r2-cinema.md
121-
/r3-*.md
122-
/phase*-readout.md
123-
/audit-findings.md
124-
/awwwards-readout.md
125-
/yuholens-pipeline-build-spec.md
126-
/design_handoff_yuholens/
127-
/docs/technical-report/
128-
/docs/site-deploy.md
129-
/scripts/_pipeline/
130-
/scripts/adc/

0 commit comments

Comments
 (0)