Install
openclaw skills install @felipefreitag/manual-qaGenerate a manual QA checklist from code changes. Use when the user wants to test a PR, commit, branch, or staged changes — or says "QA this", "test plan", "what should I test", "manual testing", or asks how to verify a change works. Also use when reviewing a PR and the user wants to know what to check before merging.
openclaw skills install @felipefreitag/manual-qaGenerate a step-by-step QA checklist from code changes, separating what the agent can verify in the terminal from what needs a human.
Use the first match:
gh pr diffgit showgit diff --cachedgit diff main...HEADgit diffIf nothing matches, tell the user there are no changes to QA.
Read the diff carefully. Understand what the change does — not just what files changed, but the intent. Look at:
Produce a numbered list of concrete test steps. Each step should be specific enough that someone unfamiliar with the code could follow it. Group by feature area if the change spans multiple concerns.
For each step, mark it:
Include both:
After presenting the checklist, offer to run all 🤖 steps. If the user agrees, run them and report results inline — pass/fail for each, with output on failure.