Skills

The open registry for AI agent skills — structured prompts and workflows with recommended models, example prompts, and compatible tools.

Contribute a Skill

Skills

173

Categories

9

Compatible tools

5

Contributors

1

Showing 6484 of 100 skills

Cloud Cost Optimizerintermediate

Analyzes cloud spend and produces a FinOps optimization plan. Covers rightsizing, autoscaling, spot/reserved/savings plans, storage tiering, idle resource cleanup, data transfer reduction, and tagging for cost allocation. Prioritizes actions by savings and risk, and defines guardrails and budgets to prevent regressions.

4 models
SLO & Error Budget Plannerintermediate

Turns reliability goals into concrete SLIs, SLOs, and error budgets. Helps choose the right service level indicators, set realistic targets from historical data, compute burn rates, and design multi-window multi-burn-rate alerting so teams get paged before the budget is exhausted.

3 models
Data Quality Validatorintermediate

Designs data quality checks for tables, pipelines, and warehouses. Generates expectation suites covering schema conformance, null and uniqueness constraints, referential integrity, freshness, and statistical drift, then wires them into pipelines so bad data is caught before it reaches dashboards or models.

3 models
Model Router Designeradvanced

Designs routing layers that dispatch requests across multiple LLMs based on task type, difficulty, latency, cost, and reliability. Covers classifier-based and heuristic routing, fallbacks and retries across providers, quality scoring, and A/B evaluation of routing policies. Helps teams get frontier quality where it matters and cheap models everywhere else.

4 models
WebSocket Service Builderadvanced

Designs and implements real-time services using WebSockets and Server-Sent Events. Covers connection lifecycle, heartbeats, reconnection with backoff, room/channel fan-out, backpressure, authentication on upgrade, and horizontal scaling with a pub/sub backplane. Produces production patterns for chat, live dashboards, collaborative editing, and streaming updates.

4 models
OAuth Flow Implementeradvanced

Implements secure OAuth 2.0 and OpenID Connect flows including authorization code with PKCE, client credentials, and device code grants. Generates token exchange logic, refresh handling, state/nonce validation, and secure token storage. Flags common pitfalls like implicit flow usage, missing PKCE, and insecure redirect URI handling.

4 models
CLI Tool Builderintermediate

Designs and scaffolds ergonomic command-line tools with subcommands, flags, config files, shell completions, and helpful error output. Covers argument parsing conventions, exit codes, stdin/stdout piping, colored output, progress indicators, and cross-platform packaging. Produces maintainable CLIs that follow POSIX conventions and feel great to use.

4 models
Meeting Agenda Plannerbeginner

Builds focused, time-boxed meeting agendas from a goal and a list of topics. Defines clear objectives and desired outcomes, allocates time per item, assigns owners, suggests pre-reads, and prepares decision points and discussion prompts so meetings stay purposeful and produce action items.

3 models
Cohort Analysisintermediate

Builds retention and behavioral cohort analyses from event or transaction data. Defines cohorts by acquisition date or attributes, computes retention and churn curves, generates the SQL or pandas code to produce cohort tables, and interprets the results into actionable insights about engagement and lifecycle.

3 models
Dependency Upgraderintermediate

Plans and executes safe dependency upgrades across a project. Analyzes current versions, reads changelogs and release notes for breaking changes, sequences upgrades to minimize risk, applies required code migrations, and verifies with builds and tests. Works across npm, pip, Maven, Cargo, and Go modules.

3 models
Multi-Agent Orchestratoradvanced

Designs multi-agent systems where a coordinator delegates sub-tasks to specialist agents, verifies intermediate results, and synthesizes a final answer. Covers agent role definition, routing and delegation strategy, shared memory and message passing, verification loops, cost and latency budgeting, and failure handling across frameworks like LangGraph, CrewAI, or a custom orchestrator.

3 models
Incident Postmortem Writerintermediate

