用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MigoXLab/webqa-agent --skill plan命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | plan |
| description | Decompose a task into steps with completion checkpoints. |
| when_to_use | For multi-step workflows or broad testing objectives. |
Structure your approach before acting. Decompose broad objectives into sequenced steps with completion criteria at key milestones.
Skip this skill for single-action tasks ("click the login button").
Order steps as a continuous workflow, each following from the previous outcome.
"Click the 'Submit' button below the form""Click element #btn_47" or "Click at coordinates (400, 300)""Enter a search query to test the search flow""Type 'hello world' in the search box""Step 4 uses the product name found in step 2's results"Insert a checkpoint every 3-5 steps at key milestones.
For each checkpoint, define what to verify (the completion condition), not how to verify it:
"Verify: search results page loaded with matching items""take_snapshot and check for a results container"The completion condition answers: what state proves this milestone was reached? The execution cycle (system prompt Step 4) handles the how.
Merge multiple conditions into one checkpoint to reduce round-trips:
The engine runs read-only tools concurrently. Batch independent observations in a single turn for efficiency:
Turn N (one LLM response, all run in parallel):
- take_snapshot -> DOM structure
- take_screenshot -> visual state
- list_console_messages -> JS errors
- list_network_requests -> failed API calls
Use this pattern at completion checkpoints for a comprehensive view without extra round-trips.
You have full tab management. Use it when beneficial:
new_page) to inspect
it without losing the current page's form state.select_page back to compare.close_page when a tab is no longer needed.The plan is a living document, not a fixed script. When execution reveals new information that invalidates the plan:
Revise the remaining steps based on what you now know. Do not force the original plan when reality has diverged.
When the objective is fully achieved, stop executing even if you planned more steps. Remaining steps that add no new information are waste. State clearly what was accomplished and why remaining steps are unnecessary.
Do not loop after completion. Do not retry successful actions.
When a tool returns an error or an action produces unexpected results,
load the recovery skill for structured guidance:
load_skill(skill_name="recovery")
The recovery skill provides error classification, diagnosis with progress assessment, and concrete recovery strategies with escalation.