2026-02-23 20:39:58 +08:00
# Skills and Tools
Use this playbook when setting up/adjusting skills and external tooling.
## Recommended Skills
### Context7 (library docs)
2026-02-28 15:02:56 +08:00
For up-to-date docs on libraries.
2026-02-23 20:39:58 +08:00
```bash
npx skills add https://github.com/intellectronica/agent-skills --skill context7
```
### Vercel React Best Practices
For deeper React/Next performance guidance.
```bash
npx skills add https://github.com/vercel-labs/agent-skills --skill vercel-react-best-practices
```
### Find Skills
Discover/install skills from the open ecosystem.
```bash
npx skills add https://github.com/vercel-labs/skills --skill find-skills
```
### Playwright CLI
Use `playwright-cli` for browser automation (navigation, interaction, screenshots, tests, extraction).
2026-03-26 14:15:15 +07:00
Default to a fresh isolated browser session for normal verification. If the task depends on the contributor's existing browser state, ask whether they want:
- a fresh isolated `playwright-cli` session
- their current browser session reused
Do not attach to a live personal browser session without explicit confirmation.
2026-04-10 14:31:49 +07:00
When using `playwright-cli` for repo UI verification, run the relevant flow in all three main browser engines:
- `chrome` for Blink
- `firefox` for Gecko
- `webkit` for Safari/WebKit coverage
Use separate named sessions per engine so results stay isolated. If an engine is intentionally skipped, record why.
2026-02-23 20:39:58 +08:00
```bash
npm install -g @playwright/cli@latest
playwright-cli install --skills
```
Skill install locations:
2026-04-23 14:14:55 +07:00
- `.codex/skills/playwright-cli/`
2026-02-23 20:39:58 +08:00
- `.cursor/skills/playwright-cli/`
- `.claude/skills/playwright-cli/`
## MCP Policy Rationale
Avoid GitHub MCP and browser MCP servers for this project because they add significant tool-schema/context overhead.
- GitHub operations: use `gh` CLI.
- Browser operations: use `playwright-cli` .
2026-03-26 14:15:15 +07:00
- If current browser reuse is needed, keep using Playwright-based attach paths rather than browser MCP servers.