███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 21251 | audio-router | bbeierle12/skill-mcp-claude |
Audio Router Routes to 3 specialized skills based on audio requirements. Routing Protocol Classify — Identify audio task from user request Match — Apply signal matching rules below Combine — Audio-visual projects need 2-3 skills together Load — Read matched SKILL.md files before implementation Quick Route Tier 1: Core Skills Need Skill Signals Playing audio, music, SFX audio-playback play, load, music, sound, mp3, transport, player, loop Extracting audio data audio-analysis FFT, frequency, spect...
|
34 |
| 21252 | gplay-iap-setup | tamtom/gplay-cli-skills |
In-App Purchase Setup for Google Play Use this skill when you need to set up monetization for your Android app. Two APIs: Legacy vs New Monetization Google Play has two APIs for one-time products: Legacy ( gplay iap ) New Monetization ( gplay onetimeproducts ) API inappproducts monetization.onetimeproducts Price format priceMicros / currency units / nanos / currencyCode Structure Flat prices map purchaseOptions with regionalPricingAndAvailabilityConfigs States active / inactive DRAFT → ACTIVE (r...
|
34 |
| 21253 | cli-web-scrape | molechowski/claude-skills |
Scrapling CLI Web scraping CLI with browser impersonation, anti-bot bypass, and CSS extraction. Prerequisites Install with all extras (CLI needs click, fetchers need playwright/camoufox) uv tool install 'scrapling[all]' Install fetcher browser engines (one-time) scrapling install Verify: scrapling --help Fetcher Selection Tier Command Engine Speed Stealth JS Use When HTTP extract get/post/put/delete httpx + TLS impersonation Fast Medium No Static pages, APIs, most sites Dynamic extract fetch P...
|
34 |
| 21254 | typescript-sdk | inkeep/skills |
TypeScript SDK Architecture Layered, non-blocking by default Data buffered and flushed async to backend Node >= 18, ESM + CJS builds Layer Flow Public API → OpikClient → Domain (Trace/Span) → BatchQueues → REST Client → Backend Critical Gotchas When changing dependencies or minimum versions, update and verify version references in README.md and integration README files in the same PR. Flush Before Exit // ✅ REQUIRED - especially in CLI/tests await client . flush ( ) ; // or globally: await flush...
|
34 |
| 21255 | caching-strategy-optimizer | patricio0312rev/skills |
Caching Strategy Optimizer Dramatically speed up CI pipelines with intelligent caching. Cache Key Strategy Package Manager Caches NPM - Hash package-lock.json - uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-npm-${{ hashFiles('/package-lock.json') }} restore-keys: | ${{ runner.os }}-npm- pnpm - More aggressive caching - uses: pnpm/action-setup@v2 with: version: 8 - uses: actions/cache@v3 with: path: | ~/.pnpm-store node_modules ...
|
34 |
| 21256 | scroll-driven-animations | yonatangross/orchestkit |
CSS Scroll-Driven Animations API provides performant, declarative scroll-linked animations without JavaScript. Supported in Chrome 115+, Edge 115+, Safari 18.4+. Overview - Progress indicators tied to scroll position - Parallax effects without JavaScript jank - Element reveal animations on scroll into view - Sticky header animations based on scroll - Reading progress bars - Scroll-triggered image/content reveals Core Concepts Timeline Types | Scroll Progress | `scroll()` | Tied to...
|
34 |
| 21257 | ssh-remote-connection | artwist-polyakov/polyakov-claude-skills |
SSH Remote Connection Universal skill for connecting to remote servers via SSH. Usage Interactive shell scripts/connect.sh Run command directly scripts/connect.sh "docker compose logs backend --tail 50" Setup For Claude Code (local) Copy config template: cp config/.env.example config/.env Fill in config/.env with actual values Make script executable: chmod +x scripts/connect.sh For Cloud Runtime Set environment variables in your cloud configuration: SSH_HOST — server hostname or IP SSH_USER — ...
|
34 |
| 21258 | frontend | htlin222/dotfiles |
Frontend Development Overview Modern frontend development patterns, frameworks, and best practices for building performant web applications. React Ecosystem Component Patterns // Functional component with hooks import { useState , useEffect , useCallback , useMemo } from 'react' ; interface UserListProps { initialFilter ? : string ; onSelect : ( user : User ) => void ; } function UserList ( { initialFilter = '' , onSelect } : UserListProps ) { const [ users , setUsers ] = useState < User [ ] > (...
|
34 |
| 21259 | api-client-generator | jeremylongshore/claude-code-plugins-plus-skills |
Api Client Generator Purpose This skill provides automated assistance for api client generator tasks within the API Integration domain. When to Use This skill activates automatically when you: Mention "api client generator" in your request Ask about api client generator patterns or best practices Need help with api integration skills covering third-party apis, webhooks, sdk generation, and integration patterns. Capabilities Provides step-by-step guidance for api client generator Follows industry...
|
34 |
| 21260 | multithreaded-task-migration | dotnet/msbuild |
Migrating MSBuild Tasks to Multithreaded API MSBuild's multithreaded execution model requires tasks to avoid global process state (working directory, environment variables). Thread-safe tasks declare this capability via MSBuildMultiThreadableTask and use TaskEnvironment from IMultiThreadableTask for safe alternatives. Migration Steps Step 1: Update Task Class Declaration a. Ensure the task implementing class is decorated with the MSBuildMultiThreadableTask attribute. b. Implement IMultiThreadabl...
|
34 |
| 21261 | agentic-browser | inference-sh/skills |
Agentic Browser Browser automation for AI agents via inference.sh . Uses Playwright under the hood with a simple @e ref system for element interaction. Quick Start Install CLI curl -fsSL https://cli.inference.sh | sh && infsh login Open a page and get interactive elements infsh app run agentic-browser --function open --input '{"url": "https://example.com"}' --session new Core Workflow Every browser automation follows this pattern: Open - Navigate to URL, get @e refs for elements Interact - Use...
|
34 |
| 21262 | holmesgpt-skill | julianobarbosa/claude-code-skills |
HolmesGPT Skill AI-powered troubleshooting for Kubernetes and cloud-native environments. Overview HolmesGPT is a CNCF Sandbox project that connects AI models with live observability data to investigate infrastructure problems, find root causes, and suggest remediations. It operates with read-only access and respects RBAC permissions, making it safe for production environments. Quick Reference Topic Reference Installation references/installation.md Configuration references/configuration.md Data S...
|
34 |
| 21263 | qt-translation-assistant | re2zero/deepin-skills |
Qt Translation Assistant Skill Iron Laws Never modify original TS files without backup - Always preserve original content Validate AI translation quality - Verify translations are accurate and contextually appropriate Maintain translation consistency - Use consistent terminology across all translations Respect file encoding - Preserve UTF-8 encoding and special characters Minimal changes principle - Only modify translation content, preserve XML structure Red Flags User requests translation of no...
|
34 |
| 21264 | service-layer-extractor | patricio0312rev/skills |
Service Layer Extractor Extract business logic from controllers into a testable service layer. Architecture Layers routes/ → Define endpoints, parse requests controllers/ → Validate input, call services, format responses services/ → Business logic, orchestration repositories/ → Database queries models/ → Data structures Before: Fat Controller // ❌ Business logic mixed with HTTP concerns router . post ( "/users" , async ( req , res ) => { try { // Validation if ( !...
|
34 |
| 21265 | internal-comms | teachingai/full-stack-skills |
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
|
34 |
| 21266 | sql-query-optimizer | jeremylongshore/claude-code-plugins-plus-skills |
SQL Query Optimizer Optimize SQL queries for maximum performance. EXPLAIN Analysis -- Original slow query EXPLAIN ANALYZE SELECT u.*, COUNT(o.id) as order_count FROM users u LEFT JOIN orders o ON o.user_id = u.id WHERE u.created_at > '2024-01-01' GROUP BY u.id ORDER BY order_count DESC LIMIT 10; -- Output analysis: /* Sort (cost=15234.32..15234.34 rows=10 width=120) (actual time=245.123..245.125 rows=10 loops=1) Sort Key: (count(o.id)) DESC -> HashAggregate (cost=15000.00..15100.00 row...
|
34 |
| 21267 | typescript-advanced-types | ovachiever/droid-tings |
TypeScript Advanced Types Comprehensive guidance for mastering TypeScript's advanced type system including generics, conditional types, mapped types, template literal types, and utility types for building robust, type-safe applications. When to Use This Skill Building type-safe libraries or frameworks Creating reusable generic components Implementing complex type inference logic Designing type-safe API clients Building form validation systems Creating strongly-typed configuration objects Impleme...
|
34 |
| 21268 | terraform-module-builder | patricio0312rev/skills |
Terraform Module Builder Build reusable, production-ready Terraform modules for cloud infrastructure. Core Workflow Define module structure : Organize files properly Declare variables : Input parameters with validation Create resources : Infrastructure definitions Configure outputs : Export useful values Setup state : Remote backend configuration Document : README and examples Module Structure modules/ └── vpc/ ├── main.tf Primary resources ├── variables.tf Input variables ├── o...
|
34 |
| 21269 | project-retrospective | jamditis/claude-skills-journalism |
Project retrospective writer Create LESSONS.md files that capture institutional knowledge, especially failures. Think like a journalist writing about your own project—be specific, be honest, name the actual mistakes. When to use After completing an investigation or project When shutting down or pausing a publication Post-mortem for events Handing off a project to someone else Annual review of ongoing initiatives The critical section: "The real problem" This is the most valuable part of any retro...
|
34 |
| 21270 | security-benchmark-runner | jeremylongshore/claude-code-plugins-plus-skills |
Security Benchmark Runner Purpose This skill provides automated assistance for security benchmark runner tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "security benchmark runner" in your request Ask about security benchmark runner patterns or best practices Need help with advanced security skills covering penetration testing, compliance frameworks, threat modeling, and enterprise security. Capabilities Provides step-by-step guidance f...
|
34 |
| 21271 | apify-ecommerce | sickn33/antigravity-awesome-skills |
E-commerce Data Extraction Extract product data, prices, reviews, and seller information from any e-commerce platform using Apify's E-commerce Scraping Tool. Prerequisites .env file with APIFY_TOKEN (at ~/.claude/.env ) Node.js 20.6+ (for native --env-file support) Workflow Selection User Need Workflow Best For Track prices, compare products Workflow 1: Products & Pricing Price monitoring, MAP compliance, competitor analysis. Add AI summary for insights. Analyze reviews (sentiment or quality) Wo...
|
34 |
| 21272 | qemu-alpine-ssh | letta-ai/skills |
QEMU Alpine SSH Setup Overview This skill provides procedural guidance for setting up QEMU virtual machines running Alpine Linux with SSH access configured. It covers VM startup, network port forwarding, Alpine system configuration, and SSH server setup. Diagnostic-First Approach Before attempting any QEMU setup or troubleshooting syntax, verify preconditions first: 1. Check Port Availability Before starting QEMU with port forwarding, verify the target port is not in use: Preferred methods (if ...
|
34 |
| 21273 | aria-attribute-helper | jeremylongshore/claude-code-plugins-plus-skills |
Aria Attribute Helper Purpose This skill provides automated assistance for aria attribute helper tasks within the Frontend Development domain. When to Use This skill activates automatically when you: Mention "aria attribute helper" in your request Ask about aria attribute helper patterns or best practices Need help with frontend skills covering react, vue, css, accessibility, performance optimization, and modern web development patterns. Capabilities Provides step-by-step guidance for aria attri...
|
34 |
| 21274 | learning-graph-generator | dmccreary/claude-skills |
Learning Graph Generator Version: 0.03 You are tasked with generating a comprehensive high-quality learning graph from a course description. A learning graph is the foundational data structure for intelligent textbooks that can recommend learning paths. A learning graph is like a roadmap of Concepts to help students achieve their learning goals. A learning graph is an DAG Concept graph. Each arrow is a "Learning Dependency" relationship that suggest learning order. The markdown you generate mus...
|
34 |
| 21275 | gate-mcp-openclaw-installer | gate/gate-skills |
Gate MCP Complete Gate.com MCP server installer for OpenClaw. Quick Start Install all Gate MCP servers (default) ./scripts/install.sh Selective installation ./scripts/install.sh --select MCP Servers Server Endpoint Auth Description gate npx -y gate-mcp API Key + Secret Spot/Futures/Options trading gate-dex https://api.gatemcp.ai/mcp/dex x-api-key fixed as MCP_AK_8W2N7Q + Authorization: Bearer ${GATE_MCP_TOKEN} DEX operations gate-info https://api.gatemcp.ai/mcp/info None Market data gate-news ...
|
34 |
| 21276 | agent-browser | jihe520/social-push |
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
|
34 |
| 21277 | 1k-monitor-pr-ci | onekeyhq/app-monorepo |
Monitor PR CI & Reviews Monitor a pull request's CI checks and review comments. Auto-fix CI failures, prompt user for review feedback. Input $ARGUMENTS - PR number, PR URL, or omit to auto-detect from current branch. Workflow Step 1: Resolve PR number Determine the PR to monitor: If $ARGUMENTS is a number, use it directly If $ARGUMENTS is a GitHub URL, extract the PR number If $ARGUMENTS is empty, detect from current branch: gh pr list --head " $( git branch --show-current ) " --json number --jq...
|
34 |
| 21278 | typo3-workspaces | dirnbauer/webconsulting-skills |
TYPO3 Workspaces Compatibility: TYPO3 v13.x and v14.x (v14 preferred) All code examples in this skill are designed to work on both TYPO3 v13 and v14. TYPO3 API First: Always use TYPO3's built-in APIs, core features, and established conventions before creating custom implementations. Do not reinvent what TYPO3 already provides. Always verify that the APIs and methods you use exist and are not deprecated in your target TYPO3 version (v13 or v14) by checking the official TYPO3 documentation. Source...
|
34 |
| 21279 | react-coder | majesticlabs-dev/majestic-marketplace |
React Coder You write modern React components using TypeScript, hooks, and best practices. You create clean, performant, and maintainable code. Tech Stack Assumptions Technology Default React 18+ with concurrent features TypeScript For type safety Components Functional with hooks Package Manager pnpm Build Tool Vite or Next.js Styling Tailwind CSS Testing Vitest or Jest Component Patterns Basic Functional Component import { FC } from 'react' ; interface ButtonProps { label : string ; onClick : (...
|
34 |
| 21280 | agent-context-loader | jeremylongshore/claude-code-plugins-plus-skills |
Agent Context Loader Overview Automatic discovery and loading of AGENTS.md files across project hierarchies for AI coding agents. This skill scans the current workspace and its parent directories to locate agent instruction files, then surfaces their contents so the active agent session has full operational context. Prerequisites A project workspace containing one or more AGENTS.md files at any directory depth Read and Glob permissions to traverse the directory tree Grep access for searching fil...
|
34 |
| 21281 | code-quality | ab300819/skills |
Code Quality Guide Core Principle Production database. Correctness paramount. Crash > corrupt. Correctness Rules No workarounds or quick hacks. Handle all errors, check invariants Assert often. Never silently fail or swallow edge cases Crash on invalid state if it risks data integrity. Don't continue in undefined state Consider edge cases. On long enough timeline, all possible bugs will happen Rust Patterns Make illegal states unrepresentable Exhaustive pattern matching Prefer enums over strings...
|
34 |
| 21282 | beat-sync-video-editing | ecliptic-ai/skills |
Beat-Sync Video Editing Purpose Provide domain expertise for creating beat-synced video edits: taking a source video and an audio track, selecting clips from the video that align with the music's rhythm, and rendering the final output with FFmpeg. Core Concept: The EditPlan Every edit starts as an EditPlan — a JSON structure that describes which video clips to use and where in the audio to place them: { "audio_start" : "00:13" , "audio_duration" : 6.5 , "clips" : [ { "video_start" : "00:08" , "d...
|
34 |
| 21283 | architecture-patterns | ovachiever/droid-tings |
Architecture Patterns Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems. When to Use This Skill Designing new backend systems from scratch Refactoring monolithic applications for better maintainability Establishing architecture standards for your team Migrating from tightly coupled to loosely coupled architectures Implementing domain-driven design principles Creating t...
|
34 |
| 21284 | code-review-medium | breaking-brake/cc-wf-studio |
Code Review Medium Overview Comprehensive review for medium-sized PRs (100-500 lines). Checks Code quality and maintainability Security best practices Test coverage assessment Error handling patterns API design consistency Output Detailed review with categorized findings (quality, security, tests)
|
34 |
| 21285 | ring:pre-dev-feature-map | lerianstudio/ring |
Feature Map Creation - Understanding the Feature Landscape Foundational Principle Feature relationships and boundaries must be mapped before architectural decisions. Jumping from PRD to TRD without mapping creates: Architectures that don't match feature interaction patterns Missing integration points discovered late Poor module boundaries that cross feature concerns The Feature Map answers : How do features relate, group, and interact at a business level? The Feature Map never answers : How we'l...
|
34 |
| 21286 | swiftdata-coredata-persistence | dagba/ios-mcp |
SwiftData & CoreData Persistence Overview SwiftData and CoreData are NOT interchangeable. Each has specific strengths, migration traps, and performance patterns. Wrong framework choice or migration strategy causes production crashes. Core principle: Choose framework based on app constraints, version models from day one, never store BLOBs in the database. Framework Selection digraph framework_choice { "New iOS app?" [ shape = diamond ] ; "iOS 17+ only?" [ shape = diamond ] ; "Simple data model?" ...
|
34 |