If you find vskill useful, give it a star on GitHub→
vskill
LoginSkillsStudioWatchSubmitPublishersTrustQueueDocsInsights
Overview
Quickstart
Studio
Core Concepts
Skills
Workflows
Integrations
Plugins
Reference
FAQ

Plugin Marketplace

9 plugins

Plugins 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.

├── SkillsSingle SKILL.md files that work with any of the 54 supported agents. Drop a file into the agent's commands directory — no configuration, no dependencies.
└── PluginsMulti-component containers for Claude Code. Bundle skills, hooks, commands, and agents under a single namespace. Enable, disable, or update the entire bundle as one unit.
When to use plugins
Use individual skills when you need one capability across multiple agents. Use plugins when you want a full domain toolkit in Claude Code — frontend, marketing, mobile, productivity, and more.

Installing plugins

Plugins are installed from GitHub repositories using npx vskill@latest install with the --plugin flag.

bash
# Install one plugin by name
npx vskill@latest install --repo anton-abyzov/vskill --plugin frontend

Every 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.

bash
# 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
Tab completion
Claude Code supports tab completion for plugin skills. Type /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.

frontend3 skills
figma-connect,frontend-design,task-skill-announcer
npx vskill@latest install --repo anton-abyzov/vskill --plugin frontend
personal3 skills
obsidian-brain,greet-anton,tax-filing
npx vskill@latest install --repo anton-abyzov/vskill --plugin personal
marketing2 skills
slack-messaging,social-media-posting
npx vskill@latest install --repo anton-abyzov/vskill --plugin marketing
skills2 skills
skill-builder,scout
npx vskill@latest install --repo anton-abyzov/vskill --plugin skills
mobile1 skill
appstore
npx vskill@latest install --repo anton-abyzov/vskill --plugin mobile
google-workspace1 skill
gws
npx vskill@latest install --repo anton-abyzov/vskill --plugin google-workspace
easychamp1 skill
tournament-manager
npx vskill@latest install --repo anton-abyzov/vskill --plugin easychamp
productivity1 skill
survey-passing
npx vskill@latest install --repo anton-abyzov/vskill --plugin productivity

SpecWeave 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.

bash
# Install the SpecWeave plugin
npx vskill@latest install --repo anton-abyzov/vskill --plugin specweave

The /skills:scout skill analyzes your project and recommends which plugins to install based on your tech stack, dependencies, and project structure.

bash
# 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
Automatic plugin loading
SpecWeave loads plugins automatically during increments. When /sw:architect detects a domain need, it chains the matching plugin skill without manual installation.

Related resources

Getting Started→CLI Reference→Submitting Skills→

On this page

What are plugins?Installing pluginsUsing pluginsPlugin catalogSpecWeave integration
vskill

Securing the AI skills supply chain.

SkillsStudioWatchPublishersTrustDocsQueueSubmitInsightsGitHubnpmSpecWeave

MIT License