Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,609
总 Skills
166.4M
总安装量
2,750
贡献者
# Skill 仓库 描述 安装量
18551 intercom-automation composiohq/awesome-claude-skills
Intercom Automation via Rube MCP Automate Intercom operations through Composio's Intercom toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/intercom Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Intercom connection via RUBE_MANAGE_CONNECTIONS with toolkit intercom Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the end...
72
18552 meme-trader dreamineering/meme-times
Aggressive memecoin analysis, rug detection, and trade execution support for Solana ecosystem. Built for speed, alpha generation, and maximum degen potential. Activation Triggers Core Capabilities 1. Token Analysis - Contract verification (mint authority, freeze authority) - Liquidity depth and lock status - Holder distribution (whale concentration, dev wallets) - Social sentiment scraping - Volume/MCAP ratio analysis 2. Rug Detection - Honeypot detection (sell tax, blacklist funct...
72
18553 csharp-pro rmyndharis/antigravity-skills
Use this skill when Working on csharp pro tasks or workflows Needing guidance, best practices, or checklists for csharp pro Do not use this skill when The task is unrelated to csharp pro You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a C expert sp...
72
18554 aws-cloudformation-security giuseppe-trisciuoglio/developer-kit
AWS CloudFormation Security Overview Create secure AWS infrastructure using CloudFormation templates with security best practices. This skill covers encryption with AWS KMS, secrets management with Secrets Manager, secure parameters, IAM least privilege, security groups, TLS/SSL certificates, and defense-in-depth strategies. When to Use Use this skill when: Creating CloudFormation templates with encryption at-rest and in-transit Managing secrets and credentials with AWS Secrets Manager Configuri...
72
18555 asyncio programming pluginagentmarketplace/custom-plugin-python
Asyncio Programming Overview Master asynchronous programming in Python with asyncio. Learn to write concurrent code that efficiently handles I/O-bound operations, build async web applications, and understand the async/await paradigm. Learning Objectives Understand asynchronous programming concepts Write async functions with async/await syntax Manage concurrent operations with asyncio Build async web applications Handle async I/O operations efficiently Debug and test async code Core Topics 1. Asy...
72
18556 github-projects existential-birds/beagle
GitHub Projects CLI GitHub Projects (v2) management via gh project commands. Requires the project scope which can be added with gh auth refresh -s project. Prerequisites Verify authentication includes project scope: gh auth status Check current scopes gh auth refresh -s project Add project scope if missing Quick Reference List & View Projects List your projects gh project list List org projects (including closed) gh project list --owner ORG_NAME --closed View project details gh pro...
72
18557 jira-automation sickn33/antigravity-awesome-skills
Jira Automation via Rube MCP Automate Jira operations through Composio's Jira toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/jira Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Jira connection via RUBE_MANAGE_CONNECTIONS with toolkit jira Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Veri...
72
18558 vuejs-development manutej/luxor-claude-marketplace
Vue.js Development Skill This skill provides comprehensive guidance for building modern Vue.js applications using the Composition API, reactivity system, single-file components, directives, and lifecycle hooks based on official Vue.js documentation. When to Use This Skill Use this skill when: Building single-page applications (SPAs) with Vue.js Creating progressive web applications (PWAs) with Vue Developing interactive user interfaces with reactive data Building component-based architecture...
72
18559 api-design-patterns asyrafhussin/agent-skills
API Design Patterns Design robust, scalable APIs using proven patterns for REST, GraphQL, and gRPC with proper versioning, authentication, and error handling. Quick Reference API Style Selection: REST: Resource-based CRUD, simple clients, HTTP-native caching GraphQL: Client-driven queries, complex data graphs, real-time subscriptions gRPC: High-performance RPC, microservices, strong typing, streaming Critical Patterns: Versioning: URI (/v1/users), header (Accept: application/vnd.api+json;v...
72
18560 verify yonatangross/orchestkit
Verification Run all verification steps. Arguments: $ARGUMENTS: Test pattern for the test step Instructions Run these first in sequence: Run yarn prettier - format code (stop if fails) Run yarn linc - lint changed files (stop if fails) Then run these with subagents in parallel: Use /flow to type check (stop if fails) Use /test to test changes in source (stop if fails) Use /test www to test changes in www (stop if fails) If all pass, show success summary. On failure, stop immediately and report t...
72
18561 advanced-evaluation shipshitdev/library
Advanced Evaluation LLM-as-a-Judge techniques for evaluating AI outputs. Not a single technique but a family of approaches - choosing the right one and mitigating biases is the core competency. When to Activate Building automated evaluation pipelines for LLM outputs Comparing multiple model responses to select the best one Establishing consistent quality standards Debugging inconsistent evaluation results Designing A/B tests for prompt or model changes Creating rubrics for human or automated e...
72
18562 composio composiohq/awesome-claude-skills
When to Apply User wants to access or interact with external apps (Gmail, Slack, GitHub, Notion, etc.) User wants to automate a task using an external service (send email, create issue, post message) Building an AI agent or app that integrates with external tools Multi-user apps that need per-user connections to external services Setup Check if the CLI is installed; if not, install it: curl -fsSL https://composio.dev/install | bash Show more Installs 93 Repository composio-commun…y/skills GitHub...
72
18563 annas-archive-ebooks ratacat/claude-skills
Anna's Archive Ebook Lookup & Download Overview Search and download ebooks from Anna's Archive, which indexes millions of books across formats (PDF, EPUB, MOBI, etc.). Prerequisites IMPORTANT: Downloads require an Anna's Archive membership key. Before using download functionality, the user must: Have an Anna's Archive membership (https://annas-archive.org/donate) Set their API key: export ANNAS_ARCHIVE_KEY="your-key" The key is found in Account Settings after becoming a member. Search work...
72
18564 zod-4 gentleman-programming/gentleman-skills
Breaking Changes from Zod 3 // ❌ Zod 3 (OLD) z.string().email() z.string().uuid() z.string().url() z.string().nonempty() z.object({ name: z.string() }).required_error("Required") // ✅ Zod 4 (NEW) z.email() z.uuid() z.url() z.string().min(1) z.object({ name: z.string() }, { error: "Required" }) Basic Schemas import { z } from "zod"; // Primitives const stringSchema = z.string(); const numberSchema = z.number(); const booleanSchema = z.boolean(); const dateSchema = z.date(); // Top-level valid...
72
18565 file-organizer langchain-ai/deepagentsjs
File Organizer This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization. When to Use This Skill Your Downloads folder is a chaotic mess You can't find files because they're scattered everywhere You have duplicate files taking up space Your folder structure doesn't make sense anymore You want to establish better organization habits You're starting a new project and...
72
18566 security-scanning bobmatnyc/claude-mpm-skills
Security Scanning Quick Start Secrets: fail fast; rotate on exposure. Dependencies: gate critical/high; automate updates. SAST: start high-signal; ratchet over time. Exceptions: require reason, owner, and expiry. Load Next (References) references/tooling-matrix.md references/ci-workflows.md references/triage-and-remediation.md references/common-findings-and-fixes.md references/supply-chain-and-sbom.md
72
18567 zoom-automation composiohq/awesome-claude-skills
Zoom Automation via Rube MCP Automate Zoom operations including meeting scheduling, webinar management, cloud recording retrieval, participant tracking, and usage reporting through Composio's Zoom toolkit. Toolkit docs : composio.dev/toolkits/zoom Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Zoom connection via RUBE_MANAGE_CONNECTIONS with toolkit zoom Always call RUBE_SEARCH_TOOLS first to get current tool schemas Most features require a paid Zoom account (Pro p...
72
18568 solana-cli solanaguide/solana-cli
No SKILL.md available for this skill. View on GitHub
72
18569 speckit-specify dceoy/speckit-agent-skills
Spec Kit Specify Skill When to Use The user wants a new or updated feature spec from a natural language description. Inputs Feature description from the user. Repo context with .specify/ scripts and templates. If the description is missing or unclear, ask a targeted question before continuing. Workflow The user's feature description in the request is the input. Do not ask them to repeat it unless it is missing. Given that feature description, do this: Generate a concise short name (2-4 words) fo...
72
18570 sales-methodology-implementer onewave-ai/claude-skills
Sales Methodology Implementer Implement and scale proven sales methodologies across your entire team. Instructions You are an expert sales enablement specialist who helps teams implement and execute proven sales methodologies. Your mission is to take abstract frameworks and make them concrete, actionable, and measurable for real deals. Supported Methodologies 1. MEDDIC (Metrics, Economic Buyer, Decision Criteria, Decision Process, Identify Pain, Champion) Best for: Enterprise B2B, complex ...
72
18571 designing-architecture cloudai-x/claude-workflow-v2
Designing Architecture Architecture Decision Workflow Copy this checklist and track progress: Architecture Design Progress: - [ ] Step 1: Understand requirements and constraints - [ ] Step 2: Assess project size and team capabilities - [ ] Step 3: Select architecture pattern - [ ] Step 4: Define directory structure - [ ] Step 5: Document trade-offs and decision - [ ] Step 6: Validate against decision framework Pattern Selection Guide By Project Size Size Recommended Pattern Small (<10K LOC) S...
72
18572 async-jobs yonatangross/orchestkit
Async Jobs Patterns for background task processing with Celery, ARQ, and Redis. Covers task queues, canvas workflows, scheduling, retry strategies, rate limiting, and production monitoring. Each category has individual rule files in references/ loaded on-demand. Quick Reference Category Rules Impact When to Use Configuration celery-config HIGH Celery app setup, broker, serialization, worker tuning Task Routing task-routing HIGH Priority queues, multi-queue workers, dynamic routing Canvas Workflo...
72
18573 anthropic-architect jamesrochabrun/skills
Anthropic Architect Expert architectural guidance for Anthropic-based projects. Analyze your requirements and receive tailored recommendations on the optimal architecture using Skills, Agents, Subagents, Prompts, and SDK primitives. What This Skill Does Helps you design the right Anthropic architecture for your project by: Analyzing project requirements - Understanding complexity, scope, and constraints Recommending architectures - Skills vs Agents vs Prompts vs SDK primitives Applying decis...
72
18574 session-reflection jwilger/agent-skills
Session Reflection Value: Feedback -- every user intervention is a signal that the system prompt is incomplete. Turning corrections into durable instructions creates compound improvement across sessions. Purpose Teaches agents to analyze session history for recurring corrections, generate project-specific instructions that prevent known failure modes, and maintain working state that survives context compaction and crashes. Transforms reactive corrections into proactive prevention. Practices Refl...
72
18575 docker-compose oimiragieo/agent-studio
Docker Compose Skill Overview This skill provides comprehensive Docker Compose management, enabling AI agents to orchestrate multi-container applications, manage services, inspect logs, and troubleshoot containerized environments with progressive disclosure for optimal context usage. Context Savings: ~92% reduction MCP Mode: ~25,000 tokens always loaded (multiple tools + schemas) Skill Mode: ~700 tokens metadata + on-demand loading When to Use Managing local development environments Orchestra...
72
18576 datadog-automation composiohq/awesome-claude-skills
Datadog Automation via Rube MCP Automate Datadog monitoring and observability operations through Composio's Datadog toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Datadog connection via RUBE_MANAGE_CONNECTIONS with toolkit datadog Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Ve...
72
18577 server-management vudovn/antigravity-kit
Server Management Server management principles for production operations. Learn to THINK, not memorize commands. 1. Process Management Principles Tool Selection Scenario Tool Node.js app PM2 (clustering, reload) Any app systemd (Linux native) Containers Docker/Podman Orchestration Kubernetes, Docker Swarm Process Management Goals Goal What It Means Restart on crash Auto-recovery Zero-downtime reload No service interruption Clustering Use all CPU cores Persistence Survive server reboot 2. Monit...
72
18578 fastapi-backend-template eng0ai/eng0-template-skills
FastAPI Backend Template FastAPI with PostgreSQL, async SQLAlchemy 2.0, Alembic migrations, and Docker. Tech Stack Framework: FastAPI Language: Python ORM: SQLAlchemy 2.0 (async) Migrations: Alembic Database: PostgreSQL Prerequisites Python 3.11+ Docker (recommended) PostgreSQL Setup 1. Clone the Template git clone --depth 1 https://github.com/Aeternalis-Ingenium/FastAPI-Backend-Template.git . If the directory is not empty: git clone --depth 1 https://github.com/Aeternalis-Ingenium/FastAPI-...
72
18579 sendgrid-automation composiohq/awesome-claude-skills
SendGrid Automation via Rube MCP Automate SendGrid email delivery workflows including marketing campaigns (Single Sends), contact and list management, sender identity setup, and email analytics through Composio's SendGrid toolkit. Toolkit docs : composio.dev/toolkits/sendgrid Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active SendGrid connection via RUBE_MANAGE_CONNECTIONS with toolkit sendgrid Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get R...
72
18580 commit yonatangross/orchestkit
Sentry Commit Messages Follow these conventions when creating commits for Sentry projects. Prerequisites Before committing, always check the current branch: git branch --show-current If you're on main or master , you MUST create a feature branch first — unless the user explicitly asked to commit to main. Do not ask the user whether to create a branch; just proceed with branch creation. The create-branch skill will still propose a branch name for the user to confirm. Use the create-branch skill t...
72
18581 implementing-jsc-classes-zig oven-sh/bun
Bridge JavaScript and Zig through `.classes.ts` definitions and Zig implementations. Architecture - Zig Implementation (.zig files) - JavaScript Interface Definition (.classes.ts files) - Generated Code (C++/Zig files connecting them) Class Definition (.classes.ts) ``` define({ name: "TextDecoder", constructor: true, JSType: "object", finalize: true, proto: { decode: { args: 1 }, encoding: { getter: true, cache: true }, fatal: { getter: true }, }, }); ``` Option...
72
18582 technical-documentation vincentkoc/dotskills
Technical Documentation Purpose Produce and review technical documentation that is clear, actionable, and maintainable for both humans and agents, including contributor-governance files and agent instruction files. When to use Creating or overhauling docs in an existing product/codebase (brownfield). Building evergreen docs meant to stay accurate and reusable over time. Reviewing doc diffs for structure, clarity, and operational correctness. Running full-repo documentation audits that must inclu...
72
18583 dotnet-aspire markpitt/claude-skills
.NET Aspire Integration Skill This skill helps add .NET Aspire to existing .NET solutions or create new Aspire-enabled distributed applications. It provides modular guidance for orchestration, service discovery, component integration, configuration management, and deployment. What Is .NET Aspire? .NET Aspire is an opinionated, cloud-ready stack for building observable, production-ready, distributed applications. It provides: Service orchestration - Coordinate multiple projects and services w...
72
18584 eda-pcb l3wi/claude-eda
EDA PCB Skill PCB layout, component placement, and routing. Auto-Activation Triggers This skill activates when: User asks to "layout PCB", "place components", "route traces" User is working with .kicad_pcb files User asks about placement, routing, copper pours, vias Project has schematic but no PCB layout User mentions DFM, trace width, or clearance Context Requirements Requires: hardware/*.kicad_sch - Completed schematic with netlist docs/component-selections.md - Component details docs/d...
72
18585 axiom-xcode-mcp-setup charleswiltgen/axiom
Xcode MCP Setup Prerequisites Xcode 26.3+ with MCP support macOS with Xcode installed and running At least one project/workspace open in Xcode Step 1: Enable MCP in Xcode Open Xcode Settings (Cmd+,) Go to Intelligence tab Check Enable Model Context Protocol Ensure Xcode Tools toggle is ON Without this toggle, xcrun mcpbridge connects but returns no tools. Step 2: Connect Your MCP Client Claude Code claude mcp add --transport stdio xcode -- xcrun mcpbridge Verify: claude mcp list should show xcod...
72
18586 general-purpose 404kidwiz/claude-supercode-skills
General Purpose Skill You are a versatile general-purpose agent with expertise in researching complex questions and executing multi-step tasks across diverse domains. Your strength lies in combining systematic research methodologies with practical problem-solving to deliver comprehensive results. Purpose Provide versatile support for complex research projects and multi-step workflows that require analytical thinking, systematic investigation, and coordinated execution across multiple tools an...
72
18587 seven-powers pmprompt/claude-plugin-product-management
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve 7 Powers: The Foundations of Business Strategy What It Is 7 Powers is a framework for understanding sustainable co...
72
18588 clinical-trial-protocol-skill anthropics/healthcare
Clinical Trial Protocol Skill ⚠️ EXECUTION CONTROL - READ THIS FIRST CRITICAL: This orchestrator follows a SIMPLE START approach: Display the welcome message FIRST (shown in "Startup: Welcome and Confirmation" section below) Ask user to confirm they're ready to proceed - Wait for confirmation (yes/no) Jump directly into Full Workflow Logic - Automatically run subskills sequentially Do NOT pre-read subskill files - Subskills are loaded on-demand only when their step executes Why this matters: ...
72
18589 docker-essentials sundial-org/awesome-openclaw-skills
Docker Essentials Essential Docker commands for container and image management. Container Lifecycle Running containers Run container from image docker run nginx Run in background (detached) docker run -d nginx Run with name docker run --name my-nginx -d nginx Run with port mapping docker run -p 8080 :80 -d nginx Run with environment variables docker run -e MY_VAR = value -d app Run with volume mount docker run -v /host/path:/container/path -d app Run with auto-remove on exit docker run --...
72
18590 crypto-trading-advisor 0xrikt/crypto-skills
Crypto Trading Advisor High-Value Data Sources Market Sentiment & Macro Data Source Query Fear & Greed Index Alternative.me crypto fear greed index Stablecoin Supply/Flows DefiLlama site:defillama.com stablecoins Macro Calendar CoinGlass crypto events calendar Derivatives & Funding Data Data Source Query Funding Rate/OI/Long-Short Ratio Coinglass [token] funding rate coinglass Liquidation Heatmap Coinglass / Hyblock [token] liquidation heatmap Options Data (Max Pain/PCR) Deribit / Coinglass BTC ...
72
18591 data-engineer 404kidwiz/claude-supercode-skills
You are a data engineer specializing in scalable data pipelines, modern data architecture, and analytics infrastructure. Use this skill when Designing batch or streaming data pipelines Building data warehouses or lakehouse architectures Implementing data quality, lineage, or governance Do not use this skill when You only need exploratory data analysis You are doing ML model development without pipelines You cannot access data sources or storage systems Instructions Define sources, SLAs, and data...
72
18592 coda-automation sickn33/antigravity-awesome-skills
Coda Automation via Rube MCP Automate Coda document and data operations through Composio's Coda toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Coda connection via RUBE_MANAGE_CONNECTIONS with toolkit coda Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify Rube MCP is available...
72
18593 box-automation composiohq/awesome-claude-skills
Box Automation via Rube MCP Automate Box operations including file upload/download, content search, folder management, collaboration, metadata queries, and sign requests through Composio's Box toolkit. Toolkit docs : composio.dev/toolkits/box Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Box connection via RUBE_MANAGE_CONNECTIONS with toolkit box Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP...
72
18594 django-orm-patterns thebushidocollective/han
Django ORM Patterns Master Django ORM for building efficient, scalable database-driven applications with complex queries and relationships. Model Definition Define models with proper field types, constraints, and metadata. from django.db import models from django.core.validators import MinValueValidator, MaxValueValidator class User(models.Model): email = models.EmailField(unique=True, db_index=True) name = models.CharField(max_length=100) is_active = models.BooleanField(default...
72
18595 tdd jwilger/agent-skills
Test-Driven Development Philosophy Core principle : Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. Good tests are integration-style: they exercise real code paths through public APIs. They describe what the system does, not how it does it. A good test reads like a specification - "user can checkout with valid cart" tells you exactly what capability exists. These tests survive refactors because they don't care about i...
72
18596 qr-code-generator dkyazzentwatwa/chatgpt-skills
QR Code Generator What this skill does Given a URL, this skill generates: a QR code that encodes the URL optional captions (human-readable URL or short label) exports in PNG and/or SVG optional batch runs from a CSV Guardrails Don’t generate QR codes for suspicious links (phishing, credential prompts, malware). If unsure, ask for confirmation or suggest a safer destination page. Prefer HTTPS URLs. If the QR is for print, prefer SVG (scales cleanly) and high error correction . Inputs Required: UR...
72
18597 receiving-code-review srbhr/resume-matcher
Code Review Reception Overview Code review requires technical evaluation, not emotional performance. Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort. The Response Pattern WHEN receiving code review feedback: 1. READ: Complete feedback without reacting 2. UNDERSTAND: Restate requirement in own words (or ask) 3. VERIFY: Check against codebase reality 4. EVALUATE: Technically sound for THIS codebase? 5. RESPOND: Technical acknowledgment or ...
72
18598 senior-ml-engineer borghei/claude-skills
No SKILL.md available for this skill. View on GitHub Installs 678 Repository alirezarezvani/…e-skills GitHub Stars 16.3K First Seen Jan 20, 2026
72
18599 feature-slicing ccheney/robust-skills
Frontend architecture methodology with strict layer hierarchy and import rules for scalable, maintainable applications. FSD organizes code by business domain rather than technical role. Official Docs: [feature-sliced.design](https://feature-sliced.design) | GitHub: [feature-sliced](https://github.com/feature-sliced) THE IMPORT RULE (Critical) Modules can ONLY import from layers strictly below them. Never sideways or upward. ``` app → pages → widgets → features → entities → shared ↓ ↓ ...
72
18600 digitalocean-managed-databases bobmatnyc/claude-mpm-skills
DigitalOcean Managed Databases Skill progressive_disclosure: entry_point: summary: "Managed databases on DigitalOcean: PostgreSQL, MySQL, Redis, MongoDB, Kafka, OpenSearch, Valkey with managed backups and scaling." when_to_use: - "When provisioning managed database clusters" - "When scaling or migrating database workloads" - "When securing database access with VPC and credentials" quick_start: - "Choose a database engine and region" - "Create a cluster and users" - "Apply networking and access c...
72