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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,096
总 Skills
59.3M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
1801 apify-market-research apify/agent-skills
Conduct market research using Apify Actors to extract data from multiple platforms. 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: Identify market research type (select Actor) - [ ] Step 2: Fetch Actor schema via mcpc - [ ] Step 3: Ask user preferences (format, filename) - [ ] Ste...
3.4K
1802 desktop control patrickporto/desktop-agent
Desktop Control Skill This skill provides comprehensive desktop automation capabilities through PyAutoGUI, allowing AI agents to control the mouse, keyboard, take screenshots, and interact with the desktop environment. How to Use This Skill As an AI agent, you can invoke desktop automation commands using the uvx desktop-agent CLI. Command Structure All commands follow this pattern: uvx desktop-agent < category > < command > [ arguments ] [ options ] Categories: mouse - Mouse control keyboard - K...
3.4K
1803 analytics coreyhaines31/marketingskills
Analytics Tracking You are an expert in analytics implementation and measurement. Your goal is to help set up tracking that provides actionable insights for marketing and product decisions. Initial Assessment Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already covered or s...
3.3K
1804 mintlify mintlify/docs
Mintlify reference Reference for building documentation with Mintlify. This file covers essentials that apply to every task. For detailed reference on specific topics, read the files listed in the reference index below. Reference index Read these files only when your task requires them . They are in the reference/ directory next to this file. To find them, look in the same directory as this skill file (e.g., .claude/skills/mintlify/reference/ ). File When to read reference/components.md Adding o...
3.3K
1805 speech-to-text elevenlabs/skills
ElevenLabs Speech-to-Text Transcribe audio to text with Scribe v2 - supports 90+ languages, speaker diarization, and word-level timestamps. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs import ElevenLabs client = ElevenLabs ( ) with open ( "audio.mp3" , "rb" ) as audio_file : result = client . speech_to_text . convert ( file = audio_file , model_id = "scribe_v2" ) print ( result . text ) JavaScript import { ElevenLabsClient } ...
3.3K
1806 browser browserbase/skills
Browser Automation Automate browser interactions using the browse CLI with Claude. Setup check Before running any browser commands, verify the CLI is available: which browse || npm install -g @browserbasehq/browse-cli Environment Selection (Local vs Remote) The CLI automatically selects between local and remote browser environments based on available configuration: Local mode (default) Uses local Chrome — no API keys needed Best for: development, simple pages, trusted sites with no bot protectio...
3.3K
1807 content-creator shubhamsaboo/awesome-llm-apps
Content Creator You are an expert content creator who produces engaging, audience-focused content for blogs, social media, and marketing. When to Apply Use this skill when: Writing blog posts and articles Creating social media content (Twitter, LinkedIn, Instagram) Developing marketing copy Crafting compelling headlines and hooks Creating email newsletters Writing product descriptions Content Creation Framework 1. Know Your Audience Who are you writing for? What are their pain points? What level...
3.3K
1808 cloud-sql-basics google/skills
Cloud SQL Basics Cloud SQL is a fully managed relational database service for MySQL, PostgreSQL, and SQL Server. It automates time-consuming tasks like patches, updates, backups, and replicas, while providing high performance and availability for your applications. Prerequisites Ensure you have the necessary IAM permissions to create and manage Cloud SQL instances. The Cloud SQL Admin ( roles/cloudsql.admin ) role provides full access to Cloud SQL resources. Quick Start (PostgreSQL) Enable the A...
3.3K
1809 reducing-entropy softaworks/agent-toolkit
Reducing Entropy More code begets more code. Entropy accumulates. This skill biases toward the smallest possible codebase. Core question: "What does the codebase look like after ?" Before You Begin Load at least one mindset from references/ List the files in the reference directory Read frontmatter descriptions to pick which applies Load at least one State which you loaded and its core principle Do not proceed until you've done this. The Goal The goal is less total code in the final codebase - n...
3.3K
1810 tanstack-router-best-practices deckardger/tanstack-agent-skills
TanStack Router Best Practices Comprehensive guidelines for implementing TanStack Router patterns in React applications. These rules optimize type safety, data loading, navigation, and code organization. When to Apply Setting up application routing Creating new routes and layouts Implementing search parameter handling Configuring data loaders Setting up code splitting Integrating with TanStack Query Refactoring navigation patterns Rule Categories by Priority Priority Category Rules Impact CRIT...
3.3K
1811 crosspost affaan-m/everything-claude-code
Crosspost Distribute content across multiple social platforms with platform-native adaptation. When to Use User wants to post content to multiple platforms Publishing announcements, launches, or updates across social media Repurposing a post from one platform to others User says "crosspost", "post everywhere", "share on all platforms", or "distribute this" How It Works Core Rules Never post identical content cross-platform. Each platform gets a native adaptation. Primary platform first. Post to ...
3.3K
1812 returns-reverse-logistics affaan-m/everything-claude-code
Returns & Reverse Logistics Role and Context You are a senior returns operations manager with 15+ years handling the full returns lifecycle across retail, e-commerce, and omnichannel environments. Your responsibilities span return merchandise authorization (RMA), receiving and inspection, condition grading, disposition routing, refund and credit processing, fraud detection, vendor recovery (RTV), and warranty claims management. Your systems include OMS (order management), WMS (warehouse manageme...
3.3K
1813 kotlin-exposed-patterns affaan-m/everything-claude-code
Kotlin Exposed Patterns Comprehensive patterns for database access with JetBrains Exposed ORM, including DSL queries, DAO, transactions, and production-ready configuration. When to Use Setting up database access with Exposed Writing SQL queries using Exposed DSL or DAO Configuring connection pooling with HikariCP Creating database migrations with Flyway Implementing the repository pattern with Exposed Handling JSON columns and complex queries How It Works Exposed provides two query styles: DSL f...
3.3K
1814 ctf-malware ljagiello/ctf-skills
CTF Malware & Network Analysis Quick reference for malware analysis CTF challenges. Each technique has a one-liner here; see supporting files for full details with code. Additional Resources scripts-and-obfuscation.md - JavaScript deobfuscation, PowerShell analysis, eval/base64 decoding, junk code detection, hex payloads, Debian package analysis c2-and-protocols.md - C2 traffic patterns, custom crypto protocols, RC4 WebSocket, DNS-based C2, network indicators, PCAP analysis, AES-CBC, encryption ...
3.3K
1815 pytorch-patterns affaan-m/everything-claude-code
PyTorch Development Patterns Idiomatic PyTorch patterns and best practices for building robust, efficient, and reproducible deep learning applications. When to Activate Writing new PyTorch models or training scripts Reviewing deep learning code Debugging training loops or data pipelines Optimizing GPU memory usage or training speed Setting up reproducible experiments Core Principles 1. Device-Agnostic Code Always write code that works on both CPU and GPU without hardcoding devices. Good: Device...
3.3K
1816 dmux-workflows affaan-m/everything-claude-code
dmux Workflows Orchestrate parallel AI agent sessions using dmux, a tmux pane manager for agent harnesses. When to Activate Running multiple agent sessions in parallel Coordinating work across Claude Code, Codex, and other harnesses Complex tasks that benefit from divide-and-conquer parallelism User says "run in parallel", "split this work", "use dmux", or "multi-agent" What is dmux dmux is a tmux-based orchestration tool that manages AI agent panes: Press n to create a new pane with a prompt Pr...
3.3K
1817 context-budget affaan-m/everything-claude-code
Context Budget Analyze token overhead across every loaded component in a Claude Code session and surface actionable optimizations to reclaim context space. When to Use Session performance feels sluggish or output quality is degrading You've recently added many skills, agents, or MCP servers You want to know how much context headroom you actually have Planning to add more components and need to know if there's room Running /context-budget command (this skill backs it) How It Works Phase 1: Invent...
3.3K
1818 google-cloud-waf-cost-optimization google/skills
Google Cloud Well-Architected Framework skill for the Cost Optimization pillar Overview The Cost Optimization pillar of the Google Cloud Well-Architected Framework provides a structured approach to optimize the costs of your cloud workloads while maximizing business value. Cloud costs differ significantly from on-premises capital expenditure (CapEx) models, requiring a shift to operational expenditure (OpEx) management and a culture of accountability (FinOps). Core principles The recommendations...
3.3K
1819 content-refresher aaron-he-zhu/seo-geo-claude-skills
Content Refresher This skill helps identify and revitalize outdated content to reclaim lost rankings and traffic. It analyzes content freshness, identifies update opportunities, and guides the refresh process for maximum SEO and GEO impact. When to Use This Skill Content has lost rankings or traffic over time Statistics and information are outdated Competitors have published better content Content needs updating for a new year Industry changes require content updates Adding new sections to exi...
3.3K
1820 team-builder affaan-m/everything-claude-code
Team Builder Interactive menu for browsing and composing agent teams on demand. Works with flat or domain-subdirectory agent collections. When to Use You have multiple agent personas (markdown files) and want to pick which ones to use for a task You want to compose an ad-hoc team from different domains (e.g., Security + SEO + Architecture) You want to browse what agents are available before deciding Prerequisites Agent files must be markdown files containing a persona prompt (identity, rules, wo...
3.3K
1821 google-cloud-waf-reliability google/skills
Google Cloud Well-Architected Framework skill for the Reliability pillar Overview The Reliability pillar of the Google Cloud Well-Architected Framework provides principles and recommendations to help you design, deploy, and manage reliable, resilient, and highly available workloads in Google Cloud. A reliable system consistently performs its intended functions under defined conditions, is resilient to failures, and recovers gracefully from disruptions, thereby minimizing downtime, enhancing user...
3.3K
1822 chrome-devtools chromedevtools/chrome-devtools-mcp
Chrome DevTools Agent Overview A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling. When to Use Use this skill when: Browser Automation : Navigating pages, clicking elements, filling forms, and handling dialogs. Visual Inspection : Taking screenshots or text snapshots of web pages. Debugging : Inspecting console messag...
3.3K
1823 claude-devfleet affaan-m/everything-claude-code
Claude DevFleet Multi-Agent Orchestration When to Use Use this skill when you need to dispatch multiple Claude Code agents to work on coding tasks in parallel. Each agent runs in an isolated git worktree with full tooling. Requires a running Claude DevFleet instance connected via MCP: claude mcp add devfleet --transport http http://localhost:18801/mcp How It Works User → "Build a REST API with auth and tests" ↓ plan_project(prompt) → project_id + mission DAG ↓ Show plan to user → get approval ↓ ...
3.3K
1824 performance-optimization addyosmani/agent-skills
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...
3.3K
1825 scaffold-exercises mattpocock/skills
Scaffold Exercises Create exercise directory structures that pass pnpm ai-hero-cli internal lint , then commit with git commit . Directory naming Sections : XX-section-name/ inside exercises/ (e.g., 01-retrieval-skill-building ) Exercises : XX.YY-exercise-name/ inside a section (e.g., 01.03-retrieval-with-bm25 ) Section number = XX , exercise number = XX.YY Names are dash-case (lowercase, hyphens) Exercise variants Each exercise needs at least one of these subfolders: problem/ - student workspac...
3.3K
1826 ffmpeg digitalsamba/claude-code-video-toolkit
FFmpeg for Video Production FFmpeg is the essential tool for video/audio processing. This skill covers common operations for Remotion video projects. Quick Reference GIF to MP4 (Remotion-compatible) ffmpeg -i input.gif -movflags faststart -pix_fmt yuv420p \ -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" output.mp4 Why these flags: -movflags faststart - Moves metadata to start for web streaming -pix_fmt yuv420p - Ensures compatibility with most players scale=trunc(...) - Forces even dimensions (r...
3.3K
1827 alert-manager aaron-he-zhu/seo-geo-claude-skills
Alert Manager This skill helps you set up proactive monitoring alerts for critical SEO and GEO metrics. Get notified when rankings drop, traffic changes significantly, technical issues occur, or competitors make moves. When to Use This Skill Setting up SEO monitoring systems Creating ranking drop alerts Monitoring technical SEO health Tracking competitor movements Alerting on content performance changes Monitoring GEO/AI visibility changes Setting up brand mention alerts What This Skill Does A...
3.3K
1828 rank-tracker aaron-he-zhu/seo-geo-claude-skills
This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights. When to Use This Skill - Setting up ranking tracking for new campaigns - Monitoring keyword position changes - Analyzing ranking trends over time - Comparing rankings against competitors - Tracking SERP feature appearances - Monitoring AI Overview inclusions - Creating ranking report...
3.3K
1829 discovery-interview parcadei/continuous-claude-v3
Discovery Interview You are a product discovery expert who transforms vague ideas into detailed, implementable specifications through deep, iterative interviews. You work with both technical and non-technical users. Core Philosophy Don't ask obvious questions. Don't accept surface answers. Don't assume knowledge. Your job is to: Deeply understand what the user actually wants (not what they say) Detect knowledge gaps and educate when needed Surface hidden assumptions and tradeoffs Research w...
3.3K
1830 domain-authority-auditor aaron-he-zhu/seo-geo-claude-skills
Domain Authority Auditor Based on CITE Domain Rating . Full benchmark reference: references/cite-domain-rating.md SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimize...
3.3K
1831 okx-sentiment-tracker okx/agent-skills
OKX News & Sentiment Crypto news aggregation and coin sentiment analysis for OKX. All commands are read-only and require API credentials (OAuth2.1). Capabilities User Intent Command Latest/important news okx news latest Coin-specific news okx news by-coin Keyword news search okx news search Sentiment-filtered news okx news by-sentiment Full article content okx news detail Coin sentiment snapshot okx news coin-sentiment Sentiment trend okx news coin-trend Sentiment ranking okx news sentiment-rank...
3.3K
1832 payload payloadcms/skills
Payload Application Development Payload is a Next.js native CMS with TypeScript-first architecture, providing admin panel, database management, REST/GraphQL APIs, authentication, and file storage. Quick Reference Task Solution Details Auto-generate slugs slugField() FIELDS.mdslug-field-helper Restrict content by user Access control with query ACCESS-CONTROL.mdrow-level-security-with-complex-queries Local API user ops user + overrideAccess: false QUERIES.mdaccess-control-in-local-api Draft/publ...
3.3K
1833 home-assistant-best-practices homeassistant-ai/skills
Home Assistant Best Practices Use native Home Assistant syntax wherever possible. Templates bypass validation and fail silently at runtime, making intent opaque. Native Conditions Over Templates See Conditions and wait_for_trigger docs. Instead of template Use native construct {{ states('sensor.x') in ['a', 'b'] }} condition: state with state: ["a", "b"] {{ not is_state('sensor.x', 'off') }} condition: not wrapping a state condition {{ state_attr('alarm.x', 'changed_by') == 'Guest' }} condition:...
3.3K
1834 smart-ocr claude-office-skills/skills
Smart OCR Skill Overview This skill enables intelligent text extraction from images and scanned documents using PaddleOCR - a leading OCR engine supporting 100+ languages. Extract text from photos, screenshots, scanned PDFs, and handwritten documents with high accuracy. How to Use Provide the image or scanned document Optionally specify language(s) to detect I'll extract text with position and confidence data Example prompts: "Extract all text from this screenshot" "OCR this scanned PDF document...
3.3K
1835 prisma-upgrade-v7 prisma/skills
Upgrade to Prisma ORM 7 Complete guide for migrating from Prisma ORM v6 to v7. This upgrade introduces significant breaking changes including ESM-only support, required driver adapters, and a new configuration system. When to Apply Reference this skill when: Upgrading from Prisma v6 to v7 Updating to the prisma-client generator Setting up driver adapters Configuring prisma.config.ts Fixing import errors after upgrade Rule Categories by Priority Priority Category Impact Prefix 1 Schema Migration ...
3.3K
1836 prisma-driver-adapter-implementation prisma/skills
Prisma 7 Driver Adapter Implementation Guide This skill provides everything needed to implement a Prisma ORM v7 driver adapter for any database. Architecture Overview ┌─────────────────────────────────────────────────────────────────┐ │ PrismaClient │ │ (requires adapter factory) │ └─────────────────────────────────────────────────────────────────┘ │ ▼ ┌────────────────────────────────────────────────────────...
3.3K
1837 entity-optimizer aaron-he-zhu/seo-geo-claude-skills
Entity Optimizer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · alert-m...
3.3K
1838 opencli joeseesun/opencli-skill
opencli CLI tool that turns websites into CLI interfaces, reusing Chrome's login state. Zero credentials needed. Rule: use opencli for supported sites instead of playwright or browser tools. Syntax opencli < site > < command > [ --option value ] [ -f json ] Common flags (all commands): -f json — machine-readable output (preferred for parsing) --limit N — number of results (default varies, usually 20) -f table|json|yaml|md|csv Quick Examples 读取/浏览 opencli bilibili hot --limit 10 -f json opencli ...
3.3K
1839 firecrawl-instruct firecrawl/cli
firecrawl instruct Interact with scraped pages in a live browser session. Scrape a page first, then use natural language prompts or code to click, fill forms, navigate, and extract data. When to use Content requires interaction: clicks, form fills, pagination, login scrape failed because content is behind JavaScript interaction You need to navigate a multi-step flow Last resort in the workflow escalation pattern : search → scrape → map → crawl → instruct Never use instruct for web searches — use...
3.3K
1840 code-simplification addyosmani/agent-skills
Code Simplification Inspired by the Claude Code Simplifier plugin . Adapted here as a model-agnostic, process-driven skill for any AI coding agent. Overview Simplify code by reducing complexity while preserving exact behavior. The goal is not fewer lines — it's code that is easier to read, understand, modify, and debug. Every simplification must pass a simple test: "Would a new team member understand this faster than the original?" When to Use After a feature is working and tests pass, but the i...
3.3K
1841 ads coreyhaines31/marketingskills
Paid Ads You are an expert performance marketer with direct access to ad platform accounts. Your goal is to help create, optimize, and scale paid advertising campaigns that drive efficient customer acquisition. Before Starting Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not al...
3.2K
1842 firebase-basics google/skills
Prerequisites Make sure you follow firebase-local-env-setup skill first. This skill assumes you have already installed the Firebase CLI and Firebase MCP server. Core Workflow 1. Authentication Log in to Firebase: npx -y firebase-tools@latest login This opens a browser for authentication. For environments where localhost is not available (e.g., remote shell), use npx -y firebase-tools@latest login --no-localhost . 2. Creating a Project To create a new Firebase project from the CLI: npx -y firebas...
3.2K
1843 threejs-interaction cloudai-x/threejs-skills
Three.js Interaction Quick Start import * as THREE from "three"; import { OrbitControls } from "three/addons/controls/OrbitControls.js"; // Camera controls const controls = new OrbitControls(camera, renderer.domElement); controls.enableDamping = true; // Raycasting for click detection const raycaster = new THREE.Raycaster(); const mouse = new THREE.Vector2(); function onClick(event) { mouse.x = (event.clientX / window.innerWidth) * 2 - 1; mouse.y = -(event.clientY / window.innerHeight) * ...
3.2K
1844 documentation-and-adrs addyosmani/agent-skills
Documentation and ADRs Overview Document decisions, not just code. The most valuable documentation captures the why — the context, constraints, and trade-offs that led to a decision. Code shows what was built; documentation explains why it was built this way and what alternatives were considered . This context is essential for future humans and agents working in the codebase. When to Use Making a significant architectural decision Choosing between competing approaches Adding or changing a public...
3.2K
1845 node mcollina/skills
When to use Use this skill whenever you are dealing with Node.js code to obtain domain-specific knowledge for building robust, performant, and maintainable Node.js applications. TypeScript with Type Stripping When writing TypeScript for Node.js, use type stripping (Node.js 22.6+) instead of build tools like ts-node or tsx. Type stripping runs TypeScript directly by removing type annotations at runtime without transpilation. Key requirements for type stripping compatibility: Use import type for t...
3.2K
1846 n8n-validation-expert czlonkowski/n8n-skills
n8n Validation Expert Expert guide for interpreting and fixing n8n validation errors. Validation Philosophy Validate early, validate often Validation is typically iterative: Expect validation feedback loops Usually 2-3 validate → fix cycles Average: 23s thinking about errors, 58s fixing them Key insight: Validation is an iterative process, not one-shot! Error Severity Levels 1. Errors (Must Fix) Blocks workflow execution - Must be resolved before activation Types: missing_required - Re...
3.2K
1847 gmgn-cooking gmgnai/gmgn-skills
IMPORTANT: Always use gmgn-cli commands below. Do NOT use web search, WebFetch, curl, or visit gmgn.ai — all token creation operations must go through the CLI. The CLI handles signing and submission automatically. IMPORTANT: Do NOT guess field names or values. When a field's meaning is unclear, look it up in the Response Fields sections below before using it. ⚠️ IPv6 NOT SUPPORTED: If you get a 401 or 403 error and credentials look correct, check for IPv6 immediately: (1) list all network interf...
3.2K
1848 file-organizer composiohq/awesome-claude-skills
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...
3.2K
1849 migrate-oxlint oxc-project/oxc
This skill guides you through migrating a JavaScript/TypeScript project from ESLint to Oxlint . Overview Oxlint is a high-performance linter that implements many popular ESLint rules natively in Rust. It can be used alongside ESLint or as a full replacement. An official migration tool is available: @oxlint/migrate Step 1: Run Automated Migration Run the migration tool in the project root: npx @oxlint/migrate This reads your ESLint flat config and generates a .oxlintrc.json file. Key Options Opti...
3.2K
1850 gemini-live-api-dev google-gemini/gemini-skills
Gemini Live API Development Skill Overview The Live API enables low-latency, real-time voice and video interactions with Gemini over WebSockets. It processes continuous streams of audio, video, or text to deliver immediate, human-like spoken responses. Key capabilities: Bidirectional audio streaming — real-time mic-to-speaker conversations Video streaming — send camera/screen frames alongside audio Text input/output — send and receive text within a live session Audio transcriptions — get text tr...
3.2K