Review checklist
Skill markbaindesign/bain-studio/.claude/skills/review-checklist
Claude Code skills and sync tooling for Asana-based studio project management.
npx -y skills add markbaindesign/bain-studio --skill review-checklistAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate a pre-release QA checklist from CHANGELOG.md. Creates an Asana task (or markdown fallback) with one checkbox per changed item. Pass --walk to run an interactive sign-off session. Failed items go to qa/qa-inbox/.
SKILL.md
4.5 KB, as published. Nobody here has run it
Review Checklist — Pre-Release QA Checklist
Generates a release-specific checklist from CHANGELOG.md. One checkbox per Added, Fixed, or Changed item. Can be created as an Asana task or a local markdown file. With --walk, steps through each item interactively for sign-off.
Invoke
/review-checklist
/review-checklist 1.2.0
/review-checklist --walk
/review-checklist 1.2.0 --walk
Steps
1. Read CHANGELOG.md
Find the target version section (or most recent if none specified). Extract all Added, Fixed, and Changed items. Ignore Removed unless the removal needs to be verified on the live site.
If CHANGELOG.md does not exist or version is not found, stop and tell Mark to run /changelog first.
2. Build the checklist
Create one checkbox per item:
## Release review — v{version} — {YYYY-MM-DD}
**Target:** staging | production (ask Mark)
### Added
- [ ] {item} — verify: {how to verify}
### Fixed
- [ ] {item} — verify: {how to verify}
### Changed
- [ ] {item} — verify: {how to verify}
For each item, write a brief "verify:" note — the one thing to check to confirm it is working. Examples:
- "New booking form" → "verify: submit a test enquiry via the contact page form"
- "Mobile nav not closing" → "verify: open on mobile, tap a menu link, confirm menu closes"
- "Hero image updated" → "verify: homepage hero shows new photography on both desktop and mobile"
3. Create the checklist
Primary path — Asana task:
Check if the project has an Asana GID in CLAUDE.md (ASANA_PROJECT_GID).
If yes:
- Write the checklist to
.claude/asana-mirror/review-checklist-v{version}.md(temporary mirror file) - Instruct Mark to run
python3 studio/sync.pyto push it to Asana as a new task titled "Release review — v{version}"
If Asana GID is not set or Mark prefers local:
Fallback path — markdown file:
Write to docs/review-checklist-v{version}.md.
4. Interactive walk-through (--walk mode)
If --walk was passed, step through each checklist item one at a time using AskUserQuestion.
For each item present:
- Show the item description
- Show the verify instruction
- Ask: Pass or Fail?
Options:
- Pass — item verified, move on
- Fail — item failed, will go to QA inbox
- Skip — not applicable for this release
After all items, report:
Review complete — v{version}
✔ Passed: N
✖ Failed: N
— Skipped: N
5. Handle failures
For each failed item, assign a QA reference number and create an inbox file.
Assigning the ref:
- Read
qa/qa-counter.json— getprefixandnext. If the file doesn't exist, readCLAUDE.mdforASANA_TASK_PREFIXand create the counter file withnext: 1. - Mint the ref:
{prefix}-QA-{next:03d}(zero-padded to 3 digits minimum) - Increment
nextand writeqa-counter.jsonback - Append a line to
qa/qa-log.md(create the file with the standard header if it doesn't exist):[YYYY-MM-DD HH:MM] {ref} registered — {description} (high / release-checklist v{version})
Filename convention:
qa/qa-inbox/{ref}-{slug}-review-fail.md
Example: qa/qa-inbox/BSTD-QA-003-mobile-nav-not-closing-review-fail.md
File content:
---
ref: {ref}
source: review-checklist
version: {version}
severity: high
---
## {item description}
Verify: {verify instruction}
Failed during pre-release review of v{version} on {date}.
Tell Mark: "{N} item(s) sent to qa/qa-inbox/ — refs {ref-list} — run /qa to work through them before releasing."
6. Update the checklist file
If created as a markdown file, update it to reflect pass/fail results.
If created as an Asana task, note the pass/fail summary in .claude/asana-mirror/ and remind Mark to sync.
Notes
- Never mark items as passed automatically — Mark must confirm each one in --walk mode.
- The --walk mode uses the same pass/fail pattern as the QA sign-off UI (AskUserQuestion).
- Failed items go to qa-inbox unchanged — the normal QA workflow picks them up from there.
- Run
/release-reportbefore this so the client report is ready regardless of checklist outcome. - Typical release order:
/changelog→/release-report→/review-checklist --walk→ deploy →/iris signal(broadcast).
Gives 0 of the 12 instructions most code review skills give
Counted across 610 of the 674 authors here whose files we hold, read 2026-08-06
- push back with technical reasoning if wrongin 60 of 610, across 24 files
- ask for clarification on unclear itemsin 51 of 610, across 16 files
- fix critical issues immediatelyin 45 of 610, across 29 files
- implement one item at a timein 45 of 610, across 11 files
- group findings by severityin 44 of 610, across 43 files
- verify feedback against the codebasein 42 of 610, across 8 files
- dispatch a code reviewer subagentin 39 of 610, across 23 files
- fix important issues before proceedingin 37 of 610, across 22 files
- test each fix individuallyin 35 of 610, across 7 files
- reply in github comment threadsin 33 of 610, across 5 files
- check for security vulnerabilitiesin 31 of 610, across 27 files
- factualize corrections without over-explainingin 30 of 610, across 2 files
Said here and by no other author read
- extract changed items from CHANGELOG.md
- create one checkbox per changelog item
- write a verification note per item
- create checklist as Asana task or markdown file
- step through checklist items in walk mode
- ask for pass fail or skip per item
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once.