Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

qa-pilot质量保证试点

Agent Skill

qa-pilot 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,328

周安装

90

GitHub Stars

公开资料未说明

下载量

816
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:qa-pilot(质量保证试点)
来源仓库:https://github.com/helal-muneer/qa-pilot
安装命令:
openclaw skills install qa-pilot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install qa-pilot

简介

根据原始规范自动验证应用功能和工作流正确性。

  • 适合在 OpenClaw 中确保项目真正完成且符合需求时使用。
  • 自动修复部分错误并生成验证报告。qa-pilot 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install qa-pilot。
  • 需提前定义清晰的验收标准和测试边界。

SKILL.md

🔍 QA Pilot — Self-Testing Skill for AI Agents

The problem this solves: Users (especially vibe coders) ask an agent to build something. The agent builds it, says "done," and the user discovers bugs, missing features, broken flows. Then comes the exhausting back-and-forth loop of reporting issues, waiting for fixes, testing again... This skill eliminates that loop by making the agent test its own work before declaring it done.
The core idea: Before telling the user "I'm finished," the agent acts as its own QA tester. It opens the app, clicks through every page, tries every feature, fills every form, and compares what it finds against the original plan. It fixes what's broken, adds what's missing, and only reports completion when the app actually works.

When This Skill Activates

This skill should be triggered automatically whenever:

  1. The agent finishes building or modifying a website/application
  2. The agent is about to tell the user "the project is done"
  3. The user asks the agent to "test it" or "make sure everything works"
  4. A bug is reported and the agent claims to have fixed it

The agent should NOT skip testing. Testing is part of building. A carpenter doesn't hand you a table with loose legs and say "let me know if it wobbles."


Phase 0: Understand What Was Promised

Before testing anything, the agent must know what the finished product should look like.

What to Gather

  1. The original request — What did the user ask for? Go back to the first message.
  2. The plan/spec — Was there a spec file? (e.g., spec.md, PLAN.md, PRD.md, design-os output)
  3. Feature list — Extract every feature, page, and workflow mentioned
  4. Acceptance criteria — What does "done" look like for each feature?

Create a Test Plan

Based on the gathered info, create a mental (or written) checklist:

PROJECT: Photo Editor App
URL: http://localhost:3000

FEATURES TO TEST:
□ Home page loads with app branding
□ Image upload from device (gallery/file picker)
□ Image upload via drag & drop
□ Basic edits: crop, rotate, flip
□ Filters: at least 5 preset filters
□ Text overlay tool
□ Export/save edited image
□ Undo/redo functionality
□ Mobile responsive layout
□ Dark mode toggle

WORKFLOWS TO VERIFY:
□ Upload → Edit → Save (happy path)
□ Upload → Apply filter → Adjust → Save
□ Upload → Add text → Change font → Save
□ Try to save without uploading (should show error)

EDGE CASES:
□ Very large image (>10MB)
□ Non-image file upload (should reject)
□ Navigate away with unsaved changes

Important: If the agent can't find a spec or clear feature list, it should infer the expected features from the original conversation and common patterns for that type of application. Don't ask the user to provide a test plan — that defeats the purpose.


Phase 1: Environment Check

Before testing features, verify the app is running and accessible.

Steps

  1. Check if the dev server is running

- Look for running processes (npm, yarn, python, etc.) - If not running, start it - Wait for it to be ready (check for "ready" output or try the URL)

  1. Open the app in the browser

