Install
openclaw skills install qa-checkMandatory quality assurance for all dev work before publishing. Use BEFORE deploying any project to production. Validates build, tests browser functionality, checks mobile responsiveness, and ensures no broken links/images.
openclaw skills install qa-checkMandatory pre-deployment quality assurance. Run this before ANY project goes live.
vercel --prod or any production deploy# Ensure build succeeds without errors
cd <project-dir>
npm run build
Fail criteria: Build errors, warnings about missing dependencies
Use browser tool to verify:
browser snapshot → check for errors
browser console → verify no red errors
browser screenshot --mobile
Check:
# Check all external links resolve
grep -r "href=" src/ | grep -o 'https://[^"]*' | sort -u | while read url; do
curl -s -o /dev/null -w "%{http_code} $url\n" "$url"
done
Verify in index.html:
<title> set (not generic)<meta name="description"> present<meta property="og:*"> for social sharing# Run full QA suite
scripts/qa-check.sh <project-dir>
If ANY check fails:
| Check | Tool | Pass Criteria |
|---|---|---|
| Build | npm run build | Exit 0, no errors |
| Browser | browser snapshot | No console errors |
| Mobile | browser screenshot | Readable, no scroll |
| Links | curl | All 200/301 |
| Speed | Browser | < 3s load |
| SEO | Read index.html | All meta present |
After deploy, ALWAYS:
Only THEN announce/share the project.