Plugin Marketplace
13 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 install with the --plugin flag.
# 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.
# 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
/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.
react-native,nextjs,figma,design,i18naws,azure,gcp,github-actions,devsecops,opentelemetry,secretsflutter,swiftui,jetpack,expo,capacitor,deep-linking,testing,appstorerag,langchain,huggingface,fine-tuning,edgeperformance,accessibility,mutationjava-spring,ruststreams-topology,n8nkafka-connect,ksqldb,schema-registrybilling,pcipatternsblockchain-coregwsscoutSpecWeave 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 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.
# 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