@playcraft/cli 0.0.40 → 0.0.42

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.
Files changed (130) hide show
  1. package/README.md +66 -3
  2. package/dist/atom-plan/validate-atom-plan.js +298 -0
  3. package/dist/cli-root-help.js +1 -1
  4. package/dist/commands/3d.js +363 -0
  5. package/dist/commands/create.js +337 -0
  6. package/dist/commands/image.js +1337 -43
  7. package/dist/commands/recommend.js +1 -1
  8. package/dist/commands/remix.js +213 -0
  9. package/dist/commands/skills.js +1379 -0
  10. package/dist/commands/tools-3d.js +473 -0
  11. package/dist/commands/tools-generation.js +452 -0
  12. package/dist/commands/tools-project.js +400 -0
  13. package/dist/commands/tools-research.js +37 -0
  14. package/dist/commands/tools-research.test.js +216 -0
  15. package/dist/commands/tools-utils.js +183 -0
  16. package/dist/commands/tools.js +7 -616
  17. package/dist/config.js +2 -0
  18. package/dist/index.js +19 -1
  19. package/dist/utils/version-checker.js +8 -11
  20. package/package.json +9 -3
  21. package/project-template/.claude/agents/designer.md +120 -0
  22. package/project-template/.claude/agents/developer.md +124 -0
  23. package/project-template/.claude/agents/pm.md +164 -0
  24. package/project-template/.claude/agents/refs/README.md +73 -0
  25. package/project-template/.claude/agents/refs/designer-art-style-catalog.md +533 -0
  26. package/project-template/.claude/agents/refs/designer-color-audio-recipes.md +153 -0
  27. package/project-template/.claude/agents/refs/designer-deliverable-spec.md +191 -0
  28. package/project-template/.claude/agents/refs/designer-dimension-axis.md +27 -0
  29. package/project-template/.claude/agents/refs/designer-handoff-v2-checklist.md +68 -0
  30. package/project-template/.claude/agents/refs/designer-master-composite-recipes.md +208 -0
  31. package/project-template/.claude/agents/refs/designer-style-exploration-flow.md +37 -0
  32. package/project-template/.claude/agents/refs/developer-dev-handoff.md +109 -0
  33. package/project-template/.claude/agents/refs/developer-impl-cookbook.md +134 -0
  34. package/project-template/.claude/agents/refs/developer-phase1-flow.md +136 -0
  35. package/project-template/.claude/agents/refs/pm-workflow-detail.md +551 -0
  36. package/project-template/.claude/agents/refs/reviewer-convergence-eval.md +130 -0
  37. package/project-template/.claude/agents/refs/reviewer-six-dimension-eval.md +6 -0
  38. package/project-template/.claude/agents/refs/ta-3d-flip-recipe.md +85 -0
  39. package/project-template/.claude/agents/refs/ta-atlas-deliverable-standard.md +67 -0
  40. package/project-template/.claude/agents/refs/ta-batch-pipeline-recipes.md +120 -0
  41. package/project-template/.claude/agents/refs/ta-image-generation-detail.md +356 -0
  42. package/project-template/.claude/agents/refs/ta-image-ops-reference.md +495 -0
  43. package/project-template/.claude/agents/refs/ta-pipeline-cookbook.md +1108 -0
  44. package/project-template/.claude/agents/refs/ta-tools-reference.md +111 -0
  45. package/project-template/.claude/agents/refs/ta-vfx-preset-catalog.md +365 -0
  46. package/project-template/.claude/agents/reviewer.md +127 -0
  47. package/project-template/.claude/agents/technical-artist.md +122 -0
  48. package/project-template/.claude/hooks/README.md +44 -0
  49. package/project-template/.claude/hooks/validate-atom-plan.mjs +224 -0
  50. package/project-template/.claude/hooks/validate-workflow-stop.mjs +343 -0
  51. package/project-template/.claude/settings.json +36 -0
  52. package/project-template/.claude/settings.local.json +4 -0
  53. package/project-template/.claude/skills/playcraft-ad-psychology/SKILL.md +182 -0
  54. package/project-template/.claude/skills/playcraft-art-style-guide/SKILL.md +123 -0
  55. package/project-template/.claude/skills/playcraft-asset-state-sheet/SKILL.md +141 -0
  56. package/project-template/.claude/skills/playcraft-audio-generation/SKILL.md +280 -0
  57. package/project-template/.claude/skills/playcraft-batch-pipeline/SKILL.md +184 -0
  58. package/project-template/.claude/skills/playcraft-build-optimizer/SKILL.md +306 -0
  59. package/project-template/.claude/skills/playcraft-image-generation/SKILL.md +279 -0
  60. package/project-template/.claude/skills/playcraft-image-generation/reference/build-sprite-sheet.template.mjs +123 -0
  61. package/project-template/.claude/skills/playcraft-image-generation/reference/compare-style.template.mjs +254 -0
  62. package/project-template/.claude/skills/playcraft-image-generation/reference/gen-batch-sprite.template.mjs +235 -0
  63. package/project-template/.claude/skills/playcraft-image-generation/reference/gen-batch.template.mjs +97 -0
  64. package/project-template/.claude/skills/playcraft-image-generation/reference/gen-edit-variants.template.mjs +118 -0
  65. package/project-template/.claude/skills/playcraft-image-generation/reference/process-batch.template.mjs +137 -0
  66. package/project-template/.claude/skills/playcraft-image-generation/reference/prompt-cookbook.md +397 -0
  67. package/project-template/.claude/skills/playcraft-image-generation/reference/validate-sprite-sheet.template.mjs +296 -0
  68. package/project-template/.claude/skills/playcraft-image-ops/SKILL.md +122 -0
  69. package/project-template/.claude/skills/playcraft-masking/SKILL.md +373 -0
  70. package/project-template/.claude/skills/playcraft-research/SKILL.md +212 -0
  71. package/project-template/.claude/skills/playcraft-sprite-generation/SKILL.md +423 -0
  72. package/project-template/.claude/skills/playcraft-storyboard/SKILL.md +167 -0
  73. package/project-template/.claude/skills/playcraft-style-qa/SKILL.md +270 -0
  74. package/project-template/.claude/skills/playcraft-text-rendering/SKILL.md +236 -0
  75. package/project-template/.claude/skills/playcraft-vfx-animation/SKILL.md +130 -0
  76. package/project-template/.claude/skills/playcraft-workflow/SKILL.md +485 -0
  77. package/project-template/.claude/skills/playwright-cli/SKILL.md +390 -0
  78. package/project-template/.claude/skills/playwright-cli/references/element-attributes.md +23 -0
  79. package/project-template/.claude/skills/playwright-cli/references/playwright-tests.md +39 -0
  80. package/project-template/.claude/skills/playwright-cli/references/request-mocking.md +87 -0
  81. package/project-template/.claude/skills/playwright-cli/references/running-code.md +240 -0
  82. package/project-template/.claude/skills/playwright-cli/references/session-management.md +226 -0
  83. package/project-template/.claude/skills/playwright-cli/references/spec-driven-testing.md +312 -0
  84. package/project-template/.claude/skills/playwright-cli/references/storage-state.md +275 -0
  85. package/project-template/.claude/skills/playwright-cli/references/test-generation.md +138 -0
  86. package/project-template/.claude/skills/playwright-cli/references/tracing.md +142 -0
  87. package/project-template/.claude/skills/playwright-cli/references/video-recording.md +157 -0
  88. package/project-template/.cursor/hooks.json +17 -0
  89. package/project-template/.cursor/rules/playcraft-orchestrator.mdc +137 -0
  90. package/project-template/.cursor/rules/playcraft-subagent-boundary.mdc +18 -0
  91. package/project-template/CLAUDE.md +280 -0
  92. package/project-template/assets/audio/bgm/.gitkeep +0 -0
  93. package/project-template/assets/audio/sfx/.gitkeep +0 -0
  94. package/project-template/assets/bundles/.gitkeep +0 -0
  95. package/project-template/assets/images/bg/.gitkeep +0 -0
  96. package/project-template/assets/images/reference/.gitkeep +0 -0
  97. package/project-template/assets/images/storyboard/.gitkeep +0 -0
  98. package/project-template/assets/images/tiles/.gitkeep +0 -0
  99. package/project-template/assets/images/ui/.gitkeep +0 -0
  100. package/project-template/assets/images/vfx/.gitkeep +0 -0
  101. package/project-template/assets/models/.gitkeep +0 -0
  102. package/project-template/docs/team/agent-conduct.md +121 -0
  103. package/project-template/docs/team/agent-runtime-matrix.md +62 -0
  104. package/project-template/docs/team/atom-plan-format.md +105 -0
  105. package/project-template/docs/team/collaboration.md +297 -0
  106. package/project-template/docs/team/core-model.md +50 -0
  107. package/project-template/docs/team/platform-capabilities.md +15 -0
  108. package/project-template/docs/team/workflow-changelog.md +65 -0
  109. package/project-template/docs/team/workflow-consistency-checklist.md +140 -0
  110. package/project-template/game/config/.gitkeep +0 -0
  111. package/project-template/game/gameplay/.gitkeep +0 -0
  112. package/project-template/game/scenes/.gitkeep +0 -0
  113. package/project-template/logs/.gitkeep +0 -0
  114. package/project-template/ta-workspace/logs/.gitkeep +0 -0
  115. package/project-template/ta-workspace/scripts/.gitkeep +0 -0
  116. package/project-template/ta-workspace/tmp/.gitkeep +0 -0
  117. package/project-template/templates/atom-plan.template.json +26 -0
  118. package/project-template/templates/atom-plan.template.md +108 -0
  119. package/project-template/templates/design-brief.template.md +195 -0
  120. package/project-template/templates/design-lens-checklist.reference.md +117 -0
  121. package/project-template/templates/design-methodology.md +99 -0
  122. package/project-template/templates/designer-log.template.md +114 -0
  123. package/project-template/templates/developer-log.template.md +134 -0
  124. package/project-template/templates/five-axis-framework.md +186 -0
  125. package/project-template/templates/intent-clarifications.template.md +58 -0
  126. package/project-template/templates/layout-spec.template.md +146 -0
  127. package/project-template/templates/project-state.template.md +237 -0
  128. package/project-template/templates/review-report.template.md +91 -0
  129. package/project-template/templates/style-exploration.template.md +93 -0
  130. package/project-template/templates/ta-log.template.md +343 -0
