Test patterns with Playwright browser automation. Navigate to deployed patterns, interact with UI elements, verify functionality. Use when testing patterns after deployment or when debugging pattern behavior in browser.
If Playwright MCP is available, use it to test patterns in a real browser.
When testing patterns, the URL MUST be:
http://localhost:8000/SPACE-NAME/CHARM-ID
⚠️ COMMON MISTAKES TO AVOID:
http://localhost:5173/... - WRONG PORT (that's the shell, not toolshed)http://localhost:8000/CHARM-ID - MISSING SPACE NAMEhttp://localhost:5173/CHARM-ID - WRONG PORT AND MISSING SPACEIf you use the wrong URL format, the pattern will NOT work. No exceptions.
Use Playwright to navigate to: http://localhost:8000/SPACE-NAME/CHARM-ID
Example:
http://localhost:8000/claude-counter-1130-1/baedreicqpqie6td...
Once the page loads:
browser_snapshotIf you see a login/registration page:
Use descriptive space names with the claude- prefix:
Format: claude-<pattern-name>-<MMDD>-<counter>
Examples:
claude-counter-1130-1claude-shopping-list-1201-2claude-prompt-injection-tracker-1130-1After deploying a new pattern:
1. Deploy with: deno task cf piece new --api-url http://localhost:8000 --identity ../labs/claude.key --space claude-my-pattern-1130-1 pattern.tsx
2. Note the piece ID from output
3. Use Playwright to navigate to: http://localhost:8000/claude-my-pattern-1130-1/CHARM-ID
⚠️ MUST be port 8000, MUST include space name
4. Verify all functionality works
5. Report to user if tests pass or if issues found
After updating a pattern:
1. Deploy NEW instance with `piece new` (see warning below)
2. Note the NEW piece ID
3. Use Playwright to test at http://localhost:8000/SPACE-NAME/NEW-CHARM-ID
4. Test that changes work as expected
🚨 NEVER use piece setsrc to update patterns!
piece setsrc corrupts piece state and causes pieces to render blank on direct
navigation. ALWAYS use piece new to deploy a fresh instance instead. Getting a
new piece ID each time is expected and correct.
When Playwright unavailable:
If screenshot shows login/registration screen instead of pattern:
The page may not have fully loaded. Wait 1-2 seconds before taking the first snapshot:
Use browser_wait_for with time: 2 before taking the snapshot
This is common when navigating to a pattern URL—the authentication check may briefly show the login screen before the pattern renders.
If Playwright starts opening many tabs:
This can happen after user suspends/resumes their computer. The Chrome connection gets confused.
Solution: Ask user to:
Tell user:
Playwright's browser connection got confused after your computer woke up.
Please quit the Chrome window with the yellow "automated test software" banner,
then I'll try again with a fresh browser.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer