automatasaurus 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automatasaurus",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Automated software development workflow powered by Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
@@ -86,12 +86,28 @@ pytest
86
86
  # or whatever the project uses
87
87
  ```
88
88
 
89
- ### 2. Decide on Manual Verification
89
+ ### 2. Manual Verification with Playwright
90
90
 
91
- Consider:
92
- - Does the issue involve UI changes? → Use Playwright
93
- - Is it a critical user path? → Manual verification recommended
94
- - Is it low-risk (refactor, docs, backend only)? → Automated tests may suffice
91
+ **For any PR touching UI/CSS/frontend, you MUST use Playwright MCP for visual verification if at all possible.** Code review alone is NOT a substitute for actually launching a browser and visually confirming the changes work.
92
+
93
+ **Always use Playwright for:**
94
+ - UI component changes
95
+ - CSS/styling changes
96
+ - Layout changes
97
+ - User interaction flows
98
+ - Any acceptance criteria that describe visual behavior
99
+
100
+ **Skip Playwright only for:**
101
+ - Backend-only changes (no UI impact)
102
+ - Documentation-only changes
103
+ - Test file changes with no runtime behavior
104
+
105
+ **If Playwright cannot be used**, you MUST explain why in your PR comment:
106
+ - Dev server failed to start (include error)
107
+ - Docker/dependencies unavailable (what was tried)
108
+ - Playwright MCP connection issues (what errors occurred)
109
+
110
+ Do not simply say "Visual testing requires browser" - you HAVE a browser via Playwright MCP. Use it.
95
111
 
96
112
  ### 3. Start Dev Server (if needed for manual verification)
97
113