一键导入
e2e-ui-execute
Implement UI E2E tests sequentially using Playwright MCP, stop on bug discovery. Use after e2e-ui-research to implement the planned test scenarios.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implement UI E2E tests sequentially using Playwright MCP, stop on bug discovery. Use after e2e-ui-research to implement the planned test scenarios.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Transform verbose natural language requests into structured bilingual documentation (Korean for review + English for AI prompts). Use when you need to clarify and structure a complex request before implementation.
Review current git changes or latest commit using code-reviewer and architect-reviewer agents. Use after completing code changes to get comprehensive quality feedback.
Review comments and suggest cleanup (identify unnecessary comments, recommend improvements). Use to aggressively clean up comment debt in code.
Identify and safely remove dead code, deprecated code, and unused exports from codebase. Use when you need to clean up unused or obsolete code.
Generate business rule documentation from domain knowledge and requirements. Use when you need to document complex business logic or domain rules.
Fix bugs from e2e-ui-execute bug reports with Playwright MCP verification. Use after discovering bugs during E2E test execution.
| name | e2e-ui-execute |
| description | Implement UI E2E tests sequentially using Playwright MCP, stop on bug discovery. Use after e2e-ui-research to implement the planned test scenarios. |
| context | fork |
| agent | general-purpose |
$ARGUMENTS
Extract test number (if specified) and consider any additional context from user input (if not empty).
Check Prerequisites:
docs/e2e-ui/test-targets.md exists (English version, for AI)Read Project Configuration:
playwright.config.ts (or .js):
testDir or testMatchwebServer.url or use.baseURLpackage.json (in same directory):
Load Test Targets:
Execute Tests Sequentially:
Generate Documentation:
docs/e2e-ui/summary-test-N.md for each completed testdocs/e2e-ui/bug-report-test-N.ko.md and bug-report-test-N.md for bugsReport Results:
Document and continue when these situations occur:
Bug Report Format (create both ko.md and md versions):
Files to create:
docs/e2e-ui/bug-report-test-N.ko.md (Korean)docs/e2e-ui/bug-report-test-N.md (English)After creating bug report, continue to next test instead of stopping.
playwright.config.ts and package.json first for project configurationplaywright.config.tsFor each test:
Manual Verification (using Playwright MCP):
Bug Check:
Decision Point:
Write Test Code (only if passed):
// Create test file in directory from playwright.config.ts
// Follow project test patterns
// Include assertions and error handling
// Follow naming convention from testMatch pattern
Documentation:
Start working according to the guidelines above.