@@ -0,0 +1,240 @@
1
+ # Running Custom Playwright Code
2
+
3
+ Use `run-code` to execute arbitrary Playwright code for advanced scenarios not covered by CLI commands.
4
+
5
+ ## Syntax
6
+
7
+ ```bash
8
+ playwright-cli run-code "async page => {
9
+ // Your Playwright code here
10
+ // Access page.context() for browser context operations
11
+ }"
12
+ ```
13
+
14
+ You can also load the function from a file:
15
+
16
+ ```bash
17
+ playwright-cli run-code --filename=./my-script.js
18
+ ```
19
+
20
+ The code must be a single function expression, it is wrapped in `(...)` and evaluated.
21
+ import/export/require syntax is not supported.
22
+
23
+ ## Geolocation
24
+
25
+ ```bash
26
+ # Grant geolocation permission and set location
27
+ playwright-cli run-code "async page => {
28
+ await page.context().grantPermissions(['geolocation']);
29
+ await page.context().setGeolocation({ latitude: 37.7749, longitude: -122.4194 });
30
+ }"
31
+
32
+ # Set location to London
33
+ playwright-cli run-code "async page => {
34
+ await page.context().grantPermissions(['geolocation']);
35
+ await page.context().setGeolocation({ latitude: 51.5074, longitude: -0.1278 });
36
+ }"
37
+
38
+ # Clear geolocation override
39
+ playwright-cli run-code "async page => {
40
+ await page.context().clearPermissions();
41
+ }"
42
+ ```
43
+
44
+ ## Permissions
45
+
46
+ ```bash
47
+ # Grant multiple permissions
48
+ playwright-cli run-code "async page => {
49
+ await page.context().grantPermissions([
50
+ 'geolocation',
51
+ 'notifications',
52
+ 'camera',
53
+ 'microphone'
54
+ ]);
55
+ }"
56
+
57
+ # Grant permissions for specific origin
58
+ playwright-cli run-code "async page => {
59
+ await page.context().grantPermissions(['clipboard-read'], {
60
+ origin: 'https://example.com'
61
+ });
62
+ }"
63
+ ```
64
+
65
+ ## Media Emulation
66
+
67
+ ```bash
68
+ # Emulate dark color scheme
69
+ playwright-cli run-code "async page => {
70
+ await page.emulateMedia({ colorScheme: 'dark' });
71
+ }"
72
+
73
+ # Emulate light color scheme
74
+ playwright-cli run-code "async page => {
75
+ await page.emulateMedia({ colorScheme: 'light' });
76
+ }"
77
+
78
+ # Emulate reduced motion
79
+ playwright-cli run-code "async page => {
80
+ await page.emulateMedia({ reducedMotion: 'reduce' });
81
+ }"
82
+
83
+ # Emulate print media
84
+ playwright-cli run-code "async page => {
85
+ await page.emulateMedia({ media: 'print' });
86
+ }"
87
+ ```
88
+
89
+ ## Wait Strategies
90
+
91
+ ```bash
92
+ # Wait for network idle
93
+ playwright-cli run-code "async page => {
94
+ await page.waitForLoadState('networkidle');
95
+ }"
96
+
97
+ # Wait for specific element
98
+ playwright-cli run-code "async page => {
99
+ await page.locator('.loading').waitFor({ state: 'hidden' });
100
+ }"
101
+
102
+ # Wait for function to return true
103
+ playwright-cli run-code "async page => {
104
+ await page.waitForFunction(() => window.appReady === true);
105
+ }"
106
+
107
+ # Wait with timeout
108
+ playwright-cli run-code "async page => {
109
+ await page.locator('.result').waitFor({ timeout: 10000 });
110
+ }"
111
+ ```
112
+
113
+ ## Frames and Iframes
114
+
115
+ ```bash
116
+ # Work with iframe
117
+ playwright-cli run-code "async page => {
118
+ const frame = page.locator('iframe#my-iframe').contentFrame();
119
+ await frame.locator('button').click();
120
+ }"
121
+
122
+ # Get all frames
123
+ playwright-cli run-code "async page => {
124
+ const frames = page.frames();
125
+ return frames.map(f => f.url());
126
+ }"
127
+ ```
128
+
129
+ ## File Downloads
130
+
131
+ ```bash
132
+ # Handle file download
133
+ playwright-cli run-code "async page => {
134
+ const downloadPromise = page.waitForEvent('download');
135
+ await page.getByRole('link', { name: 'Download' }).click();
136
+ const download = await downloadPromise;
137
+ await download.saveAs('./downloaded-file.pdf');
138
+ return download.suggestedFilename();
139
+ }"
140
+ ```
141
+
142
+ ## Clipboard
143
+
144
+ ```bash
145
+ # Read clipboard (requires permission)
146
+ playwright-cli run-code "async page => {
147
+ await page.context().grantPermissions(['clipboard-read']);
148
+ return await page.evaluate(() => navigator.clipboard.readText());
149
+ }"
150
+
151
+ # Write to clipboard
152
+ playwright-cli run-code "async page => {
153
+ await page.evaluate(text => navigator.clipboard.writeText(text), 'Hello clipboard!');
154
+ }"
155
+ ```
156
+
157
+ ## Page Information
158
+
159
+ ```bash
160
+ # Get page title
161
+ playwright-cli run-code "async page => {
162
+ return await page.title();
163
+ }"
164
+
165
+ # Get current URL
166
+ playwright-cli run-code "async page => {
167
+ return page.url();
168
+ }"
169
+
170
+ # Get page content
171
+ playwright-cli run-code "async page => {
172
+ return await page.content();
173
+ }"
174
+
175
+ # Get viewport size
176
+ playwright-cli run-code "async page => {
177
+ return page.viewportSize();
178
+ }"
179
+ ```
180
+
181
+ ## JavaScript Execution
182
+
183
+ ```bash
184
+ # Execute JavaScript and return result
185
+ playwright-cli run-code "async page => {
186
+ return await page.evaluate(() => {
187
+ return {
188
+ userAgent: navigator.userAgent,
189
+ language: navigator.language,
190
+ cookiesEnabled: navigator.cookieEnabled
191
+ };
192
+ });
193
+ }"
194
+
195
+ # Pass arguments to evaluate
196
+ playwright-cli run-code "async page => {
197
+ const multiplier = 5;
198
+ return await page.evaluate(m => document.querySelectorAll('li').length * m, multiplier);
199
+ }"
200
+ ```
201
+
202
+ ## Error Handling
203
+
204
+ ```bash
205
+ # Try-catch in run-code
206
+ playwright-cli run-code "async page => {
207
+ try {
208
+ await page.getByRole('button', { name: 'Submit' }).click({ timeout: 1000 });
209
+ return 'clicked';
210
+ } catch (e) {
211
+ return 'element not found';
212
+ }
213
+ }"
214
+ ```
215
+
216
+ ## Complex Workflows
217
+
218
+ ```bash
219
+ # Login and save state
220
+ playwright-cli run-code "async page => {
221
+ await page.goto('https://example.com/login');
222
+ await page.getByRole('textbox', { name: 'Email' }).fill('user@example.com');
223
+ await page.getByRole('textbox', { name: 'Password' }).fill('secret');
224
+ await page.getByRole('button', { name: 'Sign in' }).click();
225
+ await page.waitForURL('**/dashboard');
226
+ await page.context().storageState({ path: 'auth.json' });
227
+ return 'Login successful';
228
+ }"
229
+
230
+ # Scrape data from multiple pages
231
+ playwright-cli run-code "async page => {
232
+ const results = [];
233
+ for (let i = 1; i <= 3; i++) {
234
+ await page.goto(\`https://example.com/page/\${i}\`);
235
+ const items = await page.locator('.item').allTextContents();
236
+ results.push(...items);
237
+ }
238
+ return results;
239
+ }"
240
+ ```
@@ -0,0 +1,226 @@
1
+ # Browser Session Management
2
+
3
+ Run multiple isolated browser sessions concurrently with state persistence.
4
+
5
+ ## Named Browser Sessions
6
+
7
+ Use `-s` flag to isolate browser contexts:
8
+
9
+ ```bash
10
+ # Browser 1: Authentication flow
11
+ playwright-cli -s=auth open https://app.example.com/login
12
+
13
+ # Browser 2: Public browsing (separate cookies, storage)
14
+ playwright-cli -s=public open https://example.com
15
+
16
+ # Commands are isolated by browser session
17
+ playwright-cli -s=auth fill e1 "user@example.com"
18
+ playwright-cli -s=public snapshot
19
+ ```
20
+
21
+ ## Browser Session Isolation Properties
22
+
23
+ Each browser session has independent:
24
+
25
+ - Cookies
26
+ - LocalStorage / SessionStorage
27
+ - IndexedDB
28
+ - Cache
29
+ - Browsing history
30
+ - Open tabs
31
+
32
+ ## Browser Session Commands
33
+
34
+ ```bash
35
+ # List all browser sessions
36
+ playwright-cli list
37
+
38
+ # Stop a browser session (close the browser)
39
+ playwright-cli close # stop the default browser
40
+ playwright-cli -s=mysession close # stop a named browser
41
+
42
+ # Stop all browser sessions
43
+ playwright-cli close-all
44
+
45
+ # Forcefully kill all daemon processes (for stale/zombie processes)
46
+ playwright-cli kill-all
47
+
48
+ # Delete browser session user data (profile directory)
49
+ playwright-cli delete-data # delete default browser data
50
+ playwright-cli -s=mysession delete-data # delete named browser data
51
+ ```
52
+
53
+ ## Environment Variable
54
+
55
+ Set a default browser session name via environment variable:
56
+
57
+ ```bash
58
+ export PLAYWRIGHT_CLI_SESSION="mysession"
59
+ playwright-cli open example.com # Uses "mysession" automatically
60
+ ```
61
+
62
+ ## Common Patterns
63
+
64
+ ### Concurrent Scraping
65
+
66
+ ```bash
67
+ #!/bin/bash
68
+ # Scrape multiple sites concurrently
69
+
70
+ # Start all browsers
71
+ playwright-cli -s=site1 open https://site1.com &
72
+ playwright-cli -s=site2 open https://site2.com &
73
+ playwright-cli -s=site3 open https://site3.com &
74
+ wait
75
+
76
+ # Take snapshots from each
77
+ playwright-cli -s=site1 snapshot
78
+ playwright-cli -s=site2 snapshot
79
+ playwright-cli -s=site3 snapshot
80
+
81
+ # Cleanup
82
+ playwright-cli close-all
83
+ ```
84
+
85
+ ### A/B Testing Sessions
86
+
87
+ ```bash
88
+ # Test different user experiences
89
+ playwright-cli -s=variant-a open "https://app.com?variant=a"
90
+ playwright-cli -s=variant-b open "https://app.com?variant=b"
91
+
92
+ # Compare
93
+ playwright-cli -s=variant-a screenshot
94
+ playwright-cli -s=variant-b screenshot
95
+ ```
96
+
97
+ ### Persistent Profile
98
+
99
+ By default, browser profile is kept in memory only. Use `--persistent` flag on `open` to persist the browser profile to disk:
100
+
101
+ ```bash
102
+ # Use persistent profile (auto-generated location)
103
+ playwright-cli open https://example.com --persistent
104
+
105
+ # Use persistent profile with custom directory
106
+ playwright-cli open https://example.com --profile=/path/to/profile
107
+ ```
108
+
109
+ ## Attaching to a Running Browser
110
+
111
+ Use `attach` to connect to a browser that is already running, instead of launching a new one.
112
+
113
+ ### Attach by channel name
114
+
115
+ Connect to a running Chrome or Edge instance by its channel name. The browser must have remote debugging enabled — navigate to `chrome://inspect/#remote-debugging` in the target browser and check "Allow remote debugging for this browser instance".
116
+
117
+ ```bash
118
+ # Attach to Chrome
119
+ playwright-cli attach --cdp=chrome
120
+
121
+ # Attach to Chrome Canary
122
+ playwright-cli attach --cdp=chrome-canary
123
+
124
+ # Attach to Microsoft Edge
125
+ playwright-cli attach --cdp=msedge
126
+
127
+ # Attach to Edge Dev
128
+ playwright-cli attach --cdp=msedge-dev
129
+ ```
130
+
131
+ Supported channels: `chrome`, `chrome-beta`, `chrome-dev`, `chrome-canary`, `msedge`, `msedge-beta`, `msedge-dev`, `msedge-canary`.
132
+
133
+ When `--session` is not provided, the session is named after the channel (e.g. `--cdp=msedge` creates a session called `msedge`), so parallel attaches to Chrome and Edge don't collide on `default`. Pass `--session=<name>` to override.
134
+
135
+ ### Attach via CDP endpoint
136
+
137
+ Connect to a browser that exposes a Chrome DevTools Protocol endpoint:
138
+
139
+ ```bash
140
+ playwright-cli attach --cdp=http://localhost:9222
141
+ ```
142
+
143
+ ### Attach via browser extension
144
+
145
+ Connect to a browser with the Playwright extension installed:
146
+
147
+ ```bash
148
+ playwright-cli attach --extension
149
+ ```
150
+
151
+ ### Detach
152
+
153
+ Tear down an attached session without affecting the external browser:
154
+
155
+ ```bash
156
+ # Detach the default attached session
157
+ playwright-cli detach
158
+
159
+ # Detach a specific attached session
160
+ playwright-cli -s=msedge detach
161
+ ```
162
+
163
+ `detach` only works on sessions created via `attach`. For sessions created via `open`, use `close`.
164
+
165
+ ## Default Browser Session
166
+
167
+ When `-s` is omitted, commands use the default browser session:
168
+
169
+ ```bash
170
+ # These use the same default browser session
171
+ playwright-cli open https://example.com
172
+ playwright-cli snapshot
173
+ playwright-cli close # Stops default browser
174
+ ```
175
+
176
+ ## Browser Session Configuration
177
+
178
+ Configure a browser session with specific settings when opening:
179
+
180
+ ```bash
181
+ # Open with config file
182
+ playwright-cli open https://example.com --config=.playwright/my-cli.json
183
+
184
+ # Open with specific browser
185
+ playwright-cli open https://example.com --browser=firefox
186
+
187
+ # Open in headed mode
188
+ playwright-cli open https://example.com --headed
189
+
190
+ # Open with persistent profile
191
+ playwright-cli open https://example.com --persistent
192
+ ```
193
+
194
+ ## Best Practices
195
+
196
+ ### 1. Name Browser Sessions Semantically
197
+
198
+ ```bash
199
+ # GOOD: Clear purpose
200
+ playwright-cli -s=github-auth open https://github.com
201
+ playwright-cli -s=docs-scrape open https://docs.example.com
202
+
203
+ # AVOID: Generic names
204
+ playwright-cli -s=s1 open https://github.com
205
+ ```
206
+
207
+ ### 2. Always Clean Up
208
+
209
+ ```bash
210
+ # Stop browsers when done
211
+ playwright-cli -s=auth close
212
+ playwright-cli -s=scrape close
213
+
214
+ # Or stop all at once
215
+ playwright-cli close-all
216
+
217
+ # If browsers become unresponsive or zombie processes remain
218
+ playwright-cli kill-all
219
+ ```
220
+
221
+ ### 3. Delete Stale Browser Data
222
+
223
+ ```bash
224
+ # Remove old browser data to free disk space
225
+ playwright-cli -s=oldsession delete-data
226
+ ```