You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use **playwright-cli** for browser automation—navigation, form filling, screenshots, testing, and data extraction. The CLI + skill approach is token-efficient: it avoids loading large MCP tool schemas and verbose accessibility trees into context.
113
+
114
+
**Do NOT use browser MCPs** (cursor-ide-browser, playwright-mcp, chrome MCP, etc.) for this project. MCP servers inject heavy tool definitions and page snapshots into the context window, degrading quality and response speed.
115
+
116
+
**Install** (globally, once per machine). Agents working on this project without playwright-cli should run:
117
+
118
+
```bash
119
+
npm install -g @playwright/cli@latest
120
+
```
121
+
122
+
Then from the project root, install the skill so the agent can use it:
123
+
124
+
```bash
125
+
playwright-cli install --skills
126
+
```
127
+
128
+
The skill installs to `.cursor/skills/playwright-cli/` (or `.claude/skills/` for Claude Code). Agents invoke commands via Bash (e.g. `playwright-cli open`, `playwright-cli snapshot`, `playwright-cli click e1`).
129
+
110
130
## AI Agent Hooks (Recommended)
111
131
112
132
If you're using an AI coding assistant (Cursor, Claude Code, Codex, etc.), set up hooks to automatically enforce code quality. Most modern AI agents support lifecycle hooks.
@@ -192,6 +212,10 @@ For Dependabot security alerts, GitHub Actions logs, issue/PR searches, or cross
192
212
193
213
If not available, suggest the user install it.
194
214
215
+
### Browser MCPs — Do NOT Use
216
+
217
+
**Avoid browser-related MCP servers** for this project (cursor-ide-browser, playwright-mcp, chrome MCP, etc.). Use **playwright-cli** (skill) instead—see [playwright-cli (browser automation)](#playwright-cli-browser-automation) above. Browser MCPs bloat the context window with tool schemas and page snapshots; the CLI + skill workflow is more token-efficient for coding agents.
218
+
195
219
### Context Window Warning
196
220
197
221
Each MCP server injects its tool definitions into the context window, consuming tokens even when the tools aren't being used. Too many servers will:
// One-liner summary of what changed in this release. Update before each release.
105
-
constoneLinerDescription=
106
-
'This version adds multiple-replying support, 4chan-like user anonymity with or without user IDs depending on the board, and several bug fixes.';
105
+
constoneLinerDescription='This version adds backlinks for quoted posts, improves reply functionality with proper quote references, and includes several bug fixes.';
0 commit comments