用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MigoXLab/webqa-agent --skill recovery命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | recovery |
| description | Structured error recovery for failed or ineffective browser |
Structured recovery for browser automation failures. Covers execution errors, semantic failures, state divergence, tool limitations, and environmental blockers.
Load this skill when any of these occur:
is_error in tool result).Follow three phases in order. Do not skip OBSERVE.
Re-perceive the actual page state before making any recovery decision.
Batch these read-only tools in a single turn (the engine runs them concurrently):
take_snapshot — current DOM / accessibility tree.take_screenshot — current visual state.list_console_messages — JS errors that may explain the failure.list_network_requests — failed API calls or unexpected redirects.Before / after comparison: Compare the current state against what the page looked like before the failed action. Ask:
Classify the failure and assess progress.
Error classification — load the error-taxonomy reference for the
full list:
load_skill(skill_name="recovery", reference="error-taxonomy")
Key questions:
Progress assessment — did the action make any progress toward the goal?
evaluate_script({ code: "history.back()" }) or navigate to the
previous URL), then re-observe.Load the recovery-strategies reference for concrete playbooks:
load_skill(skill_name="recovery", reference="recovery-strategies")
Escalation ladder — try in order, move to the next level when the current one fails:
evaluate_script
instead of MCP fill), different interaction pattern.After every recovery action, return to OBSERVE to verify the fix worked before continuing the plan.
Load on demand: load_skill(skill_name="recovery", reference="<name>")
error-taxonomy — 9 error categories with identification traits,
causes, and recovery guidancerecovery-strategies — concrete recovery playbooks with tool
examples and escalation patternsverification-patterns — concrete verification examples with MCP
tools (useful during OBSERVE phase for comprehensive state checks)基于 SOC 职业分类