███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 801 | code-refactoring | supercent-io/skills-template |
Code Refactoring When to use this skill Code review : Discovering complex or duplicated code Before adding new features : Cleaning up existing code After bug fixes : Removing root causes Resolving technical debt : Regular refactoring Instructions Step 1: Extract Method Before (long function) : function processOrder ( order : Order ) { // Validation if ( ! order . items || order . items . length === 0 ) { throw new Error ( 'Order must have items' ) ; } if ( ! order . customerId ) { throw new Erro...
|
11.9K |
| 802 | dotnet-best-practices | github/awesome-copilot |
.NET/C Best Practices Your task is to ensure .NET/C code in ${selection} meets the best practices specific to this solution/project. This includes: Documentation & Structure Create comprehensive XML documentation comments for all public classes, interfaces, methods, and properties Include parameter descriptions and return value descriptions in XML comments Follow the established namespace structure: {Core|Console|App|Service}.{Feature} Design Patterns & Architecture Use primary constructor synta...
|
11.9K |
| 803 | flutter-build-responsive-layout | flutter/skills |
Implementing Adaptive Layouts Contents Space Measurement Guidelines Widget Sizing and Constraints Device and Orientation Behaviors Workflow: Constructing an Adaptive Layout Workflow: Optimizing for Large Screens Examples Space Measurement Guidelines Determine the available space accurately to ensure layouts adapt to the app window, not just the physical device. Use MediaQuery.sizeOf(context) to get the size of the entire app window. Use LayoutBuilder to make layout decisions based on the parent ...
|
11.9K |
| 804 | responsive-design | wshobson/agents |
Responsive Design Master modern responsive design techniques to create interfaces that adapt seamlessly across all screen sizes and device contexts. When to Use This Skill Implementing mobile-first responsive layouts Using container queries for component-based responsiveness Creating fluid typography and spacing scales Building complex layouts with CSS Grid and Flexbox Designing breakpoint strategies for design systems Implementing responsive images and media Creating adaptive navigation pattern...
|
11.9K |
| 805 | backend-testing | supercent-io/skills-template |
Backend Testing When to use this skill Specific situations that should trigger this skill: New feature development : Write tests first using TDD (Test-Driven Development) Adding API endpoints : Test success and failure cases for REST APIs Bug fixes : Add tests to prevent regressions Before refactoring : Write tests that guarantee existing behavior CI/CD setup : Build automated test pipelines Input Format Format and required/optional information to collect from the user: Required information Fram...
|
11.8K |
| 806 | github-issues | github/awesome-copilot |
GitHub Issues Manage GitHub issues using the @modelcontextprotocol/server-github MCP server. Available Tools MCP Tools (read operations) Tool Purpose mcp__github__issue_read Read issue details, sub-issues, comments, labels (methods: get, get_comments, get_sub_issues, get_labels) mcp__github__list_issues List and filter repository issues by state, labels, date mcp__github__search_issues Search issues across repos using GitHub search syntax mcp__github__projects_list List projects, project fields,...
|
11.8K |
| 807 | unocss | antfu/skills |
UnoCSS is an instant atomic CSS engine designed to be flexible and extensible. The core is un-opinionated - all CSS utilities are provided via presets. It's a superset of Tailwind CSS, so you can reuse your Tailwind knowledge for basic syntax usage. Important: Before writing UnoCSS code, agents should check for `uno.config.*` or `unocss.config.*` files in the project root to understand what presets, rules, and shortcuts are available. If the project setup is unclear, avoid using attributify mod...
|
11.8K |
| 808 | fixing-accessibility | ibelick/ui-skills |
fixing-accessibility Fix accessibility issues. how to use /fixing-accessibility Apply these constraints to any UI work in this conversation. /fixing-accessibility <file> Review the file against all rules below and report: violations (quote the exact line or snippet) why it matters (one short sentence) a concrete fix (code-level suggestion) Do not rewrite large parts of the UI. Prefer minimal, targeted fixes. when to apply Reference these guidelines when: adding or changing buttons, links, inputs...
|
11.8K |
| 809 | opencli-usage | jackwener/opencli |
OpenCLI Usage Guide Make any website or Electron App your CLI. Reuse Chrome login, zero risk, AI-powered discovery. Install & Run npm global install (recommended) npm install -g @jackwener/opencli opencli < command > Or from source cd ~/code/opencli && npm install npx tsx src/main.ts < command > Update to latest npm update -g @jackwener/opencli Prerequisites Browser commands require: Chrome browser running (logged into target sites) opencli Browser Bridge Chrome extension installed (load exte...
|
11.8K |
| 810 | angular-developer | angular/skills |
Angular Developer Guidelines Always analyze the project's Angular version before providing guidance, as best practices and available features can vary significantly between versions. If creating a new project with Angular CLI, do not specify a version unless prompted by the user. When generating code, follow Angular's style guide and best practices for maintainability and performance. Use the Angular CLI for scaffolding components, services, directives, pipes, and routes to ensure consistency. O...
|
11.8K |
| 811 | async-python-patterns | wshobson/agents |
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...
|
11.8K |
| 812 | openapi-spec-generation | wshobson/agents |
No SKILL.md available for this skill. View on GitHub
|
11.8K |
| 813 | opencli-browser | jackwener/opencli |
OpenCLI Browser — Browser Automation for AI Agents Control Chrome step-by-step via CLI. Reuses existing login sessions — no passwords needed. Prerequisites opencli doctor Verify extension + daemon connectivity Requires: Chrome running + OpenCLI Browser Bridge extension installed. Critical Rules ALWAYS use state to inspect the page, NEVER use screenshot — state returns structured DOM with [N] element indices, is instant and costs zero tokens. screenshot requires vision processing and is slow. On...
|
11.8K |
| 814 | agents-sdk | cloudflare/skills |
Cloudflare Agents SDK Build persistent, stateful AI agents on Cloudflare Workers using the agents npm package. FIRST: Verify Installation npm install agents Agents require a binding in wrangler.jsonc: { "durable_objects": { // "class_name" must match your Agent class name exactly "bindings": [{ "name": "Counter", "class_name": "Counter" }] }, "migrations": [ // Required: list all Agent classes for SQLite storage { "tag": "v1", "new_sqlite_classes": ["Counter"] } ] } ...
|
11.8K |
| 815 | apify-ultimate-scraper | apify/agent-skills |
AI-driven data extraction from 55+ Actors across all major platforms. This skill automatically selects the best Actor for your task. Prerequisites (No need to check it upfront) - `.env` file with `APIFY_TOKEN` - Node.js 20.6+ (for native `--env-file` support) - `mcpc` CLI tool (for fetching Actor schemas) Workflow Copy this checklist and track progress: ``` Task Progress: - [ ] Step 1: Understand user goal and select Actor - [ ] Step 2: Fetch Actor schema via mcpc - [ ] Step 3: Ask use...
|
11.8K |
| 816 | html-ppt | lewislulu/html-ppt-skill |
html-ppt — HTML PPT Studio Author professional HTML presentations as static files. One theme file = one look. One layout file = one page type. One animation class = one entry effect. All pages share a token-based design system in assets/base.css . Install npx skills add https://github.com/lewislulu/html-ppt-skill One command, no build. Pure static HTML/CSS/JS with only CDN webfonts. What the skill gives you 36 themes ( assets/themes/*.css ) — minimal-white, editorial-serif, soft-pastel, sharp-mo...
|
11.8K |
| 817 | microsoft-docs | github/awesome-copilot |
Microsoft Docs Tools Tool Use For microsoft_docs_search Find documentation—concepts, guides, tutorials, configuration microsoft_docs_fetch Get full page content (when search excerpts aren't enough) When to Use Understanding concepts — "How does Cosmos DB partitioning work?" Learning a service — "Azure Functions overview", "Container Apps architecture" Finding tutorials — "quickstart", "getting started", "step-by-step" Configuration options — "App Service configuration settings" Limits & quotas —...
|
11.8K |
| 818 | api-documentation | supercent-io/skills-template |
API Documentation When to use this skill API Development : When adding new endpoints External Release : Public API launch Team Collaboration : Frontend-backend interface definition Instructions Step 1: OpenAPI (Swagger) Spec openapi : 3.0.0 info : title : User Management API version : 1.0.0 description : API for managing users contact : email : api@example.com servers : - url : https : //api.example.com/v1 description : Production - url : https : //staging - api.example.com/v1 description : Stag...
|
11.7K |
| 819 | technical-writing | supercent-io/skills-template |
Technical Writing When to use this skill Writing technical specifications Creating architecture documentation Documenting system designs Writing runbooks and operational guides Creating developer documentation API documentation User manuals and guides Release notes and changelogs Instructions Step 1: Understand your audience Developer audience : Focus on implementation details Include code examples Technical terminology is okay Show how, not just what DevOps/Operations audience : Focus on deploy...
|
11.7K |
| 820 | nuxt-ui | nuxt/ui |
Nuxt UI Vue component library built on Reka UI + Tailwind CSS + Tailwind Variants . Works with Nuxt, Vue (Vite), Laravel (Vite + Inertia), and AdonisJS (Vite + Inertia). MCP Server For component API details (props, slots, events, full documentation, examples), use the Nuxt UI MCP server . If not already configured, add it: Cursor — .cursor/mcp.json : { "mcpServers" : { "nuxt-ui" : { "type" : "http" , "url" : "https://ui.nuxt.com/mcp" } } } Claude Code : claude mcp add --transport http nuxt-ui ht...
|
11.7K |
| 821 | grimoire-polymarket | franalgaba/grimoire |
Grimoire Polymarket Skill Use this skill for Polymarket market discovery, CLOB market data, and order-management operations through the polymarket venue adapter. Preferred invocations: grimoire venue polymarket ... npx -y @grimoirelabs/cli venue polymarket ... (no-install) bun run packages/cli/src/index.ts venue polymarket ... (repo-local) grimoire-polymarket ... (direct binary from @grimoirelabs/venues ) Recommended preflight: grimoire venue doctor --adapter polymarket --json grimoire venue pol...
|
11.7K |
| 822 | sql-optimization | github/awesome-copilot |
SQL Performance Optimization Assistant Expert SQL performance optimization for ${selection} (or entire project if no selection). Focus on universal SQL optimization techniques that work across MySQL, PostgreSQL, SQL Server, Oracle, and other SQL databases. 🎯 Core Optimization Areas Query Performance Analysis -- ❌ BAD: Inefficient query patterns SELECT * FROM orders o WHERE YEAR ( o . created_at ) = 2024 AND o . customer_id IN ( SELECT c . id FROM customers c WHERE c . status = 'active' ) ; -- ✅ ...
|
11.7K |
| 823 | nodejs-best-practices | sickn33/antigravity-awesome-skills |
Node.js Best Practices Principles and decision-making for Node.js development in 2025. Learn to THINK, not memorize code patterns. ⚠️ How to Use This Skill This skill teaches decision-making principles, not fixed code to copy. ASK user for preferences when unclear Choose framework/pattern based on CONTEXT Don't default to same solution every time 1. Framework Selection (2025) Decision Tree What are you building? │ ├── Edge/Serverless (Cloudflare, Vercel) │ └── Hono (zero-dependency, ultra-...
|
11.6K |
| 824 | swift-concurrency | avdlee/swift-concurrency-agent-skill |
Swift Concurrency Fast Path Before proposing a fix: Analyze Package.swift or .pbxproj to determine Swift language mode, strict concurrency level, default isolation, and upcoming features. Do this always, not only for migration work. Capture the exact diagnostic and offending symbol. Determine the isolation boundary: @MainActor , custom actor, actor instance isolation, or nonisolated . Confirm whether the code is UI-bound or intended to run off the main actor. Project settings that change concurr...
|
11.6K |
| 825 | firecrawl-demo-walkthrough | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 367 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.6K |
| 826 | firecrawl-knowledge-ingest | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 364 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.6K |
| 827 | firecrawl-competitive-intel | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 364 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.6K |
| 828 | firecrawl-workflows | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 364 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.6K |
| 829 | firecrawl-company-directories | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 363 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.6K |
| 830 | solidity-security | wshobson/agents |
Solidity Security Master smart contract security best practices, vulnerability prevention, and secure Solidity development patterns. When to Use This Skill Writing secure smart contracts Auditing existing contracts for vulnerabilities Implementing secure DeFi protocols Preventing reentrancy, overflow, and access control issues Optimizing gas usage while maintaining security Preparing contracts for professional audits Understanding common attack vectors Critical Vulnerabilities 1. Reentrancy Atta...
|
11.6K |
| 831 | backtesting-frameworks | wshobson/agents |
Backtesting Frameworks Build robust, production-grade backtesting systems that avoid common pitfalls and produce reliable strategy performance estimates. When to Use This Skill Developing trading strategy backtests Building backtesting infrastructure Validating strategy performance Avoiding common backtesting biases Implementing walk-forward analysis Comparing strategy alternatives Core Concepts 1. Backtesting Biases Show more
|
11.6K |
| 832 | flutter-expert | jeffallan/claude-skills |
Flutter Expert Senior mobile engineer building high-performance cross-platform applications with Flutter 3 and Dart. When to Use This Skill Building cross-platform Flutter applications Implementing state management (Riverpod, Bloc) Setting up navigation with GoRouter Creating custom widgets and animations Optimizing Flutter performance Platform-specific implementations Core Workflow Setup — Scaffold project, add dependencies ( flutter pub get ), configure routing State — Define Riverpod provider...
|
11.6K |
| 833 | create-specification | github/awesome-copilot |
Create Specification Your goal is to create a new specification file for ${input:SpecPurpose} . The specification file must define the requirements, constraints, and interfaces for the solution components in a manner that is clear, unambiguous, and structured for effective use by Generative AIs. Follow established documentation standards and ensure the content is machine-readable and self-contained. Best Practices for AI-Ready Specifications Use precise, explicit, and unambiguous language. Clear...
|
11.6K |
| 834 | rust-best-practices | apollographql/skills |
Rust Best Practices Apply these guidelines when writing or reviewing Rust code. Based on Apollo GraphQL's Rust Best Practices Handbook . Best Practices Reference Before reviewing, familiarize yourself with Apollo's Rust best practices. Read ALL relevant chapters in the same turn in parallel. Reference these files when providing feedback: Chapter 1 - Coding Styles and Idioms : Borrowing vs cloning, Copy trait, Option/Result handling, iterators, comments Chapter 2 - Clippy and Linting : Clippy con...
|
11.6K |
| 835 | data-storytelling | wshobson/agents |
Data Storytelling Transform raw data into compelling narratives that drive decisions and inspire action. When to Use This Skill Presenting analytics to executives Creating quarterly business reviews Building investor presentations Writing data-driven reports Communicating insights to non-technical audiences Making recommendations based on data Core Concepts 1. Story Structure Setup → Conflict → Resolution Show more
|
11.6K |
| 836 | prisma-database-setup | prisma/skills |
Prisma Database Setup Comprehensive guides for configuring Prisma ORM with various database providers. When to Apply Reference this skill when: Initializing a new Prisma project Switching database providers Configuring connection strings and environment variables Troubleshooting database connection issues Setting up database-specific features Generating and instantiating Prisma Client Rule Categories by Priority Priority Category Impact Prefix 1 Provider Guides CRITICAL provider names 2 Prisma P...
|
11.6K |
| 837 | clerk-webhooks | clerk/skills |
Prerequisite: Webhooks are asynchronous. Use for background tasks (sync, notifications), not synchronous flows. Documentation Reference | Overview | [https://clerk.com/docs/guides/development/webhooks/overview](https://clerk.com/docs/guides/development/webhooks/overview) | Sync to database | [https://clerk.com/docs/guides/development/webhooks/syncing](https://clerk.com/docs/guides/development/webhooks/syncing) | Debugging | [https://clerk.com/docs/guides/development/webhooks/debugging]...
|
11.6K |
| 838 | seedance2-api | hexiaochun/seedance2-api |
Seedance 2.0 Storyboard & Video Generation End-to-end workflow from concept to final video: Storyboard → Reference images → Submit video task → Get results. Step 0: Determine Execution Mode (MCP or Script) Check MCP availability first: Check xskill-ai MCP service status (read mcps/user-xskill-ai/STATUS.md ) If MCP is available → use submit_task / get_task and other MCP tools If MCP is unavailable or returns errors → switch to Script Mode Script mode prerequisites: Verify XSKILL_API_KEY environme...
|
11.5K |
| 839 | api-design | supercent-io/skills-template |
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
|
11.5K |
| 840 | performance-optimization | supercent-io/skills-template |
Performance Optimization When to use this skill Slow page loads : low Lighthouse score Slow rendering : delayed user interactions Large bundle size : increased download time Slow queries : database bottlenecks Instructions Step 1: Measure performance Lighthouse (Chrome DevTools) : CLI npm install -g lighthouse lighthouse https://example.com --view Automate in CI lighthouse https://example.com --output = json --output-path = ./report.json Measure Web Vitals (React): import { getCLS , getFID , g...
|
11.5K |
| 841 | tailwind-css-patterns | giuseppe-trisciuoglio/developer-kit |
Tailwind CSS Development Patterns Expert guide for building modern, responsive user interfaces with Tailwind CSS utility-first framework. Covers v4.1+ features including CSS-first configuration, custom utilities, and enhanced developer experience. When to Use Styling React/HTML components with utility classes Building responsive layouts with breakpoints Implementing flexbox and grid layouts Managing spacing, colors, and typography Creating custom design systems Optimizing for mobile-first desi...
|
11.5K |
| 842 | baoyu-youtube-transcript | jimliu/baoyu-skills |
YouTube Transcript Downloads transcripts (subtitles/captions) from YouTube videos. Works with both manually created and auto-generated transcripts. No API key or browser required — uses YouTube's InnerTube API directly and automatically falls back to yt-dlp when YouTube blocks the direct API path. Fetches video metadata and cover image on first run, caches raw data for fast re-formatting. Script Directory Scripts in scripts/ subdirectory. {baseDir} = this SKILL.md's directory path. Resolve ${BUN...
|
11.5K |
| 843 | firecrawl-dashboard-reporting | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 374 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.5K |
| 844 | firecrawl-qa | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 345 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.5K |
| 845 | firecrawl-lead-research | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 367 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.5K |
| 846 | firecrawl-seo-audit | firecrawl/firecrawl-workflows |
No SKILL.md available for this skill. View on GitHub Installs 367 Repository firecrawl/firec…orkflows First Seen 1 day ago
|
11.5K |
| 847 | microsoft-code-reference | github/awesome-copilot |
Microsoft Code Reference Tools Need Tool Example API method/class lookup microsoft_docs_search "BlobClient UploadAsync Azure.Storage.Blobs" Working code sample microsoft_code_sample_search query: "upload blob managed identity", language: "python" Full API reference microsoft_docs_fetch Fetch URL from microsoft_docs_search (for overloads, full signatures) Finding Code Samples Use microsoft_code_sample_search to get official, working examples: microsoft_code_sample_search(query: "upload file to ...
|
11.5K |
| 848 | tavily-best-practices | tavily-ai/skills |
Tavily Tavily is a search API designed for LLMs, enabling AI applications to access real-time web data. Installation Python: pip install tavily-python JavaScript: npm install @tavily/core See references/sdk.md for complete SDK reference. Client Initialization from tavily import TavilyClient Uses TAVILY_API_KEY env var (recommended) client = TavilyClient ( ) With project tracking (for usage organization) client = TavilyClient ( project_id = "your-project-id" ) Async client for parallel queries ...
|
11.5K |
| 849 | github-actions-templates | wshobson/agents |
GitHub Actions Templates Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications. Purpose Create efficient, secure GitHub Actions workflows for continuous integration and deployment across various tech stacks. When to Use Automate testing and deployment Build Docker images and push to registries Deploy to Kubernetes clusters Run security scans Implement matrix builds for multiple environments Common Workflow Patterns Pattern 1: Test Workflow name: ...
|
11.5K |
| 850 | clerk | clerk/skills |
Based on what you're trying to do, here's the right skill to use: By Task Adding Clerk to your project → Use `clerk-setup` - Framework detection and quickstart - Environment setup, API keys, Keyless flow - Migration from other auth providers Custom sign-in/sign-up UI → Use `clerk-custom-ui` - Custom authentication flows - Appearance and styling - OAuth, magic links, passkeys, MFA Advanced Next.js patterns → Use `clerk-nextjs-patterns` - Server vs Client auth APIs - Middleware strate...
|
11.5K |