SE
setup-dev
Install development tools (mcp | extension | playwright)
Install
mkdir -p .claude/skills/setup-dev && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13411" && unzip -o skill.zip -d .claude/skills/setup-dev && rm skill.zipInstalls to .claude/skills/setup-dev
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Install development tools (mcp | extension | playwright)56 charsno explicit “when” trigger
About this skill
Setup Development Tools
Usage: /setup <tool>
mcp— Build the Too Many Cooks MCP serverextension— Build the VSCode extensionplaywright— Install Chromium and Playwright for website E2E testing
MCP Server Setup
cd too-many-cooks && npm ci && npm run build
Add to Claude Code:
claude mcp add --transport http too-many-cooks http://localhost:4040/mcp
VSCode Extension Setup
Build the MCP server first (above), then:
cd too_many_cooks_vscode_extension
npm ci
npm run compile
npx @vscode/vsce package
code --install-extension *.vsix
Playwright Setup
cd website && npm ci
cd website && npx playwright install --with-deps chromium
Run website tests:
cd website && npm test