Label a PR as ready for QA so the QA server picks it up automatically
Install with the open skills CLI (global, non-interactive — available in every Claude Code session):
npx skills add elie222/inbox-zero --skill "qa-label" -g -a claude-code -yOr manually — copy the SKILL.md below into:
~/.claude/skills/qa-label/SKILL.md---
name: qa-label
description: Label a PR as ready for QA so the QA server picks it up automatically
---
To mark a PR ready for QA, run: `gh pr edit <PR_NUMBER> --add-label "ready-for-qa"`
An automated QA process on the QA server will pick it up within ~60s and run browser tests against the PR branch. New pushes retrigger automatically while the label is present.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
Use when implementing any feature or bugfix, before writing implementation code