Turns incident timelines, alerts, and chat logs into a clear, blameless postmortem. Produces an executive summary, impact assessment, detailed timeline, root-cause analysis using techniques like the five whys, and a prioritized list of follow-up action items with owners, in a format ready to share with stakeholders.

3 models
Market Research Analystintermediate

Conducts structured market and competitor research and turns it into a decision-ready brief. Covers market sizing (TAM/SAM/SOM), competitor feature and pricing matrices, positioning and differentiation, customer segments, and SWOT, with clearly stated assumptions and sources so conclusions can be traced and challenged.

3 models
Helm Chart Generatorintermediate

Generates and refactors Helm charts to package Kubernetes applications. Produces templated manifests, values.yaml with sensible defaults, helpers, chart dependencies, and hooks, and parameterizes images, resources, probes, and ingress so a workload can be deployed consistently across environments.

3 models
Synthetic Data Generatorintermediate

Generates realistic synthetic datasets that preserve the statistical properties and relationships of source data without exposing real records. Covers schema-aware generation, correlated and time-series fields, class balancing for ML training, and constraint preservation, with code for tools like SDV, Faker, or custom generators.

3 models
Voice UI Script Writerintermediate

Designs conversational scripts and dialog flows for voice assistants, IVR systems, and chatbots. Crafts natural prompts and responses, handles confirmations, errors, and re-prompts, designs branching flows and fallbacks, and adapts tone for the brand while keeping turns concise and accessible for audio-first interfaces.

3 models
Dockerfile Optimizerintermediate

Reviews and rewrites Dockerfiles for smaller images, faster builds, and better security. Applies multi-stage builds, optimal layer ordering and caching, minimal base images, non-root users, and .dockerignore tuning, and flags vulnerabilities and bloat while keeping the build reproducible.

3 models
Prompt Injection Testeradvanced

Red-teams LLM applications for prompt injection, jailbreaks, and data exfiltration risks. Generates adversarial test cases for direct and indirect injection, system prompt leakage, tool-call abuse, and unsafe output handling, then reports findings with severity ratings and concrete mitigations such as input isolation, output filtering, and least-privilege tools.

3 models
RAG Pipeline Builderadvanced

Designs and implements retrieval-augmented generation (RAG) pipelines end to end. Covers document chunking strategies, embedding model selection, vector store configuration, hybrid and re-ranking retrieval, prompt construction with grounded citations, and evaluation harnesses for measuring retrieval quality and answer faithfulness.

4 models
Customer Support Responderbeginner

Drafts accurate, empathetic customer support replies grounded in a knowledge base or help docs. Classifies intent and urgency, matches the right tone, proposes solutions with clear steps, suggests escalation when needed, and outputs canned-response and macro templates for common ticket categories.

3 models
Chart Generatorbeginner

Turns raw data and natural-language requests into clear, well-labeled charts and the code to render them. Recommends the right chart type for the data and message, handles aggregation and formatting, and outputs production-ready visualizations using libraries like Matplotlib, Plotly, Vega-Lite, or Chart.js with accessible color palettes.

3 models

Skills vs MCP servers

what's the difference?

Skillsthe “what to do”

A skillA reusable, structured prompt/workflow with recommended models, an example prompt, and compatible tools. packages know-how — instructions, an example promptA ready-to-use prompt template that demonstrates how to invoke the skill., and recommended models — so an agent performs a task consistently. Skills add knowledge, not new connections.

MCP serversthe “how to connect”

An MCP serverModel Context Protocol server — a standard way to expose tools, resources, and prompts to AI agents and IDEs. gives an agent new capabilities by connecting it to real systems (databases, APIs, files) over a transportHow the client talks to the server: stdio (local process), SSE, or HTTP streaming.. MCP adds connections and actions, not task instructions.

Rule of thumb: reach for a skill when you need the model to do a task well, and an MCP server when you need it to reach a tool or system. They compose — a skill can rely on tools an MCP server provides.

Built a useful skill?

Submit a SKILL.md — it's open source and community-maintained.

Contribute on GitHub