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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
1651 slack-gif-creator composiohq/awesome-claude-skills
Slack GIF Creator A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack. Slack Requirements Dimensions: Emoji GIFs: 128x128 (recommended) Message GIFs: 480x480 Parameters: FPS: 10-30 (lower is smaller file size) Colors: 48-128 (fewer = smaller file size) Duration: Keep under 3 seconds for emoji GIFs Core Workflow from core . gif_builder import GIFBuilder from PIL import Image , ImageDraw 1. Create builder builder = GIFBuilder ( width = 128 , height = 128 , f...
734
1652 okx-cex-portfolio okx/agent-skills
OKX CEX Portfolio & Account CLI Account balance, positions, P&L, bills, fees, and fund transfers on OKX exchange. Requires API credentials. Prerequisites Install okx CLI: npm install -g @okx_ai/okx-trade-cli Configure credentials: okx config init Or set environment variables: export OKX_API_KEY = your_key export OKX_SECRET_KEY = your_secret export OKX_PASSPHRASE = your_passphrase Test with demo mode: okx --profile demo account balance Credential & Profile Check Run this check before any authenti...
733
1653 content-creation anthropics/knowledge-work-plugins
Content Creation Skill Guidelines and frameworks for creating effective marketing content across channels. Content Type Templates Blog Post Structure Headline — clear, benefit-driven, includes primary keyword (aim for 60 characters or less for SEO) Introduction (100-150 words) — hook the reader with a question, statistic, bold claim, or relatable scenario. State what the post will cover. Include primary keyword. Body sections (3-5 sections) — each with a descriptive subheading (H2). Use H3 for s...
733
1654 ppt-visual claude-office-skills/skills
PPT Visual Skill Overview I help you design visually impactful presentation slides. I provide layout concepts, visual recommendations, and design specifications that transform text-heavy slides into engaging visual communications. What I can do: Design slide layouts and compositions Recommend visual elements (icons, images, shapes) Create color schemes and themes Suggest typography and hierarchy Provide before/after redesign concepts Generate SmartArt and diagram ideas What I cannot do: Create a...
733
1655 asc-localize-metadata rudrankriyam/app-store-connect-cli-skills
asc localize metadata Use this skill to pull English (or any source locale) App Store metadata, translate it with LLM, and push translations back to App Store Connect — all automated. Command discovery and output conventions Always confirm flags with --help for the exact asc version: asc localizations --help asc localizations download --help asc localizations upload --help asc app-info set --help Prefer explicit long flags ( --app , --version , --version-id , --type , --app-info ). Default outpu...
732
1656 derivatives-trading-usds-futures binance/binance-skills-hub
Binance Derivatives-trading-usds-futures Skill Derivatives-trading-usds-futures request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /fapi/v1/accountConfig (GET) Futures Account Configuration(USER_DATA) None recvWindow Yes /fapi/v2/account (GET) Account Information V2(USER_DATA) None recvWindow Yes /fapi/v3/account (GET) Account Informati...
730
1657 eloquent-best-practices iserter/laravel-claude-agents
Eloquent Best Practices Query Optimization Always Eager Load Relationships // ❌ N+1 Query Problem $posts = Post::all(); foreach ($posts as $post) { echo $post->user->name; // N additional queries } // ✅ Eager Loading $posts = Post::with('user')->get(); foreach ($posts as $post) { echo $post->user->name; // No additional queries } Select Only Needed Columns // ❌ Fetches all columns $users = User::all(); // ✅ Only needed columns $users = User::select(['id', 'name', 'email'])->get(); //...
728
1658 frontend-slides affaan-m/everything-claude-code
Frontend Slides Create zero-dependency, animation-rich HTML presentations that run entirely in the browser. Inspired by the visual exploration approach showcased in work by zarazhangrui (credit: @zarazhangrui). When to Activate Creating a talk deck, pitch deck, workshop deck, or internal presentation Converting .ppt or .pptx slides into an HTML presentation Improving an existing HTML presentation's layout, motion, or typography Exploring presentation styles with a user who does not know their de...
726
1659 raffle-winner-picker composiohq/awesome-claude-skills
Raffle Winner Picker This skill randomly selects winners from lists, spreadsheets, or Google Sheets for giveaways and contests. When to Use This Skill Running social media giveaways Picking raffle winners at events Randomly selecting participants for surveys or tests Choosing winners from contest submissions Fair distribution of limited spots or resources Random team assignments What This Skill Does Random Selection : Uses cryptographically random selection Multiple Sources : Works with CSV, Exc...
725
1660 app-store-optimization sickn33/antigravity-awesome-skills
App Store Optimization (ASO) Skill This comprehensive skill provides complete ASO capabilities for successfully launching and optimizing mobile applications on the Apple App Store and Google Play Store. Capabilities Research & Analysis Keyword Research: Analyze keyword volume, competition, and relevance for app discovery Competitor Analysis: Deep-dive into top-performing apps in your category Market Trend Analysis: Identify emerging trends and opportunities in your app category Review Sentimen...
724
1661 actionbook actionbook/actionbook
When the user needs to automate website tasks, use Actionbook to fetch complete action manuals instead of figuring out the steps yourself. When to Use This Skill Activate this skill when the user: Needs to complete a multi-step task ("Send a LinkedIn message", "Book an Airbnb") Asks how to interact with a website ("How do I post a tweet?") Builds browser-based AI agents or web scrapers Writes E2E tests for external websites What Actionbook Provides Action manuals include: Step-by-step instr...
723
1662 templates railwayapp/railway-skills
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 MongoDB ...
723
1663 computer-vision-opencv mindrally/skills
Computer Vision and OpenCV Development You are an expert in computer vision, image processing, and deep learning for visual data, with a focus on OpenCV, PyTorch, and related libraries. Key Principles Write concise, technical responses with accurate Python examples Prioritize clarity, efficiency, and best practices in computer vision workflows Use functional programming for image processing pipelines and OOP for model architectures Implement proper GPU utilization for computationally intensive...
723
1664 ralph-loop andrelandgraf/fullstackrecipes
Ralph Loop Complete setup for automated agent-driven development. Define features as user stories with testable acceptance criteria, then run AI agents in a loop until all stories pass. Prerequisites Complete these recipes first (in order): AI Coding Agent Configuration Configure AI coding agents like Cursor, GitHub Copilot, or Claude Code with project-specific patterns, coding guidelines, and MCP servers for consistent AI-assisted development. curl -H "Accept: text/markdown" https://fulls...
722
1665 playwright openai/skills
Playwright CLI Skill Drive a real browser from the terminal using playwright-cli . Prefer the bundled wrapper script so the CLI works even when it is not globally installed. Treat this skill as CLI-first automation. Do not pivot to @playwright/test unless the user explicitly asks for test files. Prerequisite check (required) Before proposing commands, check whether npx is available (the wrapper depends on it): command -v npx > /dev/null 2 > &1 If it is not available, pause and ask the user to in...
722
1666 okx-cex-bot okx/agent-skills
OKX CEX Bot Trading CLI Grid and DCA (Dollar Cost Averaging / Martingale) trading bot management on OKX exchange. All grid and DCA bots in this skill are native OKX platform bots — they run server-side on OKX and do not require a locally running process. Requires API credentials. Prerequisites Install okx CLI: npm install -g @okx_ai/okx-trade-cli Configure credentials — check first, then set up if missing : okx config show shows configured profiles; api_key shows last 4 chars if set If credenti...
722
1667 senior-data-engineer davila7/claude-code-templates
Senior Data Engineer World-class senior data engineer skill for production-grade AI/ML/Data systems. Quick Start Main Capabilities Core Tool 1 python scripts/pipeline_orchestrator.py --input data/ --output results/ Core Tool 2 python scripts/data_quality_validator.py --target project/ --analyze Core Tool 3 python scripts/etl_performance_optimizer.py --config config.yaml --deploy Core Expertise This skill covers world-class capabilities in: Advanced production patterns and architectur...
721
1668 mcp-developer jeffallan/claude-skills
MCP Developer Senior MCP (Model Context Protocol) developer with deep expertise in building servers and clients that connect AI systems with external tools and data sources. Role Definition You are a senior MCP developer with expertise in protocol implementation, SDK usage (TypeScript/Python), and production deployment. You build robust MCP servers that expose resources, tools, and prompts to Claude and other AI systems while maintaining security, performance, and developer experience standar...
720
1669 opentwitter 6551team/opentwitter-mcp
Twitter/X Data Skill Query Twitter/X data from the 6551 platform REST API. All endpoints require a Bearer token via $TWITTER_TOKEN . Get your token : https://6551.io/mcp Base URL : https://ai.6551.io Authentication All requests require the header: Authorization: Bearer $TWITTER_TOKEN Twitter Operations 1. Get Twitter User Info Get user profile by username. curl -s -X POST "https://ai.6551.io/open/twitter_user_info" \ -H "Authorization: Bearer $TWITTER_TOKEN " \ -H "Content-Type: application/json...
718
1670 faster-whisper theplasmak/faster-whisper
Faster Whisper Local speech-to-text using faster-whisper — a CTranslate2 reimplementation of OpenAI's Whisper that runs 4-6x faster with identical accuracy. With GPU acceleration, expect ~20x realtime transcription (a 10-minute audio file in ~30 seconds). When to Use Use this skill when you need to: Transcribe audio/video files — meetings, interviews, podcasts, lectures, YouTube videos Generate subtitles — SRT, VTT, ASS, LRC, or TTML broadcast-standard subtitles Identify speakers — diarization l...
717
1671 browser-automation web-infra-dev/midscene-skills
Browser Automation You are a browser automation expert who has debugged thousands of flaky tests and built scrapers that run for years without breaking. You've seen the evolution from Selenium to Puppeteer to Playwright and understand exactly when each tool shines. Your core insight: Most automation failures come from three sources - bad selectors, missing waits, and detection systems. You teach people to think like the browser, use the right selectors, and let Playwright's auto-wait do its job....
717
1672 twitter-reader daymade/claude-code-skills
Twitter Reader Fetch Twitter/X post content without needing JavaScript or authentication. Prerequisites You need a Jina API key to use this skill: Visit https://jina.ai/ to sign up (free tier available) Get your API key from the dashboard Set the environment variable: export JINA_API_KEY="your_api_key_here" Quick Start For a single tweet, use curl directly: curl "https://r.jina.ai/https://x.com/USER/status/TWEET_ID" \ -H "Authorization: Bearer ${JINA_API_KEY}" For multiple tweets, use...
715
1673 backend-dev-guidelines sickn33/antigravity-awesome-skills
Backend Development Guidelines (Node.js · Express · TypeScript · Microservices) You are a senior backend engineer operating production-grade services under strict architectural and reliability constraints. Your goal is to build predictable, observable, and maintainable backend systems using: Layered architecture Explicit error boundaries Strong typing and validation Centralized configuration First-class observability This skill defines how backend code must be written, not merely suggestion...
715
1674 element-plus-vue3 teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: Install and set up Element Plus in a Vue 3 project Use Element Plus components in Vue 3 applications Configure Element Plus (global config, i18n, theme, etc.) Use form components (Button, Input, Form, etc.) Use data display components (Table, Card, etc.) Use feedback components (Message, Notification, Dialog, etc.) Use navigation components (Menu, Tabs, etc.) Customize component styles and themes Handle component events Understa...
714
1675 orpc-contract-first langgenius/dify
oRPC Contract-First Development Project Structure web/contract/ ├── base.ts Base contract (inputStructure: 'detailed') ├── router.ts Router composition & type exports ├── marketplace.ts Marketplace contracts └── console/ Console contracts by domain ├── system.ts └── billing.ts Workflow Create contract in web/contract/console/{domain}.ts Import base from ../base and type from @orpc/contract Define route with path, method, input, output Register in rou...
714
1676 powerpoint-automation aktsmm/agent-skills
PowerPoint Automation AI-powered PPTX generation pipeline using Orchestrator-Workers pattern. Automatically extracts content, translates, applies templates, and performs quality reviews. When to Use This Skill Use this skill when the user wants to: Convert web articles or blog posts to PowerPoint presentations Translate English PPTX to Japanese (or other languages) Create presentations using custom templates Generate technical presentations with code blocks and diagrams Automate presentation...
713
1677 nuxthub onmax/nuxt-skills
NuxtHub v0.10.4 Full-stack Nuxt framework with database, KV, blob, and cache. Multi-cloud support (Cloudflare, Vercel, Deno, Netlify). For Nuxt server patterns: use nuxt skill (server.md) For content with database: use nuxt-content skill Installation npx nuxi module add hub Configuration // nuxt.config.ts export default defineNuxtConfig({ modules: ['@nuxthub/core'], hub: { db: 'sqlite', // 'sqlite' | 'postgresql' | 'mysql' kv: true, blob: true, cache: true, dir: '.dat...
713
1678 docx tfriedel/claude-office-skills
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
710
1679 hairy-utils hairyf/skills
Based on @hairy/utils v1.47.0. Focuses on core utility functions for JavaScript/TypeScript development. Core References | Async Utilities | Promise handling, deferred promises, and async flow control | [core-async](https://github.com/hairyf/skills/blob/main/skills/hairy-utils/references/core-async.md) | Function Composition | Compose and pipe functions for functional programming | [core-composition](https://github.com/hairyf/skills/blob/main/skills/hairy-utils/references/core-compositio...
710
1680 code-review xtone/ai_development_tools
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
710
1681 feature-forge jeffallan/claude-skills
Feature Forge Requirements specialist conducting structured workshops to define comprehensive feature specifications. Role Definition You are a senior product analyst with 10+ years of experience. You operate with two perspectives: PM Hat: Focused on user value, business goals, success metrics Dev Hat: Focused on technical feasibility, security, performance, edge cases When to Use This Skill Defining new features from scratch Gathering comprehensive requirements Writing specifications in EAR...
710
1682 swift-actor-persistence affaan-m/everything-claude-code
Swift Actors for Thread-Safe Persistence Patterns for building thread-safe data persistence layers using Swift actors. Combines in-memory caching with file-backed storage, leveraging the actor model to eliminate data races at compile time. When to Activate Building a data persistence layer in Swift 5.5+ Need thread-safe access to shared mutable state Want to eliminate manual synchronization (locks, DispatchQueues) Building offline-first apps with local storage Core Pattern Actor-Based Repository...
709
1683 nano-pdf steipete/clawdis
nano-pdf Use nano-pdf to apply edits to a specific page in a PDF using a natural-language instruction. Quick start nano-pdf edit deck.pdf 1 "Change the title to 'Q3 Results' and fix the typo in the subtitle" Notes: Page numbers are 0-based or 1-based depending on the tool’s version/config; if the result looks off by one, retry with the other. Always sanity-check the output PDF before sending it out.
709
1684 asc-app-create-ui rudrankriyam/app-store-connect-cli-skills
asc app create (UI automation) Use this skill to create a new App Store Connect app by driving the web UI. This is opt-in, local-only automation that requires the user to be signed in. Preconditions A browser automation tool is available (Playwright, Cursor browser MCP, or equivalent). User is signed in to App Store Connect (or can complete login + 2FA). The bundle ID must already be registered in the Apple Developer portal. Required inputs are known: app name (max 30 characters) bundle ID (must...
708
1685 prompt-engineer sickn33/antigravity-awesome-skills
Prompt Engineer Expert prompt engineer specializing in designing, optimizing, and evaluating prompts that maximize LLM performance across diverse use cases. When to Use This Skill Designing prompts for new LLM applications Optimizing existing prompts for better accuracy or efficiency Implementing chain-of-thought or few-shot learning Creating system prompts with personas and guardrails Building structured output schemas (JSON mode, function calling) Developing prompt evaluation and testing frame...
706
1686 domain-hunter resciencelab/opc-skills
Domain Hunter Skill Help users find and purchase domain names at the best price. Workflow Step 1: Generate Domain Ideas & Check Availability Based on the user's project description, generate 5-10 creative domain name suggestions. Guidelines: Keep names short (under 15 characters) Make them memorable and brandable Consider: {action}{noun}, {noun}{suffix}, {prefix}{keyword} Common suffixes: app, io, hq, ly, ify, now, hub CRITICAL: Always check availability before presenting domains to user! ...
705
1687 legacy-modernizer jeffallan/claude-skills
Legacy Modernizer Senior legacy modernization specialist with expertise in transforming aging systems into modern architectures without disrupting business operations. Role Definition You are a senior legacy modernization expert with 15+ years of experience in incremental migration strategies. You specialize in strangler fig pattern, branch by abstraction, and risk-free modernization approaches. You transform legacy systems while maintaining zero downtime and ensuring business continuity. Wh...
705
1688 fine-tuning-expert jeffallan/claude-skills
Fine-Tuning Expert Senior ML engineer specializing in LLM fine-tuning, parameter-efficient methods, and production model optimization. Role Definition You are a senior ML engineer with deep experience in model training and fine-tuning. You specialize in parameter-efficient fine-tuning (PEFT) methods like LoRA/QLoRA, instruction tuning, and optimizing models for production deployment. You understand training dynamics, dataset quality, and evaluation methodologies. When to Use This Skill Fine-...
704
1689 prd snarktank/ralph
Product Requirements Document (PRD) Overview Design comprehensive, production-grade Product Requirements Documents (PRDs) that bridge the gap between business vision and technical execution. This skill works for modern software systems, ensuring that requirements are clearly defined. When to Use Use this skill when: Starting a new product or feature development cycle Translating a vague idea into a concrete technical specification Defining requirements for AI-powered features Stakeholders need a...
704
1690 humanize humanizerai/agent-skills
Humanize AI Text Transform AI-generated content into natural, human-like writing using the HumanizerAI API. How It Works When the user invokes /humanize , you should: Parse $ARGUMENTS for text and optional --intensity flag Call the HumanizerAI API to humanize the text Present the humanized text with before/after scores Show remaining credits Parsing Arguments The user may provide: Just text: /humanize [their text] With intensity: /humanize --intensity aggressive [their text] Default intensity is...
703
1691 agentwallet frames-engineering/skills
AgentWallet AgentWallet provides server wallets for AI agents. Wallets are provisioned after email OTP verification. All signing happens server-side and is policy-controlled. TL;DR - Quick Reference FIRST: Check if already connected by reading ~/.agentwallet/config.json . If file exists with apiToken , you're connected - DO NOT ask user for email. Need to connect (no config file)? Ask user for email → POST to /api/connect/start → user enters OTP → POST to /api/connect/complete → save API token. ...
703
1692 hyperliquid starchild-ai-agent/official-skills
Hyperliquid Trading Trade perpetual futures and spot tokens on Hyperliquid, a fully on-chain decentralized exchange. Orders are signed using this agent's EVM wallet and submitted directly to the Hyperliquid L1. Prerequisites Before trading, the wallet policy must be active. Load the wallet-policy skill and propose the standard wildcard policy (deny key export + allow * ). This covers all Hyperliquid operations — USDC deposits, EIP-712 order signing, and withdrawals. Available Tools Account & Mar...
702
1693 swift-protocol-di-testing affaan-m/everything-claude-code
Swift Protocol-Based Dependency Injection for Testing Patterns for making Swift code testable by abstracting external dependencies (file system, network, iCloud) behind small, focused protocols. Enables deterministic tests without I/O. When to Activate Writing Swift code that accesses file system, network, or external APIs Need to test error handling paths without triggering real failures Building modules that work across environments (app, test, SwiftUI preview) Designing testable architecture ...
701
1694 graphql-architect jeffallan/claude-skills
GraphQL Architect Senior GraphQL architect specializing in schema design and distributed graph architectures with deep expertise in Apollo Federation 2.5+, GraphQL subscriptions, and performance optimization. Role Definition You are a senior GraphQL architect with 10+ years of API design experience. You specialize in Apollo Federation, schema-first design, and building type-safe API graphs that scale across teams and services. You master resolvers, DataLoader patterns, and real-time subscript...
701
1695 liquid-glass-design affaan-m/everything-claude-code
Liquid Glass Design System (iOS 26) Patterns for implementing Apple's Liquid Glass — a dynamic material that blurs content behind it, reflects color and light from surrounding content, and reacts to touch and pointer interactions. Covers SwiftUI, UIKit, and WidgetKit integration. When to Activate Building or updating apps for iOS 26+ with the new design language Implementing glass-style buttons, cards, toolbars, or containers Creating morphing transitions between glass elements Applying Liquid G...
701
1696 trpc-type-safety bobmatnyc/claude-mpm-skills
tRPC - End-to-End Type Safety progressive_disclosure: entry_point: summary sections: - id: summary title: "tRPC Overview" tokens: 70 next: [when_to_use, quick_start] - id: when_to_use title: "When to Use tRPC" tokens: 150 next: [quick_start, core_concepts] - id: quick_start title: "Quick Start" tokens: 300 next: [core_concepts, router_definition] - id: core_concepts title: "Core Concepts" tokens: 400 next: [router_definition, procedures] - id: router_definition title: "Router Definition" tokens:...
701
1697 peekaboo steipete/clawdis
Peekaboo Peekaboo is a full macOS UI automation CLI: capture/inspect screens, target UI elements, drive input, and manage apps/windows/menus. Commands share a snapshot cache and support --json / -j for scripting. Run peekaboo or peekaboo <cmd> --help for flags; peekaboo --version prints build metadata. Tip: run via polter peekaboo to ensure fresh builds. Features (all CLI capabilities, excluding agent/MCP) Core bridge : inspect Peekaboo Bridge host connectivity capture : live capture or video in...
701
1698 beautiful-mermaid intellectronica/agent-skills
Render Mermaid diagrams as SVG and PNG images using the Beautiful Mermaid library. Dependencies This skill requires the `agent-browser` skill for PNG rendering. Load it before proceeding with PNG capture. Supported Diagram Types - Flowchart - Process flows, decision trees, CI/CD pipelines - Sequence - API calls, OAuth flows, database transactions - State - State machines, connection lifecycles - Class - UML class diagrams, design patterns - Entity-Relationship - Database schemas, data ...
699
1699 document-skills travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
698
1700 novel-writer-workflow-guide wordflowlab/novel-writer-skills
Novel Writer 系统化创作工作流 当用户说"我想写小说" 立即激活此工作流指南。 七步方法论概览 1. /constitution → 建立创作原则 2. /specify → 定义故事规格 3. /clarify → 澄清模糊点 4. /plan → 制定创作计划 5. /tasks → 分解执行任务 6. /write → AI 辅助写作 7. /analyze → 质量验证分析 详细步骤指导 步骤 1:建立创作原则 "让我们从使用 /constitution 定义你的创作原则开始。这建立了你的核心价值观、质量标准和这个故事的不可协商规则。" 为什么这很重要:作为你的"创作宪法" - 决策会参考这些原则。 包含什么: 核心价值观(传递什么理念) 质量底线(绝对不妥协的) 风格原则(语言、节奏、氛围) 内容原则(角色、情节、世界观规范) 典型时长:15-20 分钟 步骤 2:定义故事规格 "现在使用 /specify 创建类似产品规格的故事文档。像产品经理一样思考:这...
698