Skip to content

Commit 4ad3fbb

Browse files
authored
Merge pull request #83 from optave/docs/dogfood-report-v2.2.3-dev
docs: add dogfood report for v2.2.3-dev
2 parents 6eef6b3 + 8247d5d commit 4ad3fbb

2 files changed

Lines changed: 399 additions & 0 deletions

File tree

.claude/skills/dogfood/SKILL.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,33 @@ Write the report to `generated/DOGFOOD_REPORT_v$ARGUMENTS.md` with this structur
392392
393393
---
394394
395+
## Phase 10 — Commit the Report
396+
397+
The dogfood report **must** be committed to the repository — do not leave it as an untracked file.
398+
399+
1. **If bug-fix PRs were created during Phase 7:** Add the report to the **first** PR's branch:
400+
```bash
401+
git checkout <first-pr-branch>
402+
git add generated/DOGFOOD_REPORT_v$ARGUMENTS.md
403+
git commit -m "docs: add dogfood report for v$ARGUMENTS"
404+
git push
405+
```
406+
407+
2. **If no PRs were created** (zero bugs / green path): Create a dedicated PR for the report:
408+
```bash
409+
git checkout -b docs/dogfood-report-v$ARGUMENTS main
410+
git add generated/DOGFOOD_REPORT_v$ARGUMENTS.md
411+
git commit -m "docs: add dogfood report for v$ARGUMENTS"
412+
git push -u origin docs/dogfood-report-v$ARGUMENTS
413+
gh pr create --base main \
414+
--title "docs: add dogfood report for v$ARGUMENTS" \
415+
--body "Dogfooding report for v$ARGUMENTS. See generated/DOGFOOD_REPORT_v$ARGUMENTS.md for full details."
416+
```
417+
418+
3. **Verify** the report file appears in the PR diff before moving on.
419+
420+
---
421+
395422
## Rules
396423
397424
- Be thorough but honest. Don't inflate the rating.

0 commit comments

Comments
 (0)