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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,671
总 Skills
38.7M
总安装量
2,456
贡献者
# Skill 仓库 描述 安装量
11201 document-processing dirnbauer/webconsulting-skills
Work with office documents: PDF, Excel, Word, and PowerPoint. Format Overview | PDF | .pdf | Binary/text | Reports, forms, archives | Excel | .xlsx | XML in ZIP | Data, calculations, models | Word | .docx | XML in ZIP | Text documents, contracts | PowerPoint | .pptx | XML in ZIP | Presentations, slides Key concept: XLSX, DOCX, and PPTX are all ZIP archives containing XML files. You can unzip them to access raw content. PDF Processing PDF Tools | Basic read/write | py...
95
11202 harper-best-practices harperfast/skills
Harper Best Practices Guidelines for building scalable, secure, and performant applications on Harper. These practices cover everything from initial schema design to advanced deployment strategies. When to Use Reference these guidelines when: Defining or modifying database schemas Implementing or extending REST/WebSocket APIs Handling authentication and session management Working with custom resources and extensions Optimizing data storage and retrieval (Blobs, Vector Indexing) Deploying applica...
95
11203 erpnext-code-interpreter openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Code Interpreter Agent This agent transforms vague or incomplete ERPNext development requests into clear, actionable technical specifications. Purpose : Bridge the gap between "what the user wants" and "what needs to be built" When to Use This Agent ┌─────────────────────────────────────────────────────────────────────┐ │ USER REQUEST ANALYSIS │ ├─────────────────────────────────────────────────────────────────────┤ │ ...
95
11204 transcriptapi zeropointrepo/youtube-skills
TranscriptAPI Full YouTube data toolkit via TranscriptAPI.com . Transcripts, search, channels, playlists — one API key. Setup If $TRANSCRIPT_API_KEY is not set, help the user create an account (100 free credits, no card): Step 1 — Register: Ask user for their email. node ./scripts/tapi-auth.js register --email USER_EMAIL → OTP sent to email. Ask user: "Check your email for a 6-digit verification code." Step 2 — Verify: Once user provides the OTP: node ./scripts/tapi-auth.js verify --token TOKEN_...
95
11205 orbstack-best-practices 0xbigboss/claude-code
OrbStack is a fast, lightweight Docker and Linux VM runtime for macOS. Replaces Docker Desktop with better performance and seamless macOS integration. Core Commands ``` Start/stop orb Start + open default machine shell orb start Start OrbStack orb stop Stop OrbStack Machine management orb list List machines orb create ubuntu Create with latest version orb create ubuntu:jammy myvm Spec...
95
11206 agent-browser m1heng/clawdbot-feishu
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...
95
11207 find-skills api/git
Find Skills This skill helps you discover and install skills from the open agent skills ecosystem. When to Use This Skill Use this skill when the user: Asks "how do I do X" where X might be a common task with an existing skill Says "find a skill for X" or "is there a skill for X" Asks "can you do X" where X is a specialized capability Expresses interest in extending agent capabilities Wants to search for tools, templates, or workflows Mentions they wish they had help with a specific domain (desi...
94
11208 go-code-review existential-birds/beagle
Go Code Review Checklist Review Procedure Use assets/review-template.md when formatting the output of a code review to ensure consistent structure with Must Fix / Should Fix / Nits severity grouping. Run gofmt -d . and go vet ./... to catch mechanical issues first Read the diff file-by-file; for each file, check the categories below in order Flag issues with specific line references and the rule name After reviewing all files, re-read flagged items to verify they're genuine issues Summarize find...
94
11209 nextjs-pathname-id-fetch wsimmonds/claude-nextjs-skills
Next.js: Pathname ID Fetch Pattern When This Pattern Applies Use this pattern whenever a page needs to load data based on whatever identifier appears in the URL. Common scenarios include: Detail pages for products, posts, or users (/products/{id}, /blog/{slug}) Admin dashboards that drill into a selected resource (/admin/orders/{orderId}) Documentation or knowledge bases with nested paths (/docs/getting-started/installation) If the requirement says the data should change depending on the curr...
94
11210 software-patterns bobmatnyc/claude-mpm-skills
Software Patterns Primer Overview Architectural patterns solve specific structural problems. This skill provides a decision framework for when to apply each pattern, not a catalog to memorize. Core philosophy: Patterns solve problems. No problem? No pattern needed. When to Use This Skill Activate when: Designing a new system or major feature Adding external service integrations Code becomes difficult to test or modify Services start calling each other in circles Failures in one component ca...
94
11211 canghe-compress-image freestylefly/canghe-skills
Image Compressor Compresses images using best available tool (sips → cwebp → ImageMagick → Sharp). Script Directory Scripts in scripts/ subdirectory. Replace ${SKILL_DIR} with this SKILL.md's directory path. Script Purpose scripts/main.ts Image compression CLI Preferences (EXTEND.md) Use Bash to check EXTEND.md existence (priority order): Check project-level first test -f .canghe-skills/canghe-compress-image/EXTEND.md && echo "project" Then user-level (cross-platform: $HOME works on macOS/Linu...
94
11212 quality-gates yonatangross/orchestkit
Quality Gates This skill teaches agents how to assess task complexity, enforce quality gates, and prevent wasted work on incomplete or poorly-defined tasks. Key Principle: Stop and clarify before proceeding with incomplete information. Better to ask questions than to waste cycles on the wrong solution. Overview Auto-Activate Triggers Receiving a new task assignment Starting a complex feature implementation Before allocating work in Squad mode When requirements seem unclear or incomplete After 3 ...
94
11213 shape-up pmprompt/claude-plugin-product-management
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve Shape Up What It Is Shape Up is a product development methodology built on one core insight: you cannot estimate y...
94
11214 windows-app-developer 404kidwiz/claude-supercode-skills
Provides expertise in building modern Windows desktop applications using WinUI 3, WPF, and Windows App SDK. Specializes in XAML-based UI development, MVVM architecture, native Windows integration, and modern packaging with MSIX. When to Use - Building Windows desktop applications with WinUI 3 or WPF - Implementing MVVM architecture for Windows apps - Creating XAML layouts and custom controls - Packaging applications with MSIX - Integrating with Windows features (notifications, taskbar, sy...
94
11215 .net conventions exceptionless/exceptionless
Use message templates with named placeholders — values go in the args, not string interpolation: ``` // ✅ Correct: Named placeholders for structured data _logger.LogInformation("Saving org ({OrganizationId}-{OrganizationName}) event usage", organizationId, organization.Name); _logger.LogError(ex, "Error retrieving event post payload: {Path}", path); _logger.LogWarning("Unable to parse user agent {UserAgent}. Exception: {Message}", userAgent, ex.Message); // ❌ Wrong: String interpolat...
94
11216 design-tokens dylanfeltus/skills
This skill generates the foundational design tokens for a project. Run this after the design brief and before building any components. Every component built after this references these tokens instead of hardcoding values. Example prompts "Set up design tokens for this project" "Generate a token system based on Dieter Rams" "I need a spacing scale and color palette before I start building" "Create tokens that match our brief" Process Check what already exists. Before generating anything, scan the...
94
11217 theone-cocos-standards the1studio/theone-training-skills
TheOne Studio Cocos Creator Development Standards ⚠️ Cocos Creator 3.x (TypeScript 4.1+): All patterns and examples are compatible with Cocos Creator 3.x playable ads development. Skill Purpose This skill enforces TheOne Studio's comprehensive Cocos Creator development standards with CODE QUALITY FIRST: Priority 1: Code Quality & Hygiene (MOST IMPORTANT) TypeScript strict mode, ESLint configuration, access modifiers (public/private/protected) Throw exceptions (never silent errors) console.l...
94
11218 figma-design manutej/luxor-claude-marketplace
Figma Design Skill Comprehensive guide for Figma design workflows, plugin development, component systems, auto layout, prototyping, and design system management based on official Figma Plugin API documentation from Context7. When to Use This Skill Use this skill when working with: Figma Plugin Development: Building custom plugins, UI extensions, automation tools Design Systems: Creating and managing variables, styles, components, and libraries Component Architecture: Building reusable compon...
94
11219 mailpit-integration aaronontheweb/dotnet-skills
Email Testing with Mailpit and .NET Aspire When to Use This Skill Use this skill when: Testing email delivery locally without sending real emails Setting up email infrastructure in .NET Aspire Writing integration tests that verify emails are sent Debugging email rendering and headers
94
11220 stock-analysis sundial-org/awesome-openclaw-skills
Stock Analysis (v5.0) Analyze US stocks and cryptocurrencies using Yahoo Finance data. Includes portfolio management, crypto support, and periodic analysis. Quick Start IMPORTANT: Pass ONLY the stock ticker symbol(s) as arguments. Do NOT add extra text, headers, or formatting in the command. Analyze a single ticker: uv run { baseDir } /scripts/analyze_stock.py AAPL uv run { baseDir } /scripts/analyze_stock.py MSFT --output json Compare multiple tickers: uv run { baseDir } /scripts/analyze_stock....
94
11221 file-search 0xdarkmatter/claude-mods
File Search Modern file and content search. fd - Find Files Find by name fd config Files containing "config" fd -e py Python files By type fd -t f config Files only fd -t d src Directories only Exclude fd -E node_modules Exclude directory fd -E "*.min.js" Exclude pattern Execute command fd -e py -x wc -l Line count per file rg - Search Content Simple search rg "TODO" Find TODO rg -i "error" Case-insensitive By file type rg -t py "import" Python files only rg -t js -t ts "async" ...
94
11222 clawpilot kcchien/clawpilot
OpenClaw Expert Skill Auto-Update Check (Run First) Before any other action , run the staleness check: bash scripts/check_updates.sh If UP_TO_DATE : Proceed normally. If STALE : The skill references may be outdated. Before proceeding with the user's task: Fetch the latest 3-5 releases from https://github.com/openclaw/openclaw/releases Fetch https://docs.openclaw.ai/llms.txt for doc changes Search web for recent OpenClaw CVEs or security advisories Compare findings against the version in SKILL.md...
94
11223 og-image-generation andrelandgraf/fullstackrecipes
OG Image Generation Generate dynamic social preview images using Next.js file conventions and the next/og library. Server-rendered JSX images cached at build time. curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/og-image-generation
94
11224 debate-workflow rysweet/amplihack
Debate Workflow Skill Purpose Implement structured multi-perspective debate for important architectural decisions, design trade-offs, and complex problems where multiple valid approaches exist. When to Use This Skill USE FOR: Major architectural decisions (framework selection, system design) Complex trade-offs with no clear winner Controversial changes affecting multiple teams High-impact decisions requiring buy-in When perspectives genuinely conflict AVOID FOR: Simple implementation choic...
94
11225 photo-content-recognition-curation-expert erichowens/some_claude_skills
Photo Content Recognition & Curation Expert Expert in photo content analysis and intelligent curation. Combines classical computer vision with modern deep learning for comprehensive photo analysis. When to Use This Skill ✅ Use for: Face recognition and clustering (identifying important people) Animal/pet detection and clustering Near-duplicate detection using perceptual hashing (DINOHash, pHash, dHash) Burst photo selection (finding best frame from 10-50 shots) Screenshot vs photo classifica...
94
11226 voltagent-docs-bundle voltagent/skills
VoltAgent Embedded Docs Lookup Look up VoltAgent docs embedded in node_modules/@voltagent/core/docs. This bundle mirrors the website docs plus additional doc sets, so it is safe to use for version-matched answers. Where the Docs Live node_modules/@voltagent/core/docs/ |-- actions.md |-- agents/ |-- api/ |-- blog/ |-- community/ |-- deployment-docs/ |-- deployment.md |-- evals.md |-- evaluation-docs/ |-- getting-started/ |-- guardrails/ |-- integrations/ |-- models-docs/ |-- observability/ |-- ...
94
11227 remotion-resemble-ai resemble-ai/remotion-resemble-skill
When to use Use this skill when the user wants to create: Educational Tutorial Videos - Research a topic and create an animated explainer Example: "Create a tutorial about the lifecycle of a butterfly for grade 3 students" SaaS Walkthrough Demos - Showcase software features with animated UI Example: "Create a demo video showing how to use Notion's database feature" Product Launch Announcements - Marketing videos with motion graphics Example: "Create a launch video announcing our new AI-po...
94
11228 azure-devops markpitt/claude-skills
Azure DevOps API Skill This skill provides comprehensive guidance for working with the Azure DevOps REST API, enabling programmatic access to all Azure DevOps Services and Azure DevOps Server resources. Overview Azure DevOps REST API is a RESTful web API enabling you to access and manage work items, repositories, pipelines, test plans, artifacts, and more across all Azure DevOps services. Base URL: https://dev.azure.com/{organization}/{project}/_apis/{area}/{resource}?api-version={version} ...
94
11229 bats-testing-patterns sickn33/antigravity-awesome-skills
Bats Testing Patterns Comprehensive guidance for writing comprehensive unit tests for shell scripts using Bats (Bash Automated Testing System), including test patterns, fixtures, and best practices for production-grade shell testing. When to Use This Skill Writing unit tests for shell scripts Implementing test-driven development (TDD) for scripts Setting up automated testing in CI/CD pipelines Testing edge cases and error conditions Validating behavior across different shell environments Build...
94
11230 blockchain-expert personamanagmentlayer/pcl
Expert guidance for blockchain development, smart contracts, Web3 applications, DeFi protocols, and cryptocurrency systems. Core Concepts Blockchain Fundamentals - Distributed ledger technology - Consensus mechanisms (PoW, PoS, PoA) - Cryptographic hashing - Public/private key cryptography - Transaction validation - Block structure and chain Smart Contracts - Solidity programming - Gas optimization - Security patterns - Upgradeable contracts - Testing and auditing - Contract in...
94
11231 add-to-existing-project tambo-ai/tambo
Add Tambo to Existing Project Detect tech stack and integrate Tambo while preserving existing patterns. Workflow Detect tech stack - Analyze package.json and project structure Confirm with user - Present findings, ask about preferences Install dependencies - Add @tambo-ai/react and peer deps Create provider setup - Adapt to existing patterns Register first component - Demonstrate with existing component Step 1: Detect Tech Stack Check these files to understand the project: Key files to read pac...
94
11232 canghe-format-markdown freestylefly/canghe-skills
Markdown Formatter Transforms plain text or markdown files into well-structured markdown with proper frontmatter, formatting, and typography. Script Directory Scripts in scripts/ subdirectory. Replace ${SKILL_DIR} with this SKILL.md's directory path. Script Purpose scripts/main.ts Main entry point with CLI options (uses remark-cjk-friendly for CJK emphasis) scripts/quotes.ts Replace ASCII quotes with fullwidth quotes scripts/autocorrect.ts Add CJK/English spacing via autocorrect Preferences (EXT...
94
11233 vscode-extension-builder kjgarza/marketplace-claude
VS Code Extension Builder Build professional VS Code extensions with proper architecture, best practices, and complete tooling support. Quick Start For immediate extension creation: Initialize: Run npx --package yo --package generator-code -- yo code Choose type: New Extension (TypeScript) Fill details: Name, identifier, description Develop: Open in VS Code, press F5 to debug Test: Run commands in Extension Development Host Package: Run vsce package when ready For detailed guidance, follow ...
94
11234 turix-mac turixai/turix-cua
TuriX-Mac Skill This skill allows Clawdbot to control the macOS desktop visually using the TuriX Computer Use Agent. When to Use When asked to perform actions on the Mac desktop (e.g., "Open Spotify and play my liked songs"). When navigating applications that lack command-line interfaces. For multi-step visual workflows (e.g., "Find the latest invoice in my email and upload it to the company portal"). When you need the agent to plan, reason, and execute complex tasks autonomously. Key Features 🤖...
94
11235 supabase-help yoanbernabeu/supabase-pentest-skills
Supabase Pentest Skills Help Quick reference for all 24 security audit skills. When to Use This Skill Need a quick overview of available skills Looking for the right skill for a specific task Want usage examples for a particular skill Quick Start Full guided audit /supabase-pentest https://myapp.example.com Check if app uses Supabase /supabase-detect https://myapp.example.com Generate report from previous audit /supabase-report All Skills Reference Orchestration Skill Command Purpose supabase...
94
11236 opportunity-scanner senpi-ai/senpi-skills
Opportunity Scanner v5 521 perps on Hyperliquid. Fetching candles + computing technicals for all = 500k+ tokens. This scanner screens everything but only burns tokens on real opportunities. All computation in Python. Near-zero LLM tokens. The 4-Stage Funnel Stage 0: BTC Macro Context Source: BTC 4h + 1h candles (2 API calls). Output: btc_trend (strong_down/down/neutral/up/strong_up) and a macro_modifier applied to all final scores. Configurable via scanner-config.json . Stage 1: Bulk Screen (~0 ...
94
11237 pdf aiskillstore/marketplace
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
94
11238 bloomery mgratzer/bloomery
Build-Agent Tutorial Skill Philosophy You are a coding coach, not a code generator. By default, the user writes every line of code themselves. You guide, validate, and encourage. If they ask you to implement a step for them, confirm first — then do it. Core rules: In Step 0 ONLY , scaffold the starter project by running the scaffold.sh script (directory, entry file with boilerplate stdin loop and imports, config files). This is the ONE exception — the boilerplate isn't the learning content, so w...
94
11239 technical-advisory 404kidwiz/claude-supercode-skills
You are an expert senior engineering advisor with decades of experience across software architecture, system design, and engineering practices. Your expertise spans distributed systems, security, performance engineering, and complex technical decision-making. Purpose Provide authoritative technical guidance for complex engineering challenges. You excel at analyzing tradeoffs, designing robust architectures, solving difficult problems, and making recommendations based on deep technical underst...
94
11240 invoice-organizer skillcreatorai/ai-agent-skills
Invoice Organizer This skill transforms chaotic folders of invoices, receipts, and financial documents into a clean, tax-ready filing system without manual effort. When to Use This Skill Preparing for tax season and need organized records Managing business expenses across multiple vendors Organizing receipts from a messy folder or email downloads Setting up automated invoice filing for ongoing bookkeeping Archiving financial records by year or category Reconciling expenses for reimbursement Prep...
94
11241 akka-net-aspire-configuration aaronontheweb/dotnet-skills
Use this skill when: - Setting up a new Akka.NET project with .NET Aspire orchestration - Configuring Akka.Cluster with cluster bootstrapping and discovery - Integrating Akka.Persistence with SQL Server - Setting up Akka.Management for cluster management - Configuring multi-replica actor systems in local development - Deploying Akka.NET applications to Kubernetes with Aspire Related Skills - `akka-net-management` - Deep dive into Akka.Management, Cluster Bootstrap, and discovery provide...
94
11242 convex agents waynesutton/convexskills
Convex Agents Build persistent, stateful AI agents with Convex including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/ai Convex Agent Component: https://www.npmjs.com/package/@convex-dev/agent For broader context: https://docs.convex.dev/llms.txt Instructions Why Convex for AI Agents Persistent State - Conversation histo...
94
11243 m365-admin 404kidwiz/claude-supercode-skills
Provides Microsoft 365 administration and automation expertise specializing in Exchange Online, Teams, SharePoint, and Graph API operations. Manages secure identity, workload automation, licensing optimization, and compliance configuration across the Microsoft 365 ecosystem. When to Use - Exchange Online mailbox management and lifecycle - Microsoft Teams team lifecycle automation - SharePoint site management and security - License assignment and optimization - Microsoft Graph PowerShell a...
93
11244 playwright-ci-caching aaronontheweb/dotnet-skills
Caching Playwright Browsers in CI/CD When to Use This Skill Use this skill when: Setting up CI/CD for a project with Playwright E2E tests Build times are slow due to browser downloads (~400MB, 1-2 minutes) You want automatic cache invalidation when Playwright version changes Using GitHub Actions or Azure DevOps pipelines The Problem Playwright browsers (~400MB) must be downloaded on every CI run by default. This: Adds 1-2 minutes to every build Wastes bandwidth Can fail on transient network issu...
93
11245 font-pairing-suggester onewave-ai/claude-skills
Font Pairing Suggester Recommend font combinations for different use cases. Provide Google Fonts alternatives to premium fonts with hierarchy examples. Instructions You are an expert at typography and font pairing. Suggest harmonious font combinations, provide alternatives, and show hierarchy examples. Output Format Font Pairing Suggester Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best Practices Be Specific: ...
93
11246 find-skills freestylefly/canghe-skills
Find Skills This skill helps you discover and install skills from the open agent skills ecosystem. When to Use This Skill Use this skill when the user: Asks "how do I do X" where X might be a common task with an existing skill Says "find a skill for X" or "is there a skill for X" Asks "can you do X" where X is a specialized capability Expresses interest in extending agent capabilities Wants to search for tools, templates, or workflows Mentions they wish they had help with a specific domain (desi...
93
11247 scrum-master alirezarezvani/claude-skills
Scrum Master Expert Advanced agile practitioner specializing in data-driven team development, psychological safety facilitation, and high-performance sprint execution. Combines traditional Scrum mastery with modern analytics, behavioral science, and continuous improvement methodologies for sustainable team excellence. Table of Contents Capabilities Input Requirements Analysis Tools Methodology Templates & Assets Reference Frameworks Implementation Workflows Assessment & Measurement Best Practice...
93
11248 wordpress-plugin-fundamentals bobmatnyc/claude-mpm-skills
WordPress Plugin Fundamentals Overview WordPress plugin development using modern PHP 8.3+ practices, OOP architecture, Composer autoloading, and WordPress 6.7+ APIs. Build secure, maintainable plugins with proper hooks integration, database management, and settings pages. Current Standards: WordPress: 6.7+ (Full Site Editing stable) PHP: 8.3 recommended (7.4 minimum) Architecture: OOP with PSR-4 autoloading Security: Three-layer model (sanitize, validate, escape) Testing: PHPUnit + WPCS compl...
93
11249 building-with-medusa medusajs/medusa-claude-plugins
Medusa Backend Development Comprehensive backend development guide for Medusa applications. Contains patterns across 6 categories covering architecture, type safety, business logic placement, and common pitfalls. When to Apply Load this skill for ANY backend development task, including: Creating or modifying custom modules and data models Implementing workflows for mutations Building API routes (store or admin) Defining module links between entities Writing business logic or validation Query...
93
11250 clean-codejs-functions damianwrooby/javascript-clean-code-skills
Clean Code JavaScript – Function Patterns Table of Contents Single Responsibility Function Size Parameters Side Effects Single Responsibility // ❌ Bad function handleUser ( user ) { saveUser ( user ) ; sendEmail ( user ) ; } // ✅ Good function saveUser ( user ) { } function notifyUser ( user ) { } Function Size Keep functions small (ideally < 20 lines). Parameters // ❌ Bad function createUser ( name , age , city , zip ) { } // ✅ Good function createUser ( { name , age , address } ) { } Side Effe...
93