← スキル一覧に戻る

frontend-verification
by select
Free legal movie streams from Archive.org and YouTube
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: frontend-verification description: Guide for verifying frontend changes using chrome-devtools MCP. Use this when you need to verify UI changes, check for console errors, or test frontend functionality after making changes to Vue components, pages, or styles. license: MIT
Frontend Verification
Always verify frontend changes using the chrome-devtools MCP.
Important Rules
- Never kill Chrome: Do NOT kill Chrome before or after using the MCP server
- Leave dev server running: Do NOT stop the dev server when you're done working
Dev Server Management
Check if Server is Running
Always check if the dev server is already running before asking the user to start it:
curl -s http://localhost:3003/api/readyz
Expected response when running:
{ "status": "ready" }
Starting the Server
- If the server is NOT running, ask the user to start it with
pnpm dev - If the server IS running, proceed directly to verification
- NEVER stop the server when you're done working - leave it running for continuous verification
Verification Steps
1. Navigate to the Application
chrome-devtools_navigate_page to http://localhost:3003
2. Visual Verification
Use one of these tools to verify the UI:
chrome-devtools_take_screenshot- For visual inspectionchrome-devtools_take_snapshot- For text-based accessibility tree view
3. Check for Errors
chrome-devtools_list_console_messages
Look for:
- JavaScript errors
- Vue warnings
- Network failures
- Type errors
4. Interactive Testing (if needed)
chrome-devtools_click- Click elementschrome-devtools_fill- Fill form inputschrome-devtools_hover- Test hover stateschrome-devtools_wait_for- Wait for specific text to appear
Common Verification Scenarios
After Component Changes
- Navigate to the page containing the component
- Take a screenshot to verify visual appearance
- Check console for Vue warnings or errors
- Test any interactive features
After Style Changes
- Navigate to the affected page
- Take a screenshot to verify the styling
- Check for CSS errors in console
- Test responsive behavior if needed (use
chrome-devtools_resize_page)
After Route/Page Changes
- Navigate to the new or modified route
- Verify the page loads correctly
- Check console for routing errors
- Test navigation to/from the page
Example Workflow
# 1. Check if dev server is running
curl -s http://localhost:3003/api/readyz
# 2. If running, navigate to the app
chrome-devtools_navigate_page to http://localhost:3003
# 3. Take a screenshot
chrome-devtools_take_screenshot
# 4. Check for errors
chrome-devtools_list_console_messages
# 5. Test specific functionality (if needed)
chrome-devtools_click on element
chrome-devtools_wait_for specific text
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です