From partme-ai-full-stack-skills
Scaffolds a new VS Code extension project using Yeoman generator (yo code) with TypeScript, creating src/extension.ts entry point and package.json manifest. Use when starting a new extension from scratch.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Use this skill when the user wants to start a new VS Code extension project. This is the first step in the development workflow.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Use this skill when the user wants to start a new VS Code extension project. This is the first step in the development workflow.
# Replace <project-name> with the actual name
npx --package yo --package generator-code -- yo code <project-name> --template typescript --quick
cd <project-name>src/extension.ts: Main entry point.package.json: Manifest file.npm install (if not already done by the generator, though --quick usually handles it).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."