If you find vskill useful, give it a star on GitHub

Plugin Marketplace

13 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 49 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, infra, mobile, ML, and more.

Installing plugins

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

bash
# Install one plugin by name
npx vskill 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:nextjs        # Next.js best practices and patterns
/frontend:react-native  # React Native development
/frontend:i18n          # Internationalization setup

# Infrastructure skills
/infra:aws              # AWS architecture and deployment
/infra:github-actions   # CI/CD pipeline configuration
/infra:devsecops        # Security-first DevOps practices

# Mobile skills
/mobile:flutter         # Flutter cross-platform development
/mobile:swiftui         # SwiftUI for iOS/macOS
/mobile:expo            # Expo managed workflow
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 13 plugins with their skills. Each plugin can be installed independently.

frontend5 skills
react-native,nextjs,figma,design,i18n
npx vskill install --repo anton-abyzov/vskill --plugin frontend
infra7 skills
aws,azure,gcp,github-actions,devsecops,opentelemetry,secrets
npx vskill install --repo anton-abyzov/vskill --plugin infra
mobile8 skills
flutter,swiftui,jetpack,expo,capacitor,deep-linking,testing,appstore
npx vskill install --repo anton-abyzov/vskill --plugin mobile
ml5 skills
rag,langchain,huggingface,fine-tuning,edge
npx vskill install --repo anton-abyzov/vskill --plugin ml
testing3 skills
performance,accessibility,mutation
npx vskill install --repo anton-abyzov/vskill --plugin testing
backend2 skills
java-spring,rust
npx vskill install --repo anton-abyzov/vskill --plugin backend
kafka2 skills
streams-topology,n8n
npx vskill install --repo anton-abyzov/vskill --plugin kafka
confluent3 skills
kafka-connect,ksqldb,schema-registry
npx vskill install --repo anton-abyzov/vskill --plugin confluent
payments2 skills
billing,pci
npx vskill install --repo anton-abyzov/vskill --plugin payments
security1 skill
patterns
npx vskill install --repo anton-abyzov/vskill --plugin security
blockchain1 skill
blockchain-core
npx vskill install --repo anton-abyzov/vskill --plugin blockchain
google-workspace1 skill
gws
npx vskill install --repo anton-abyzov/vskill --plugin google-workspace
skills1 skill
scout
npx vskill install --repo anton-abyzov/vskill --plugin skills

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