Plugin Marketplace
9 pluginsPlugins bundle multiple expert skills under a single namespace. Install an entire domain with one command, then invoke any skill via /plugin:skill.
What are plugins?
vskill supports two packaging formats. Skills are the universal unit. Plugins are the power-user format for Claude Code.
Installing plugins
Plugins are installed from GitHub repositories using npx vskill@latest install with the --plugin flag.
# Install one plugin by name
npx vskill@latest install --repo anton-abyzov/vskill --plugin frontendEvery plugin install runs the same security pipeline as individual skills — 52 static patterns, LLM intent analysis, and provenance verification. There is no way to skip scanning.
Using plugins
Once installed, invoke any skill from a plugin using the /plugin:skill pattern. The plugin name is the namespace, the skill name follows the colon.
# Frontend skills
/frontend:figma-connect # Figma → React component generation
/frontend:frontend-design # Distinctive UI design beyond AI defaults
/frontend:task-skill-announcer # Per-task skill activation hints
# Marketing skills
/marketing:slack-messaging # Slack channel & thread messaging
/marketing:social-media-posting # Cross-platform social posting
# Productivity & personal
/productivity:survey-passing # Survey & form filling
/personal:obsidian-brain # Obsidian vault management
/personal:tax-filing # Corporate & personal tax prep
# Skill development
/skills:scout # Scan project, suggest skills
/skills:skill-builder # Author new skills
# App-store & workspace
/mobile:appstore # iOS / TestFlight workflow
/google-workspace:gws # Gmail, Drive, Calendar, Sheets/frontend: and press Tab to see all available skills in the frontend plugin.Plugin catalog
All 9 plugins with their skills. Each plugin can be installed independently.
figma-connect,frontend-design,task-skill-announcerobsidian-brain,greet-anton,tax-filingslack-messaging,social-media-postingskill-builder,scoutappstoregwstournament-managersurvey-passingSpecWeave integration
Plugins work seamlessly with SpecWeave increments. Install the specweave plugin to get project management skills, then use scout to discover which plugins your project needs.
# Install the SpecWeave plugin
npx vskill@latest install --repo anton-abyzov/vskill --plugin specweaveThe /skills:scout skill analyzes your project and recommends which plugins to install based on your tech stack, dependencies, and project structure.
# Let scout recommend plugins for your project
/skills:scout
# Scout analyzes your project and suggests:
# frontend → detected Next.js, React
# infra → detected GitHub Actions workflow
# testing → detected Playwright, Vitest/sw:architect detects a domain need, it chains the matching plugin skill without manual installation.Related resources