원클릭으로
recovery
Structured error recovery for failed or ineffective browser
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Structured error recovery for failed or ineffective browser
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use WebQA to test websites, web pages, URLs, login flows, search flows, forms, navigation, and core user journeys with an AI browser QA agent.
Traverse all interactive elements on the page — click clickables,
Run a Nuclei security scan against the target URL and report
Decompose a task into steps with completion checkpoints.
UI audit for hierarchy, accessibility, and UX.
| 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)