Discover and install skills, docs, and rules to enhance your AI agent's capabilities.
| Name | Contains | Score |
|---|---|---|
clerk-observability jeremylongshore/claude-code-plugins-plus-skills Implement monitoring, logging, and observability for Clerk authentication. Use when setting up monitoring, debugging auth issues in production, or implementing audit logging. Trigger with phrases like "clerk monitoring", "clerk logging", "clerk observability", "clerk metrics", "clerk audit log". | Skills | 85 2.25x Agent success vs baseline Impact 97% 2.25xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
clay-migration-deep-dive jeremylongshore/claude-code-plugins-plus-skills Migrate to Clay from other enrichment tools or consolidate multiple data sources into Clay. Use when migrating from ZoomInfo, Apollo, Clearbit, or custom enrichment scripts to Clay, or consolidating fragmented enrichment workflows. Trigger with phrases like "migrate to clay", "clay migration", "switch to clay", "replace zoominfo with clay", "consolidate enrichment tools". | Skills | 85 1.61x Agent success vs baseline Impact 89% 1.61xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
performance-optimization fernandezbaptiste/rails_ai_agents Identifies and fixes Rails performance issues including N+1 queries, slow queries, and memory problems. Use when optimizing queries, fixing N+1 issues, improving response times, or when user mentions performance, slow, optimization, or Bullet gem. | Skills | 85 1.01x Agent success vs baseline Impact 89% 1.01xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
Use when connecting a workflow to Discord using the API Contains: discord-connector Use when the user wants to read from, post to, search, summarize, or organize activity in Discord. Handles common Discord workflows such as fetching channel history, summarizing threads, identifying action items, drafting announcements, routing support issues, and preparing engineering-ready incident or community updates. Good triggers include "check Discord", "summarize this channel", "post this update to Discord", "find what was said about X", and "turn this Discord thread into a handoff". | Skills | 85 1.01x Agent success vs baseline Impact 69% 1.01xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.1.1 |
notion-spec-to-implementation openai/skills Turn Notion specs into implementation plans, tasks, and progress tracking; use when implementing PRDs/feature specs and creating Notion plans + tasks from them. | Skills | 85 1.49x Agent success vs baseline Impact 97% 1.49xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.0.1 |
cloudflare-deploy openai/skills Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare. | Skills | 85 1.34x Agent success vs baseline Impact 89% 1.34xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
batch-draft-writer superhuman/mcp-mail Drafts multiple email replies or follow-ups in batch using the Superhuman Mail MCP server — processing your inbox in bulk rather than one email at a time. Use this skill whenever someone asks to "draft replies to my unread emails", "respond to all my emails", "write follow-ups for my meetings this week", "batch draft responses", "draft emails for all threads that need a reply", "auto-draft my inbox", "help me respond to everything", "write follow-up emails based on my meetings", "process my inbox", "draft responses to these threads", or any variation of wanting multiple emails drafted at once. Also trigger when someone says "I have a bunch of emails to respond to", "help me get through my inbox", "draft a mail merge", "send personalized emails to these people", or wants to create multiple drafts from a single prompt. Trigger broadly — if someone wants more than one email drafted, this skill should activate. | Skills | 85 1.84x Agent success vs baseline Impact 85% 1.84xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
himank-test/tessl-llvm v0.5.1 LLVM 22.x tile for building compilers, language runtimes, and out-of-tree tooling Contains: add-alias-analysis Use and extend alias analysis in LLVM 22. Covers querying AAResults from a function pass, using IR-level hints (noalias, TBAA) as the preferred approach, writing a custom AA analysis with the New Pass Manager, and common ModRef patterns. add-attributes-metadata Add function/parameter attributes and IR metadata to LLVM 22 IR to unlock optimizer opportunities. Covers NoUnwind, ReadNone, NoCapture, Noundef, loop vectorization hints, branch weights, TBAA, !range, and !nonnull. add-calling-convention Add or wire a calling convention in an LLVM 22 in-tree target or document IR-level ABI choices for out-of-tree frontends. Covers CallingConv IDs, TableGen CallingConv.td, CCState/CCValAssign hooks, ISel lowering, and tests. add-debug-info Add DWARF debug info to an existing LLVM 22 IR frontend. Covers DIBuilder setup, compile unit, function subprograms, local variable declarations, source locations on instructions, and module flags. add-exception-handling Add exception handling (try/catch/finally) to an LLVM 22 IR frontend using invoke, landingpad, and the Itanium C++ ABI. Covers personality function, invoke vs call, catch dispatch, __cxa_begin/end_catch, resume, cleanup blocks, and Windows SEH notes. add-gc-statepoints Add garbage-collection support to an LLVM 22 IR frontend. Covers the shadow-stack (gcroot) model for simple GCs and the statepoint/gc.relocate model for moving/relocating collectors, including the RewriteStatepointsForGC pass and StackMap section. add-intrinsic Add a new LLVM IR intrinsic in LLVM 22. Covers TableGen definition, header regeneration, IRBuilder call-site usage, verifier rules, and lit testing. add-lto Enable Link-Time Optimization (LTO and ThinLTO) for an LLVM 22-based compiler. Covers full LTO vs ThinLTO trade-offs, bitcode emission from a frontend, LLD integration, out-of-tree whole-program optimization via ModulePassManager, and common debugging tips. add-sanitizer Instrument LLVM 22 IR for AddressSanitizer (ASan), UndefinedBehaviorSanitizer (UBSan), or ThreadSanitizer (TSan). Covers enabling sanitizers via TargetMachine/PassBuilder, adding manual shadow-memory checks, inserting UBSan runtime calls, and CMake setup. add-vectorization-hint Guide LLVM 22's auto-vectorizer and SLP vectorizer from a frontend. Covers loop vectorization metadata, interleaving, loop distribution, marking parallel accesses, controlling SLP, and how to check whether vectorization happened. frontend-to-ir Lower a toy language AST to LLVM 22 IR using IRBuilder. Covers project setup, AST node types, expression lowering, control flow, functions, structs, and applying mem2reg. jit-setup Set up an ORC JIT v2 execution engine for a language runtime using LLVM 22. Covers LLJIT, LLLazyJIT, ThreadSafeModule, symbol exposure, optimization pipeline, and calling JIT'd functions. lit-filecheck Write lit tests with FileCheck for LLVM 22 IR transforms, pass output, and codegen. Covers RUN lines, CHECK patterns, common directives, negative checks, and running tests with llvm-lit. lower-struct-types Lower source-language struct, union, and tuple types to LLVM 22 IR. Covers creating StructType, computing field offsets, emitting GEP for field access, packed vs. padded layouts, unions via largest-member types, passing structs by value vs. pointer, and the alloca+mem2reg pattern for struct locals. new-target-backend Add a new target backend skeleton to LLVM 22. Covers CMake registration, TargetInfo, TargetMachine, MCTargetDesc, minimal TableGen register/instruction defs, and wiring into the LLVM build. out-of-tree-setup Scaffold an out-of-tree LLVM 22 compiler/language project from scratch. Covers CMake configuration, finding LLVM, linking components, a minimal LLVMContext driver, and build instructions. add-npm-pass Add a New Pass Manager (NPM) pass to an LLVM 22 in-tree or out-of-tree project. Covers FunctionPass, ModulePass, LoopPass, and CGSCCPass kinds, registration, pipeline wiring, CMake, and lit testing. version-sync Migrate an out-of-tree LLVM project to a new LLVM version (e.g., LLVM 21 → 22). Covers CMake bump, common LLVM 22 API breakages, header moves, pass renames, and opaque pointer migration. | SkillsDocsRules | 85 1.23x Agent success vs baseline Impact 96% 1.23xAverage score across 5 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.5.1 |
Build real-time applications with PubNub pub/sub messaging Contains: pubnub-app-developer Build real-time applications with PubNub pub/sub messaging | Skills | 85 1.27x Agent success vs baseline Impact 88% 1.27xAverage score across 15 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.1.4 |
security-review affaan-m/everything-claude-code 在添加身份验证、处理用户输入、处理机密信息、创建API端点或实现支付/敏感功能时使用此技能。提供全面的安全检查清单和模式。 | Skills | 85 1.04x Agent success vs baseline Impact 96% 1.04xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
java-regression-test-generator ArabelaTso/Skills-4-SE Automatically generate regression tests for Java codebases by analyzing changes between old and new code versions. Use when users need to: (1) Generate tests after refactoring or code changes, (2) Ensure previously tested behavior still works in new versions, (3) Cover modified or newly added code paths, (4) Migrate existing tests to work with updated APIs or signatures, (5) Maintain test coverage during code evolution. Supports JUnit and TestNG frameworks with unit tests, parameterized tests, and exception testing patterns. | Skills | 85 1.00x No change in agent success vs baseline Impact 76% 1.00xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
indices indicesio/cli Use this skill whenever the user wants to interact with a website – scraping data, filling forms, logging in, navigating flows, extracting structured information, or running any task a human would do in a browser. | Skills | 85 4.57x Agent success vs baseline Impact 96% 4.57xAverage score across 3 eval scenarios Securityby Critical Do not install without reviewing Reviewed: Version: 0.0.2 |
tailwind-design-system wshobson/agents Build scalable design systems with Tailwind CSS v4, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI patterns. | Skills | 85 1.13x Agent success vs baseline Impact 100% 1.13xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.2 |
otel-semantic-conventions dash0hq/agent-skills OpenTelemetry Semantic Conventions expert. Use when selecting, applying, or reviewing telemetry attributes. Triggers on tasks involving attribute selection, semantic convention compliance, attribute migration, or custom attribute decisions. Covers the attribute registry, naming patterns, attribute placement, and versioning. For span names, span kinds, and span status codes, see the otel-instrumentation skill. | Skills | 85 1.17x Agent success vs baseline Impact 96% 1.17xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
langchain-data-handling jeremylongshore/claude-code-plugins-plus-skills Implement LangChain RAG pipelines with document loaders, text splitters, embeddings, and vector stores (Chroma, Pinecone, FAISS). Trigger: "langchain RAG", "langchain documents", "langchain vector store", "langchain embeddings", "document loaders", "text splitters", "retrieval". | Skills | 85 1.74x Agent success vs baseline Impact 96% 1.74xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
gamma-rate-limits jeremylongshore/claude-code-plugins-plus-skills Understand and manage Gamma API rate limits effectively. Use when hitting rate limits, optimizing API usage, or implementing request queuing systems. Trigger with phrases like "gamma rate limit", "gamma quota", "gamma 429", "gamma throttle", "gamma request limits". | Skills | 85 1.84x Agent success vs baseline Impact 96% 1.84xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
payload payloadcms/skills Use when working with Payload projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior. | Skills | 85 1.01x Agent success vs baseline Impact 96% 1.01xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
coderabbit-security-basics jeremylongshore/claude-code-plugins-plus-skills Configure CodeRabbit for security-focused code review with secret detection and vulnerability scanning. Use when setting up security review rules, configuring secret detection in PRs, or hardening CodeRabbit configuration for compliance requirements. Trigger with phrases like "coderabbit security", "coderabbit secrets", "secure coderabbit", "coderabbit vulnerability detection", "coderabbit security review". | Skills | 85 1.26x Agent success vs baseline Impact 96% 1.26xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.2 |
clerk-local-dev-loop jeremylongshore/claude-code-plugins-plus-skills Set up local development workflow with Clerk. Use when configuring development environment, testing auth locally, or setting up hot reload with Clerk. Trigger with phrases like "clerk local dev", "clerk development", "test clerk locally", "clerk dev environment". | Skills | 85 1.21x Agent success vs baseline Impact 96% 1.21xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
zai-cli jeremylongshore/claude-code-plugins-plus-skills Execute z.AI CLI providing vision, search, reader, and GitHub exploration via CLI and MCP. Use when user needs image/video analysis, OCR, UI-to-code conversion, error diagnosis, real-time web search, web page to markdown extraction, or GitHub code exploration. Trigger with phrases like "analyze this image", "search the web for", "read this page", "explore this repo", or "use zai". Requires Z_AI_API_KEY. | Skills | 85 1.50x Agent success vs baseline Impact 92% 1.50xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.0.1 |
Can't find what you're looking for? Evaluate a missing skill.