Build, test, and package the Too Many Cooks VSCode extension
Scanned 9/9/2026
Install to Claude Code
npx -y skills add Nimblesite/too-many-cooks --skill build-extension --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Build Extension?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/nimblesite-build-extension)More formats (shields.io, HTML) on the badges page.
---
name: build-extension
description: Build, test, and package the Too Many Cooks VSCode extension
argument-hint: "[build|test|package|install]"
disable-model-invocation: true
allowed-tools: Bash
---
# Build VSCode Extension
Builds the Too Many Cooks VSCode extension (`too_many_cooks_vscode_extension/`).
## Full build (MCP server + extension + .vsix)
```bash
bash too_many_cooks_vscode_extension/build.sh
```
This does:
1. Builds MCP server: `npm run build`
2. Compiles extension: `npm run compile`
3. Packages: `vsce package` → `.vsix` file
## Build MCP server only
```bash
cd too-many-cooks && npm ci && npm run build
```
## Test
```bash
cd too_many_cooks_vscode_extension && npm run pretest && npm test
```
On headless Linux: `xvfb-run -a npm test`
## Install into VSCode
```bash
code --install-extension too_many_cooks_vscode_extension/*.vsix
```
## Architecture
TypeScript → `tsc` → VSCode-compatible JS module.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.