Full-stack-skills vscode-project-init
Scaffold a new VS Code extension project using TypeScript via Yeoman generator (yo code), creating src/extension.ts entry point and package.json manifest. Use when the user wants to start a new VS Code extension project from scratch.
install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/vscode-skills/vscode-project-init" ~/.claude/skills/partme-ai-full-stack-skills-vscode-project-init && rm -rf "$T"
manifest:
skills/vscode-skills/vscode-project-init/SKILL.mdsource content
When to use this skill
Use this skill when the user wants to start a new VS Code extension project. This is the first step in the development workflow.
How to use this skill
- Ask for Project Name: If the user hasn't provided a name, ask for it (e.g., "my-awesome-extension").
- Execute Initialization Command: Run the following command to scaffold the project non-interactively.
# Replace <project-name> with the actual name npx --package yo --package generator-code -- yo code <project-name> --template typescript --quick
- Post-Initialization:
- Change directory into the new project:
cd <project-name> - Explain the structure briefly:
: Main entry point.src/extension.ts
: Manifest file.package.json
- Run
(if not already done by the generator, thoughnpm install
usually handles it).--quick
- Change directory into the new project:
Example Interaction
User: "Create a new vscode extension named helper" Agent: "I'll initialize the project for you. Running:
npx --package yo --package generator-code -- yo code helper --template typescript --quick
...
Project created! You can now start adding features."