Vibe-Skills
AgentFreeVibe-Skills is an all-in-one AI skills package. It seamlessly integrates expert-level capabilities and context management into a general-purpose skills package, enabling any AI agent to instantly upgrade its functionality—eliminating the friction of fragmented tools and complex harnesses.
Capabilities15 decomposed
canonical router with intent-driven skill pack selection
Medium confidenceRoutes natural language user intents to specific skill packs by analyzing intent keywords and context rather than allowing models to hallucinate tool selection. The router enforces priority and exclusivity rules, mapping requests through a deterministic decision tree that bridges user intent to governed execution paths. This prevents 'skill sleep' (where models forget available tools) by maintaining explicit routing authority separate from runtime execution.
Separates Route Authority (selecting the right tool) from Runtime Authority (executing under governance), enforcing explicit routing rules instead of relying on LLM tool-calling hallucination. Uses keyword-based intent analysis with priority/exclusivity constraints rather than embedding-based semantic matching.
More deterministic and auditable than OpenAI function calling or Anthropic tool_use, which rely on model judgment; prevents skill selection drift by enforcing explicit routing rules rather than probabilistic model behavior.
6-stage governed runtime execution protocol
Medium confidenceEnforces a fixed, multi-stage execution pipeline (6 stages) that transforms requests through requirement clarification, planning, execution, verification, and governance gates. Each stage has defined entry/exit criteria and governance checkpoints, preventing 'black-box sprinting' where execution happens without requirement validation. The runtime maintains traceability and enforces stability through the VCO (Vibe Core Orchestrator) engine.
Implements a fixed 6-stage protocol with explicit governance gates at each stage, enforced by the VCO engine. Unlike traditional agentic loops that iterate dynamically, this enforces a deterministic path: intent → requirement clarification → planning → execution → verification → governance. Each stage has defined entry/exit criteria and cannot be skipped.
More structured and auditable than ReAct or Chain-of-Thought patterns which allow dynamic looping; provides explicit governance checkpoints at each stage rather than post-hoc validation, preventing execution drift before it occurs.
custom workflow and skill onboarding with contribution process
Medium confidenceProvides a formal process for onboarding custom skills into the Vibe-Skills library, including skill contract definition, governance verification, testing infrastructure, and contribution review. Custom skills must define JSON schemas, implement skill contracts, pass verification gates, and undergo governance review before being added to the library. This ensures all skills meet quality and governance standards. The onboarding process is documented and reproducible.
Implements formal skill onboarding process with contract definition, verification gates, and governance review. Unlike ad-hoc tool integration, custom skills must meet strict quality and governance standards before being added to the library. Process is documented and reproducible.
More rigorous than LangChain custom tool integration; enforces explicit contracts, verification gates, and governance review rather than allowing loose tool definitions. Provides formal contribution process rather than ad-hoc integration.
skill contracts and json schema validation
Medium confidenceDefines explicit skill contracts using JSON schemas that specify input types, output types, required parameters, and execution constraints. Contracts are validated at skill composition time (preventing incompatible combinations) and at execution time (ensuring inputs/outputs match schema). Schema validation is strict — skills that produce outputs not matching their contract will fail verification gates. This enables type-safe skill composition and prevents runtime type errors.
Enforces strict JSON schema-based contracts for all skills, validating at both composition time (preventing incompatible combinations) and execution time (ensuring outputs match declared types). Unlike loose tool definitions, skills must produce outputs exactly matching their contract schemas.
More type-safe than dynamic Python tool definitions; uses JSON schemas for explicit contracts rather than relying on runtime type checking. Validates at composition time to prevent incompatible skill combinations before execution.
runtime-neutral testing infrastructure with replay tests
Medium confidenceProvides testing infrastructure that validates skill execution independently of the runtime environment. Tests include unit tests for individual skills, integration tests for skill compositions, and replay tests that re-execute recorded execution traces to ensure reproducibility. Replay tests capture execution history and can re-run them to verify behavior hasn't changed. This enables regression testing and ensures skills behave consistently across versions.
Provides runtime-neutral testing with replay tests that re-execute recorded execution traces to verify reproducibility. Unlike traditional unit tests, replay tests capture actual execution history and can detect behavior changes across versions. Tests are independent of runtime environment.
More comprehensive than unit tests alone; replay tests verify reproducibility across versions and can detect subtle behavior changes. Runtime-neutral approach enables testing in any environment without platform-specific test setup.
tool registry and fallback chains for skill invocation
Medium confidenceMaintains a tool registry that maps skill identifiers to implementations and supports fallback chains where if a primary skill fails, alternative skills can be invoked automatically. Fallback chains are defined in skill pack manifests and can be nested (fallback to fallback). The registry tracks skill availability, version compatibility, and execution history. Failed skills are logged and can trigger alerts or manual intervention.
Implements tool registry with explicit fallback chains defined in skill pack manifests. Fallback chains can be nested and are evaluated automatically if primary skills fail. Unlike simple error handling, fallback chains provide deterministic alternative skill selection.
More sophisticated than simple try-catch error handling; provides explicit fallback chains with nested alternatives. Tracks skill availability and execution history rather than just logging failures.
proof bundles and platform promotion for skill validation
Medium confidenceGenerates proof bundles that contain execution traces, verification results, and governance validation reports for skills. Proof bundles serve as evidence that skills have been tested and validated. Platform promotion uses proof bundles to validate skills before promoting them to production. This creates an audit trail of skill validation and enables compliance verification.
Generates immutable proof bundles containing execution traces, verification results, and governance validation reports. Proof bundles serve as evidence of skill validation and enable compliance verification. Platform promotion uses proof bundles to validate skills before production deployment.
More rigorous than simple test reports; proof bundles contain execution traces and governance validation evidence. Creates immutable audit trails suitable for compliance verification.
execution grades with automatic scaling (m/l/xl modes)
Medium confidenceAutomatically scales agent execution between three modes: M (single-agent, lightweight), L (multi-stage, coordinated), and XL (multi-agent, distributed). The system analyzes task complexity and available resources to select the appropriate execution grade, then configures the runtime accordingly. This prevents over-provisioning simple tasks while ensuring complex workflows have sufficient coordination infrastructure.
Provides three discrete execution modes (M/L/XL) with automatic selection based on task complexity analysis, rather than requiring developers to manually choose between single-agent and multi-agent architectures. Each grade has pre-configured coordination patterns and governance rules.
More flexible than static single-agent or multi-agent frameworks; avoids the complexity of dynamic agent spawning by using pre-defined grades with known resource requirements and coordination patterns.
340+ skill library with pack manifest system
Medium confidenceProvides a curated library of 340+ specialized skills organized into domain-specific packs (planning, engineering, life sciences, etc.) with explicit pack manifests defining dependencies, contracts, and execution requirements. Skills are not loose functions but governed entities with JSON schemas, version constraints, and verification gates. The pack manifest system enables composition of complex workflows from verified skill combinations.
Organizes 340+ skills into domain-specific packs with explicit manifests defining contracts, dependencies, and verification gates. Unlike tool registries that treat tools as interchangeable, this system enforces skill contracts (JSON schemas) and version constraints, preventing incompatible skill combinations at manifest validation time.
More structured than LangChain tool registries or OpenAI plugin systems; enforces explicit contracts and dependency management rather than allowing loose tool composition. Provides domain-specific skill curation (planning, engineering, life sciences) rather than generic tool collections.
model context protocol (mcp) integration with entry points
Medium confidenceIntegrates with the Model Context Protocol (MCP) to expose Vibe-Skills capabilities as standardized MCP entry points, enabling seamless integration with MCP-compatible clients (Claude, other LLMs). The integration maps skill packs to MCP resources and tools, allowing external models to discover and invoke Vibe-Skills without custom API wrappers. This enables Vibe-Skills to function as a backend service for multiple LLM frontends.
Provides native MCP server implementation that maps Vibe-Skills skill packs to MCP resources and tools, enabling external LLMs (Claude, etc.) to discover and invoke skills without custom API wrappers. This treats Vibe-Skills as a backend service rather than a standalone agent framework.
More standardized than custom API wrappers or plugin systems; uses MCP protocol which is becoming industry standard for LLM tool integration, enabling compatibility with multiple LLM clients without rebuilding integrations.
governance engine with 129 configuration-based policies
Medium confidenceEnforces 129 configuration-based governance policies that prevent workspace drift, protect against skill misuse, and ensure execution compliance. Policies are declaratively defined (not hard-coded) and can be composed to create complex governance rules. The governance engine validates requests at routing, planning, and execution stages, blocking non-compliant operations before they execute. Policies cover skill access control, resource limits, output validation, and workspace isolation.
Provides 129 pre-defined, composable governance policies that are declaratively configured rather than hard-coded. Policies are evaluated at multiple stages (routing, planning, execution) and can be combined to create complex governance rules. This enables organizations to enforce compliance without modifying agent code.
More comprehensive than simple role-based access control; provides declarative policy composition rather than requiring code changes. Evaluates policies at multiple execution stages rather than only at entry/exit, preventing non-compliant operations before they execute.
verification gates and governance validation system
Medium confidenceImplements multi-stage verification gates that validate skill execution, output compliance, and governance adherence before results are returned. Verification gates use JSON schemas to validate skill contracts, check output against content policies, and ensure resource usage stays within limits. Gates can be chained to create complex validation pipelines. Failed verifications block execution and provide detailed remediation guidance.
Implements chained verification gates that validate skill contracts (via JSON schemas), policy compliance, and resource usage at multiple execution stages. Unlike post-hoc validation, gates are integrated into the execution pipeline and can block non-compliant results before they're returned.
More proactive than post-execution monitoring; validates outputs before they reach users rather than only logging violations. Provides schema-based contract validation rather than relying on runtime type checking.
version governance and release lifecycle management
Medium confidenceManages skill pack versions, dependencies, and release lifecycles through explicit version governance rules. The system tracks version compatibility, enforces semantic versioning constraints, and prevents incompatible skill combinations from being deployed. Release lifecycle includes staging, testing, and promotion gates. This ensures reproducible agent behavior across deployments and prevents version drift.
Provides explicit version governance with semantic versioning constraints, dependency tracking, and release promotion gates. Unlike package managers that allow flexible version ranges, this enforces strict version locks and compatibility checking to ensure reproducible agent behavior.
More rigorous than pip/npm version management for AI agents; enforces explicit version locks and compatibility validation rather than allowing flexible version ranges that could cause behavior drift.
router overlays and llm acceleration patterns
Medium confidenceProvides router overlay mechanisms that accelerate routing decisions by caching intent-to-skill mappings and using LLM-based pattern matching to predict likely skill selections. Overlays can be stacked to create multi-level routing hierarchies. The system learns from execution history to optimize routing performance, reducing latency for common intent patterns. Overlays are transparent to the underlying canonical router.
Implements stackable router overlays that cache intent-to-skill mappings and use LLM-based pattern matching to accelerate routing decisions. Overlays are transparent to the canonical router and can be composed in multi-level hierarchies. Learning from execution history optimizes routing for common patterns.
More sophisticated than simple caching; uses LLM-based pattern matching to predict likely skill selections and learns from execution history. Provides multi-level routing hierarchies rather than flat caching.
host adapters and distribution lanes for deployment flexibility
Medium confidenceProvides host adapters that enable Vibe-Skills to run on different deployment targets (local, cloud, edge) without code changes. Distribution lanes define deployment configurations for different environments (dev, staging, production). Adapters handle platform-specific concerns (containerization, scaling, monitoring) while maintaining consistent skill execution semantics. This enables the same skill pack to run on Kubernetes, serverless, or local environments.
Provides pluggable host adapters that abstract platform-specific deployment concerns while maintaining consistent skill execution semantics. Distribution lanes define environment-specific configurations without requiring code changes. Enables same skill pack to run on Kubernetes, serverless, or local environments.
More flexible than framework-specific deployment (e.g., LangChain on LangServe); provides platform-agnostic abstraction layer that works across heterogeneous environments. Separates deployment configuration from agent code.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Vibe-Skills, ranked by overlap. Discovered automatically through the match graph.
superpowers-zh
🦸 AI 编程超能力 · 中文增强版 — superpowers(116k+ ⭐)完整汉化 + 6 个中国原创 skills,让 Claude Code / Copilot CLI / Hermes Agent / Cursor / Windsurf / Kiro / Gemini CLI 等 16 款 AI 编程工具真正会干活
antigravity-awesome-skills
Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
intentkit
IntentKit is an open-source, self-hosted cloud agent cluster that manages a collaborative team of AI agents for you.
mcp-agent
Build effective agents using Model Context Protocol and simple workflow patterns
Skill_Seekers
Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills with automatic conflict detection
Skill_Seekers
Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills with automatic conflict detection
Best For
- ✓Teams building multi-agent systems requiring deterministic tool selection
- ✓Developers migrating from free-form LLM tool calling to governed routing
- ✓Organizations needing audit trails of why specific skills were invoked
- ✓Enterprise teams requiring audit-compliant AI execution
- ✓Regulated industries (healthcare, finance) needing execution governance
- ✓Multi-agent systems where stage coordination is critical
- ✓Teams building domain-specific skills for internal use or sharing
- ✓Organizations standardizing on Vibe-Skills and adding proprietary skills
Known Limitations
- ⚠Routing rules must be explicitly configured — no automatic inference of intent-to-skill mappings
- ⚠Requires upfront keyword taxonomy definition for intent matching
- ⚠Cannot handle ambiguous intents that legitimately map to multiple skill packs without explicit priority rules
- ⚠Fixed 6-stage pipeline adds latency (~200-500ms per stage depending on governance checks)
- ⚠Cannot skip stages — all requests must traverse the full pipeline even for simple tasks
- ⚠Governance gates may block execution if policies are overly restrictive, requiring manual override
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 22, 2026
About
Vibe-Skills is an all-in-one AI skills package. It seamlessly integrates expert-level capabilities and context management into a general-purpose skills package, enabling any AI agent to instantly upgrade its functionality—eliminating the friction of fragmented tools and complex harnesses.
Categories
Alternatives to Vibe-Skills
程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(DeepSeek / GPT / Gemini / Claude)、最新 AI 资讯、Prompt 提示词大全、AI 知识百科(Agent Skills / RAG / MCP / A2A)、AI 编程教程(Harness Engineering)、AI 工具用法(Cursor / Claude Code / TRAE / Lovable / Copilot)、AI 开发框架教程(Spring AI / LangChain)、AI 产品变现指南,帮你快速掌握 AI 技术,走在时
Compare →A curated list of vibe coding references, collaborating with AI to write code.
Compare →Are you the builder of Vibe-Skills?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →