From partme-ai-full-stack-skills
Packages VS Code extensions into .vsix files using vsce, verifies pre-flight checklist including publisher, README, CHANGELOG, and guides local installation via CLI or GUI. Use after development for distribution.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Use this skill when the development is complete and the user wants to install the extension or share it.
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 development is complete and the user wants to install the extension or share it.
vsce: Ensure the packaging tool is installed.
npm install -g vsce
vsce package
.vsix file (e.g., my-extension-0.0.1.vsix).Before packaging, ensure:
package.json has a valid publisher field. (If not, user can use any string for local testing, e.g., "local").README.md is updated.CHANGELOG.md is updated.To install the .vsix file:
code --install-extension my-extension-0.0.1.vsix