- Navigate to the local URL (usually http://localhost:PORT) - Verify the page loads (status 200, content renders) - Take a snapshot — does it look like a real app or a blank page?

  1. Check the console for errors

- Open browser console - Red errors = immediate problems to fix - Yellow warnings = note for later, might be important

If the app doesn't load

→ Stop. Fix the startup issue first. No point testing features if the app is down.


Phase 2: Systematic Page-by-Page Testing

Now test every page and every feature, methodically.

Testing Methodology

Think like a first-time user who is also a QA engineer:

  1. What do I see? → Does the page render correctly?
  2. What can I do here? → Are all interactive elements present and working?
  3. What should happen? → Does clicking/typing produce the expected result?
  4. What could go wrong? → Try edge cases and invalid inputs

For Each Page

1. Navigate to the page (click link or go to URL)
2. SNAPSHOT → Does it look right? Any obvious visual issues?
3. Read all text → Any placeholder text? Lorem ipsum? Missing content?
4. Find all interactive elements (buttons, forms, links, toggles)
5. Click each button → Does it do something? Any errors?
6. Fill each form → Submit with valid data → Does it work?
7. Submit forms with INVALID data → Does it validate? Show errors?
8. Check all links → Do they go somewhere? 404s?
9. Resize viewport → Does it work on mobile sizes?
10. Check console → Any errors appeared during interaction?

For Each Workflow (Multi-step Flow)

A workflow is a sequence of actions that achieves a goal. Test the complete journey:

Example: "Create and save an edited photo"

1. Open the app
2. Click "Upload" or find the upload area
3. Upload a test image → Does it appear on canvas?
4. Click "Crop" tool → Does crop UI appear?
5. Adjust crop area → Does preview update?
6. Apply crop → Does image update?
7. Click "Save" or "Export" → Does download start?
8. Verify the saved file exists and is valid

For each step, ask:

  • ✅ Did it work as expected?
  • ❌ Did something break? (error, crash, wrong behavior)
  • ⚠️ Did it partially work? (works but something's off)
  • 🔲 Did the feature exist at all?

Critical: Don't Just Look — INTERACT

The #1 mistake agents make is only checking if pages load. Real testing means:

  • Click every button — not just the primary one
  • Fill every form — with realistic data
  • Try invalid inputs — empty fields, special characters, too-long text
  • Navigate using different paths — sidebar, navbar, back button, direct URL
  • Try the "wrong" actions — save without uploading, submit without filling, click things in weird order
  • Check mobile view — resize to 375px width, try again

Phase 3: Spec vs Reality Comparison

This is where the magic happens. Compare what exists against what was promised.

How to Compare

Spec SaysReality CheckVerdict
"Image upload from gallery"Upload button exists and works✅ Done
"5 preset filters"Only 3 filters visible❌ Incomplete
"Dark mode toggle"No toggle found anywhere❌ Missing
"Responsive on mobile"Layout breaks below 768px❌ Broken
"Undo/redo"Buttons exist but undo doesn't work❌ Buggy

Gap Categories

  • MISSING — Feature was specified but doesn't exist at all
  • INCOMPLETE — Feature exists but isn't fully implemented
  • BROKEN — Feature exists but doesn't work (errors, crashes)
  • DEGRADED — Feature works but quality is below expectations
  • UNEXPECTED — Something exists that wasn't specified (usually fine, but note it)

Priority for Fixing

  1. App-breaking issues (crashes, won't load, core flow broken)
  2. Missing core features (main features from the spec)
  3. Broken features (exists but doesn't work)
  4. Incomplete features (works partially)
  5. Polish issues (visual, UX, edge cases)

Phase 4: Self-Fix Loop

This is the core innovation. The agent doesn't just report issues — it fixes them.

The Loop

┌──────────────────────────────────────┐
│         TEST EVERYTHING              │
│   (Phase 1 + 2 + 3)                 │
└──────────────┬───────────────────────┘
               │
               ▼
        ┌──────────────┐
        │ Issues found? │
        └──┬───────┬────┘
           │       │
        No │       │ Yes
           │       │
           ▼       ▼
     ┌────────┐  ┌──────────────────┐
     │  DONE  │  │ FIX ISSUES       │
     │ Report │  │ (prioritized)    │
     │ to user│  └────────┬─────────┘
     └────────┘           │
                          ▼
                   ┌─────────────┐
                   │ RE-TEST     │
                   │ (only fixes)│
                   └──────┬──────┘
                          │
                          ▼
                   ┌──────────────┐
                   │ All fixed?   │
                   └──┬───────┬───┘
                      │       │
                   No │       │ Yes
                      │       │
                      └───┐   │
                          │   ▼
              ┌───────────┘  ┌────────┐
              │ back to fix  │  DONE  │
              └──────────────┘────────┘

Fixing Rules

  1. Fix the highest priority issues first (app-breaking → missing → broken → incomplete)
  2. After each fix, re-test that specific feature (don't wait to test everything)
  3. After a batch of fixes, run a full test (make sure fixes didn't break other things)
  4. Maximum 5 fix-and-test cycles — if issues persist after 5 rounds, report to the user with specifics
  5. Don't silently skip issues — if you can't fix something, document it clearly

When to Stop Fixing and Report

  • ✅ All spec features work correctly → Report success
  • ⚠️ Minor polish issues remain → Report with caveats
  • ❌ Core issues persist after 5 attempts → Report what's stuck and why
  • 🔴 App fundamentally broken → Report immediately, don't waste cycles

Phase 5: Final Report to User

After all testing and fixing, give the user a clear, honest report.

Report Template

## 🧪 QA Report — [Project Name]

**Tested:** [date/time]
**URL:** [app URL]
**Test Duration:** [how long testing took]
**Fix Cycles:** [number of fix-test loops]

### ✅ Working (X/Y features)
- [Feature 1] — fully working
- [Feature 2] — fully working
- ...

### ⚠️ Working with Caveats
- [Feature] — works but [caveat]
  e.g., "Image upload works but files >5MB may be slow"

### ❌ Issues Remaining
- [Feature] — [what's wrong] — [why it couldn't be fixed]
  e.g., "Export to PDF — library compatibility issue with the framework version"

### 🔲 Not Tested (explain why)
- [Feature] — [reason]
  e.g., "Payment integration — requires live API key"

### 📊 Score: [X/Y features fully working] ([percentage]%)

Tone of the Report

  • Be honest. Don't say everything works if it doesn't.
  • Be specific. "The upload feature has a bug" → "Clicking 'Upload' on mobile Safari shows a blank file picker"
  • Be concise. The user shouldn't need to read a novel.
  • Don't make excuses. If something's broken, say it's broken. Don't say "it should work in theory."

Smart Testing Behaviors

Reading the App Like a Human

  • Look at the page structure — Is there a clear header, navigation, main content, footer?
  • Read button labels — Do they make sense? "Submit" vs "Click here" vs "Btn1"
  • Check for placeholder content — "Lorem ipsum", "TODO", "Your text here", hardcoded test data
  • Verify links and navigation — Every nav item should go somewhere meaningful
  • Test form submissions — Fill them out properly, not with "test" everywhere

Thinking About Edge Cases Like a QA Engineer

  • What happens with no data? (empty state)
  • What happens with too much data? (overflow, pagination)
  • What happens with special characters in inputs? (emoji, Arabic, unicode)
  • What happens on slow connection? (loading states, error handling)
  • What happens going "back" in the browser? (state management)
  • What happens clicking the same button twice? (double-submit prevention)

Handling Different App Types

Web App (SPA):

  • Test client-side routing (direct URLs should work)
  • Test browser back/forward buttons
  • Check for state persistence across navigation
  • Test with JavaScript console open

Server-Rendered App:

  • Test form submissions and redirects
  • Verify server responses are correct
  • Check for proper error pages (404, 500)

Mobile-First App:

  • ALWAYS test at mobile viewport (375×812)
  • Test touch interactions (not just clicks)
  • Check for mobile-specific UI patterns (bottom nav, swipe)

API/Backend:

  • Test each endpoint with valid and invalid data
  • Check authentication/authorization
  • Verify response formats match documentation

Anti-Patterns (What NOT to Do)

Don't just check if the server is running — That's not testing ❌ Don't skip features you think are "minor" — Test everything ❌ Don't assume "it worked before" — Re-test after every change ❌ Don't report "done" while issues are still present — Fix first, report after ❌ Don't test only the happy path — Invalid inputs, edge cases, and errors matter ❌ Don't ignore console errors — They're warnings about real problems ❌ Don't fix things without re-testing — Fixes can break other things ❌ Don't skip mobile testing — Most users are on mobile


Configuration (Optional)

The skill works out of the box, but can be customized per project:

# .qa-pilot.yaml (optional, place in project root)

# Skip certain tests (e.g., payment flows that need live keys)
skip:
  - "Payment integration"
  - "Email sending"

# Custom test data
test_data:
  test_image: "./test-assets/sample-photo.jpg"
  test_user:
    email: "test@example.com"
    password: "TestPass123!"

# Maximum fix cycles before reporting
max_fix_cycles: 5

# Minimum score to auto-report success
pass_threshold: 90  # percent

# Always test these viewports
viewports:
  - desktop: [1920, 1080]
  - tablet: [768, 1024]
  - mobile: [375, 812]

Integration Notes for Skill Platforms

This skill is designed to be:

  • Framework-agnostic — Works with React, Vue, Svelte, Next.js, Django, Flask, anything
  • Agent-agnostic — Works with any AI agent that can browse and edit files
  • Language-agnostic — The methodology applies regardless of the project's language
  • No dependencies — Uses only tools the agent already has (browser, file editor, terminal)

*The best bug is the one the user never sees because the agent caught it first.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.44%
按下载量换算705

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills