ワンクリックで
ワンクリックで
| 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.
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
Structured error recovery for failed or ineffective browser
UI audit for hierarchy, accessibility, and UX.