Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/MigoXLab/webqa-agent --skill plan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SOC 직업 분류 기준