用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdarbaz/claude-stack-plugin --skill s-qa-only命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | s-qa-only |
| description | Report-only browser QA - same analysis as /s:qa but no fixes applied, output only |
Run the same browser QA analysis as /s:qa but produce a report only. No code changes, no commits, no fixes. Pure observation.
Prefer Playwright MCP if available (check for mcp__plugin_playwright_playwright__browser_navigate).
If Playwright MCP is not available, ensure the binary exists:
sh ${CLAUDE_PLUGIN_ROOT}/bin/setup-browser.sh
Use ~/.claude-stack/bin/gstack-browse as fallback.
Check for a running dev server on common ports in this order:
http://localhost:3000http://localhost:3001http://localhost:5173http://localhost:8080Attempt a HEAD request to each. Use the first that responds. If none respond, inform the user:
"No dev server detected on ports 3000, 3001, 5173, or 8080. Start your dev server and try again."
Same route scanning logic as /s:qa:
app/**/page.{tsx,jsx,ts,js} and pages/**/*.{tsx,jsx,ts,js}<Route path= or createBrowserRoutersrc/router or src/routes/ as the only routeAccept a tier flag from the user. Default is --standard.
| Flag | Tier | Scope |
|---|---|---|
--quick | Quick | Routes + screenshots + console errors |
--standard | Standard | Quick + forms + responsive + health score |
--exhaustive | Exhaustive | Standard + edge cases + a11y + performance |
Run the exact same checks as /s:qa for the selected tier. Refer to the /s:qa skill for tier definitions.
CRITICAL RULE: Do NOT modify any source files. Do NOT create git commits. This is observation only.
Save the report to docs/qa-reports/YYYY-MM-DD-qa-report.md. Create the directory if it does not exist.
Report format:
# QA Report - {date}
**Tier:** {quick|standard|exhaustive}
**Health Score:** {score}/100
**Dev Server:** {url}
**Routes Tested:** {count}/{total discovered}
## Route Coverage
| Route | Status | Console Errors | Console Warnings | Screenshot |
|-------|--------|----------------|------------------|------------|
| `/` | OK | 0 | 1 | taken |
## Findings
| # | Route | Issue | Severity | Location | Suggested Fix |
|---|-------|-------|----------|----------|---------------|
| 1 | `/dashboard` | Missing alt text on logo img | medium | src/components/Header.tsx:12 | Add `alt="Company logo"` |
### Severity Scale
- **critical** - App crashes, data loss, security vulnerability
- **high** - Feature broken, major layout issue, form unusable
- **medium** - Accessibility gap, minor layout issue, console error
- **low** - Warning, cosmetic issue, performance suggestion
## Console Error Summary
{Deduplicated list of console errors with occurrence count}
## Responsive Check Results
| Route | Mobile (375px) | Tablet (768px) | Desktop (1440px) |
|-------|----------------|-----------------|-------------------|
| `/` | OK | OK | OK |
## Accessibility Summary (exhaustive only)
| Check | Pass | Fail | Details |
|-------|------|------|---------|
| Color contrast | 12 | 2 | Low contrast on `.muted-text` |
| Form labels | 8 | 1 | Missing label on search input |
| Keyboard nav | OK | - | All interactive elements focusable |
## Performance Metrics (exhaustive only)
| Route | LCP (ms) | CLS | Notes |
|-------|----------|-----|-------|
| `/` | 1200 | 0.05 | Good |
## Recommendations
{Prioritized list: critical first, then high, medium, low}
If issues were found:
"Run
/s:qato auto-fix deterministic issues, or address findings manually."
If no issues were found:
"All clear - no issues found. Health score: {score}/100."