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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
5751 railway-templates davila7/claude-code-templates
Railway Templates Search and deploy services from Railway's template marketplace. When to Use User asks to "add Postgres", "add Redis", "add a database" User asks to "add Ghost", "add Strapi", "add n8n", or any other service User wants to find templates for a use case (e.g., "CMS", "storage", "monitoring") User asks "what templates are available?" User wants to deploy a pre-configured service Common Template Codes Category Template Code Databases PostgreSQL postgres Redis redis MySQL mysql ...
150
5752 encore-auth encoredev/skills
Encore Authentication Instructions Encore.ts provides a built-in authentication system for identifying API callers and protecting endpoints. 1. Create an Auth Handler // auth.ts import { Header, Gateway } from "encore.dev/api"; import { authHandler } from "encore.dev/auth"; // Define what the auth handler receives interface AuthParams { authorization: Header<"Authorization">; } // Define what authenticated requests will have access to interface AuthData { userID: string; email: string;...
150
5753 railway-environment davila7/claude-code-templates
Environment Configuration Query, stage, and apply configuration changes for Railway environments. Shell Escaping CRITICAL: When running GraphQL queries via bash, you MUST wrap in heredoc to prevent shell escaping issues: bash <<'SCRIPT' ${CLAUDE_PLUGIN_ROOT}/skills/lib/railway-api.sh 'query ...' '{"var": "value"}' SCRIPT Without the heredoc wrapper, multi-line commands break and exclamation marks in GraphQL non-null types get escaped, causing query failures. When to Use User wants to crea...
150
5754 front-end-developer mindrally/skills
Front-End Developer You are a Senior Front-End Developer with expertise in ReactJS, NextJS, JavaScript, TypeScript, HTML, CSS, and modern UI/UX frameworks (TailwindCSS, Shadcn, Radix). You are thoughtful, give nuanced answers, and are brilliant at reasoning. Provide accurate, factual answers with careful reasoning. Development Workflow Follow user requirements precisely Think step-by-step; describe implementation plans in detailed pseudocode before coding Confirm approach, then write code Ensu...
150
5755 chrome-cdp hanyu0001/chrome-cdp-skill
Chrome CDP Lightweight Chrome DevTools Protocol CLI. Connects directly via WebSocket — no Puppeteer, works with 100+ tabs, instant connection. Prerequisites Chrome with remote debugging enabled: open chrome://inspect/remote-debugging and toggle the switch Node.js 22+ (uses built-in WebSocket) Commands All commands use scripts/cdp.mjs . The <target> is a unique targetId prefix from list ; copy the full prefix shown in the list output (for example 6BE827FA ). The CLI rejects ambiguous prefixes. Li...
150
5756 invoice-organizer davila7/claude-code-templates
Invoice Organizer This skill transforms chaotic folders of invoices, receipts, and financial documents into a clean, tax-ready filing system without manual effort. When to Use This Skill Preparing for tax season and need organized records Managing business expenses across multiple vendors Organizing receipts from a messy folder or email downloads Setting up automated invoice filing for ongoing bookkeeping Archiving financial records by year or category Reconciling expenses for reimbursement Prep...
149
5757 mobile-design vudovn/antigravity-kit
Mobile Design System (Mobile-First · Touch-First · Platform-Respectful) Philosophy: Touch-first. Battery-conscious. Platform-respectful. Offline-capable. Core Law: Mobile is NOT a small desktop. Operating Rule: Think constraints first, aesthetics second. This skill exists to prevent desktop-thinking, AI-defaults, and unsafe assumptions when designing or building mobile applications. 1. Mobile Feasibility & Risk Index (MFRI) Before designing or implementing any mobile feature or screen , assess f...
149
5758 data-fetching lobehub/lobehub
LobeHub Data Fetching Architecture
149
5759 shaping rjs/shaping-skills
Shaping Methodology A structured approach for collaboratively defining problems and exploring solution options. Multi-Level Consistency (Critical) Shaping produces documents at different levels of abstraction. Truth must stay consistent across all levels. The Document Hierarchy (high to low) Shaping doc — ground truth for R's, shapes, parts, fit checks Slices doc — ground truth for slice definitions, breadboards Individual slice plans (V1-plan, etc.) — ground truth for implementation details The...
149
5760 go-best-practices 0xbigboss/claude-code
Go Best Practices Type-First Development Types define the contract before implementation. Follow this workflow: Define data structures - structs and interfaces first Define function signatures - parameters, return types, and error conditions Implement to satisfy types - let the compiler guide completeness Validate at boundaries - check inputs where data enters the system Make Illegal States Unrepresentable Use Go's type system to prevent invalid states at compile time. Structs for domain mod...
149
5761 react-best-practices mastra-ai/mastra
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
149
5762 outlook-automation sickn33/antigravity-awesome-skills
Outlook Automation via Rube MCP Automate Microsoft Outlook operations through Composio's Outlook toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Outlook connection via RUBE_MANAGE_CONNECTIONS with toolkit outlook 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 av...
149
5763 mapbox-google-maps-migration mapbox/mapbox-agent-skills
Mapbox Google Maps Migration Skill Comprehensive guidance for migrating from Google Maps Platform to Mapbox GL JS. Provides API equivalents, pattern translations, and strategies for successful migration. Core Philosophy Differences Google Maps: Imperative & Object-Oriented Create objects (Marker, Polygon, etc.) Add to map with .setMap(map) Update properties with setters Heavy reliance on object instances Mapbox GL JS: Declarative & Data-Driven Add data sources Define layers (visual representatio...
149
5764 drugbank-database davila7/claude-code-templates
DrugBank Database Overview DrugBank is a comprehensive bioinformatics and cheminformatics database containing detailed information on drugs and drug targets. This skill enables programmatic access to DrugBank data including ~9,591 drug entries (2,037 FDA-approved small molecules, 241 biotech drugs, 96 nutraceuticals, and 6,000+ experimental compounds) with 200+ data fields per entry. Core Capabilities 1. Data Access and Authentication Download and access DrugBank data using Python with proper...
149
5765 pricing-strategy kostja94/marketing-skills
Pricing Strategy You are an expert in SaaS pricing and monetization strategy. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this con...
149
5766 background-job-processing aj-geddes/useful-ai-prompts
Background Job Processing Overview Build robust background job processing systems with distributed task queues, worker pools, job scheduling, error handling, retry policies, and monitoring for efficient asynchronous task execution. When to Use Handling long-running operations asynchronously Sending emails in background Generating reports or exports Processing large datasets Scheduling recurring tasks Distributing compute-intensive operations Instructions 1. Python with Celery and Redis celery...
149
5767 directory-submission kostja94/marketing-skills
Channels: Directory Submission Guides submitting products, tools, or apps to directories and launch platforms. On each invocation : On first use in the conversation, output the complete response (Introduction, Importance, Methods, Collaboration Channels, Rules, Avoid, Action). On subsequent use or when the user asks to skip (e.g., "just do it", "skip intro", "I already know"), go directly to Action. Directory submission is a core channel for cold start—see cold-start-strategy for full launch pla...
149
5768 incident-response-plan aj-geddes/useful-ai-prompts
Incident Response Plan Overview Structured approach to detecting, responding to, containing, and recovering from security incidents with comprehensive playbooks and automation. When to Use Security breach detection Data breach response Malware infection DDoS attacks Insider threats Compliance violations Post-incident analysis Implementation Examples 1. Incident Response Framework incident_response.py from dataclasses import dataclass, field from typing import List, Dict, Optional from enum im...
149
5769 railway-status davila7/claude-code-templates
Railway Status Check the current Railway project status for this directory. When to Use User asks about Railway status, project, services, or deployments User mentions deploying or pushing to Railway Before any Railway operation (deploy, update service, add variables) User asks about environments or domains When NOT to Use Use the railway-environment skill instead when user wants: Detailed service configuration (builder type, dockerfile path, build command, root directory) Deploy config (sta...
149
5770 site-crawlability kostja94/marketing-skills
SEO Technical: Crawlability Guides crawlability improvements: robots, X-Robots-Tag, site structure, and internal linking. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Scope (Technical SEO) Redirect chains & loops : Fix multi-hop redirects; point directly to final URL Broken links (4xx) : Fix broken internal/external lin...
149
5771 video-marketing dengineproblem/agents-monorepo
Video Marketing Expert Глубокая экспертиза в стратегии видео-контента, производстве и дистрибуции на всех платформах. Core Competencies Strategy & Planning video_strategy : content_planning : - Content calendar development - Audience research and personas - Competitor analysis - Trend identification - Series and playlist planning platform_strategy : youtube : - Channel positioning - Upload schedule optimization - Community building - Monetization strategy short_form : - TikTok trends and sounds ...
149
5772 devops-deployment yonatangross/orchestkit
DevOps & Deployment Skill Comprehensive frameworks for CI/CD pipelines, containerization, deployment strategies, and infrastructure automation. Overview Setting up CI/CD pipelines Containerizing applications Deploying to Kubernetes or cloud platforms Implementing GitOps workflows Managing infrastructure as code Planning release strategies Pipeline Architecture ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ Code │──>│ Build │──>│ Test │──>│ Deploy ...
149
5773 cv-creator erichowens/some_claude_skills
CV Creator Professional resume builder that transforms structured career data into ATS-optimized, professionally formatted resumes. Integrations Works with: career-biographer, competitive-cartographer, web-design-expert, typography-expert Production Implementation Available! GitHub: github.com/erichowens/cv-creator Status: Production-ready (~2,000 LOC) ATS Score: 95/100 achieved Deploy: npm install && npm run example Built through multi-skill orchestration (8 skills, 9 phases). Quick Sta...
149
5774 security scanning tools davila7/claude-code-templates
Security Scanning Tools Purpose Master essential security scanning tools for network discovery, vulnerability assessment, web application testing, wireless security, and compliance validation. This skill covers tool selection, configuration, and practical usage across different scanning categories. Prerequisites Required Environment Linux-based system (Kali Linux recommended) Network access to target systems Proper authorization for scanning activities Required Knowledge Basic networking concept...
149
5775 testing dalestudy/skills
LobeHub Testing Guide Quick Reference Commands: Run specific test file bunx vitest run --silent = 'passed-only' '[file-path]' Database package (client) cd packages/database && bunx vitest run --silent = 'passed-only' '[file]' Database package (server) cd packages/database && TEST_SERVER_DB = 1 bunx vitest run --silent = 'passed-only' '[file]' Never run bun run test - it runs all 3000+ tests (~10 minutes). Test Categories Category Location Config Webapp src//*.test.ts(x) vitest.config.ts Packa...
149
5776 git-troubleshooting geoffjay/claude-plugins
Git Troubleshooting Skill This skill provides comprehensive guidance on diagnosing and resolving git issues, recovering from mistakes, fixing corrupted repositories, and handling common error scenarios. When to Use Activate this skill when: Encountering git error messages Recovering lost commits or branches Fixing corrupted repositories Resolving detached HEAD state Handling botched merges or rebases Diagnosing repository issues Recovering from force push Fixing authentication problems Recoverin...
149
5777 nano-banana kingbootoshi/nano-banana-2-skill
Nano Banana - Gemini Native Image Generation Generate images with Google Gemini native image models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login infsh app run google/gemini-3-pro-image-preview --input '{"prompt": "a banana in space, photorealistic"}' Models Model App ID Speed Quality Gemini 3 Pro Image google/gemini-3-pro-image-preview Slower Best Gemini 2.5 Flash Image google/gemi...
149
5778 axiom-swiftui-gestures charleswiltgen/axiom
SwiftUI Gestures Comprehensive guide to SwiftUI gesture recognition with composition patterns, state management, and accessibility integration. When to Use This Skill Implementing tap, drag, long press, magnification, or rotation gestures Composing multiple gestures (simultaneously, sequenced, exclusively) Managing gesture state with GestureState Creating custom gesture recognizers Debugging gesture conflicts or unresponsive gestures Making gestures accessible with VoiceOver Cross-platform ges...
149
5779 shipping-page-generator kostja94/marketing-skills
Pages: Shipping / Delivery Guides shipping and delivery information page content for e-commerce. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Identify: Regions : Domestic, international Carriers : Options, costs Timelines : Standard, express, cutoff times Best Practices Essential Elements Element Purp...
149
5780 about-page-generator kostja94/marketing-skills
Pages: About Guides About page content, structure, and trust-building for company websites. When invoking : On first use , if helpful, open with 1-2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exists, read it for company story, values,...
149
5781 cold-email-sequence-generator onewave-ai/claude-skills
Cold Email Sequence Generator Create personalized, high-converting cold email sequences with optimal timing and A/B testing. Instructions You are an expert email copywriter specializing in outbound sales sequences that get responses. Your mission is to craft personalized, value-driven email sequences that respect the recipient's time while clearly communicating value. Core Capabilities Sequence Types: Classic Cold Outreach (7 emails, 2 weeks) Fast-Track (5 emails, 1 week) Long-Play Nurture...
149
5782 trade-prediction-markets robonet-tech/skills
Trade Prediction Markets Quick Start This skill enables trading on Polymarket prediction markets (YES/NO tokens) for real-world events. Load the tools first : Use MCPSearch to select: mcp__workbench__get_all_prediction_events Use MCPSearch to select: mcp__workbench__get_prediction_market_data Use MCPSearch to select: mcp__workbench__create_prediction_market_strategy Basic workflow : 1. Browse markets: get_all_prediction_events(market_category="crypto_rolling") → See BTC/ETH price prediction mark...
149
5783 content-generation casper-studios/casper-marketplace
Content Generation Overview Generate professional content including images, diagrams, documents, and summaries using AI-powered tools. Quick Decision Tree What do you need? │ ├── Generate images │ └── references/images.md │ └── Script: scripts/generate_images.py │ ├── Create flowchart/diagram │ └── references/flowchart.md │ └── Script: scripts/generate_flowchart.py │ ├── Create Google Doc │ └── references/document.md │ └── Script: scripts/generate_document.py │ ├── Generate client pr...
149
5784 pentest checklist davila7/claude-code-templates
Pentest Checklist Purpose Provide a comprehensive checklist for planning, executing, and following up on penetration tests. Ensure thorough preparation, proper scoping, and effective remediation of discovered vulnerabilities. Inputs/Prerequisites Clear business objectives for testing Target environment information Budget and timeline constraints Stakeholder contacts and authorization Legal agreements and scope documents Outputs/Deliverables Defined pentest scope and objectives Prepared testing e...
149
5785 async-python-patterns sickn33/antigravity-awesome-skills
Async Python Patterns Comprehensive guidance for implementing asynchronous Python applications using asyncio, concurrent programming patterns, and async/await for building high-performance, non-blocking systems. When to Use This Skill Building async web APIs (FastAPI, aiohttp, Sanic) Implementing concurrent I/O operations (database, file, network) Creating web scrapers with concurrent requests Developing real-time applications (WebSocket servers, chat systems) Processing multiple independent t...
149
5786 encore-code-review encoredev/skills
Encore Code Review Instructions When reviewing Encore.ts code, check for these common issues: Critical Issues 1. Infrastructure Inside Functions // WRONG: Infrastructure declared inside function async function setup() { const db = new SQLDatabase("mydb", { migrations: "./migrations" }); const topic = new Topic<Event>("events", { deliveryGuarantee: "at-least-once" }); } // CORRECT: Package level declaration const db = new SQLDatabase("mydb", { migrations: "./migrations" }); const topic = n...
149
5787 asyncio bobmatnyc/claude-mpm-skills
Python asyncio - Async/Await Concurrency Overview Python's asyncio library enables writing concurrent code using async/await syntax. It's ideal for I/O-bound operations like HTTP requests, database queries, file operations, and WebSocket connections. asyncio provides non-blocking execution without the complexity of threading or multiprocessing. Key Features: async/await syntax for readable concurrent code Event loop for managing concurrent operations Tasks for running multiple coroutines conc...
149
5788 bioservices davila7/claude-code-templates
BioServices Overview BioServices is a Python package providing programmatic access to approximately 40 bioinformatics web services and databases. Retrieve biological data, perform cross-database queries, map identifiers, analyze sequences, and integrate multiple biological resources in Python workflows. The package handles both REST and SOAP/WSDL protocols transparently. When to Use This Skill This skill should be used when: Retrieving protein sequences, annotations, or structures from UniPr...
149
5789 rwkv-architecture davila7/claude-code-templates
RWKV - Receptance Weighted Key Value Quick start RWKV (RwaKuv) combines Transformer parallelization (training) with RNN efficiency (inference). Installation: Install PyTorch pip install torch --upgrade --extra-index-url https://download.pytorch.org/whl/cu121 Install dependencies pip install pytorch-lightning==1.9.5 deepspeed wandb ninja --upgrade Install RWKV pip install rwkv Basic usage (GPT mode + RNN mode): import os from rwkv.model import RWKV os.environ["RWKV_JIT_ON"] = '1' os.e...
149
5790 create-evlog-framework-integration hugorcd/evlog
Create evlog Framework Integration Add a new framework integration to evlog. Every integration follows the same architecture built on the shared createMiddlewareLogger utility. This skill walks through all touchpoints. Every single touchpoint is mandatory -- do not skip any. PR Title Recommended format for the pull request title: feat({framework}): add {Framework} middleware integration Touchpoints Checklist File Action 1 packages/evlog/src/{framework}/index.ts Create integration source 2 packa...
149
5791 tailwind-patterns srbhr/resume-matcher
Tailwind CSS Component Patterns Status : Production Ready ✅ Last Updated : 2026-01-14 Tailwind Compatibility : v3.x and v4.x Source : Production projects, shadcn/ui patterns Quick Start Essential Patterns // Section Container < section className = " max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-24 " > { /* content */ } </ section > // Card Base < div className = " bg-card text-card-foreground rounded-lg border border-border p-6 " > { /* content */ } </ div > // Button Primary < button class...
149
5792 write-docs tldraw/tldraw
Writing tldraw SDK documentation The tldraw voice Write like a colleague walking someone through code they know well. Confident, casual, code-first. Characteristic patterns: Have five minutes? Run this command... That's pretty much it! Let's add local persistence by passing a persistenceKey prop... Need to create some shapes? Use EditorcreateShapes. Need to delete them? Use EditordeleteShapes. What makes it work: Direct address with "you" and "let's" Questions as transitions ("Need to cr...
149
5793 logo-generator kostja94/marketing-skills
Components: Logo Guides logo placement and implementation for brand recall and navigation. Logo placement affects user orientation and conversion. When invoking : On first use , if helpful, open with 1-2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketin...
149
5794 tooluniverse-precision-oncology mims-harvard/tooluniverse
Precision Oncology Treatment Advisor Provide actionable treatment recommendations for cancer patients based on their molecular profile using CIViC, ClinVar, OpenTargets, ClinicalTrials.gov, and structure-based analysis. KEY PRINCIPLES : Report-first - Create report file FIRST, update progressively Evidence-graded - Every recommendation has evidence level Actionable output - Prioritized treatment options, not data dumps Clinical focus - Answer "what should we do?" not "what exists?" English-first...
149
5795 code-generation-template aj-geddes/useful-ai-prompts
Code Generation & Templates Overview Comprehensive guide to code generation techniques including template engines, AST manipulation, code scaffolding, and automated boilerplate generation for increased productivity and consistency. When to Use Scaffolding new projects or components Generating repetitive boilerplate code Creating CRUD operations automatically Generating API clients from OpenAPI specs Building code from templates Creating database models from schemas Generating TypeScript types ...
149
5796 system-design wondelai/skills
System Design Help design systems and evaluate architectural decisions. Framework 1. Requirements Gathering Functional requirements (what it does) Non-functional requirements (scale, latency, availability, cost) Constraints (team size, timeline, existing tech stack) 2. High-Level Design Component diagram Data flow API contracts Storage choices 3. Deep Dive Data model design API endpoint design (REST, GraphQL, gRPC) Caching strategy Queue/event design Error handling and retry logic 4. Scale and R...
149
5797 quality-manager-qmr davila7/claude-code-templates
Senior Quality Manager Responsible Person (QMR) Quality system accountability, management review leadership, and regulatory compliance oversight per ISO 13485 Clause 5.5.2 requirements. Table of Contents QMR Responsibilities Management Review Workflow Quality KPI Management Workflow Quality Objectives Workflow Quality Culture Assessment Workflow Regulatory Compliance Oversight Decision Frameworks Tools and References QMR Responsibilities ISO 13485 Clause 5.5.2 Requirements Responsibility Scope E...
149
5798 encore-service encoredev/skills
Encore Service Structure Instructions Creating a Service Every Encore service needs an encore.service.ts file: // encore.service.ts import { Service } from "encore.dev/service"; export default new Service("my-service"); Minimal Service Structure my-service/ ├── encore.service.ts Service definition (required) ├── api.ts API endpoints └── db.ts Database (if needed) Application Patterns Single Service (Recommended Start) Best for new projects - start simple,...
148
5799 command-creator davila7/claude-code-templates
Command Creator This skill guides the creation of Claude Code slash commands - reusable workflows that can be invoked with /command-name in Claude Code conversations. About Slash Commands Slash commands are markdown files stored in .claude/commands/ (project-level) or ~/.claude/commands/ (global/user-level) that get expanded into prompts when invoked. They're ideal for: Repetitive workflows (code review, PR submission, CI fixing) Multi-step processes that need consistency Agent delegation patter...
148
5800 magento-hyva-specialist maxnorm/magento2-agent-skills
Magento 2 Hyvä Specialist Expert specialist in creating high-performance, modern Magento 2 storefronts using the Hyvä theme framework, leveraging Alpine.js, Tailwind CSS, and cutting-edge frontend technologies. When to Use Developing Hyvä-based storefronts Working with Alpine.js components Implementing Tailwind CSS styling Optimizing frontend performance Building modern, fast e-commerce experiences Hyvä Development Stack Alpine.js : Reactive JavaScript framework for dynamic interfaces Tailwind C...
148