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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,591
总 Skills
165.7M
总安装量
2,748
贡献者
# Skill 仓库 描述 安装量
8551 test-driven-development sickn33/agentic-awesome-skills
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
1.3K
8552 xiaohongshu-cli jackwener/xiaohongshu-cli
xiaohongshu-cli — Xiaohongshu CLI Tool Binary: xhs Credentials: browser cookies (auto-extracted) or browser-assisted QR login ( --qrcode ) Setup Install (requires Python 3.10+) uv tool install xiaohongshu-cli Or: pipx install xiaohongshu-cli Upgrade to latest (recommended to avoid API errors) uv tool upgrade xiaohongshu-cli Or: pipx upgrade xiaohongshu-cli Authentication IMPORTANT FOR AGENTS : Before executing ANY xhs command, check if credentials exist first. Do NOT assume cookies are confi...
1.3K
8553 prompt-engineering sickn33/agentic-awesome-skills
Prompt Engineering Overview Use this skill to design prompt systems that are clear, testable, and reusable. It covers prompt drafting, optimization, evaluation, and production-oriented patterns for few-shot prompting, reasoning workflows, templates, and system prompts. Keep the main workflow in this file and load the targeted reference files only for the pattern you are applying. When to Use Use this skill when: A user asks to write, rewrite, or improve a prompt A prompt needs better structure, ...
1.3K
8554 agentmail-cli agentmail-to/agentmail-skills
AgentMail CLI Use the agentmail CLI to send and receive emails programmatically. Requires AGENTMAIL_API_KEY environment variable. Install npm install -g agentmail-cli Core Commands Inboxes Create an inbox agentmail inboxes create --display-name "My Agent" --username myagent --domain example.com List inboxes agentmail inboxes list Get an inbox agentmail inboxes retrieve --inbox-id < inbox_id > Delete an inbox agentmail inboxes delete --inbox-id < inbox_id > Send Email Send a message from an ...
1.3K
8555 react-query mindrally/skills
React Query Best Practices You are an expert in React Query, TypeScript, and React development. React Query (now TanStack Query) simplifies data fetching logic with built-in caching, background updates, and stale data management. Core Principles Use React Query for all data fetching and caching Leverage React Query's built-in state management instead of useState for server data Use React Context and useReducer for managing client-side global state Avoid excessive API calls through proper cachi...
1.3K
8556 expo-react-native-performance pproenca/dot-skills
Expo React Native Performance Best Practices Comprehensive performance optimization guide for Expo React Native applications. Contains 42 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React Native components or screens Implementing lists with FlatList or FlashList Adding animations or transitions Optimizing images and asset loading Reviewing code for performance issues Rule Categorie...
1.3K
8557 close-month anthropics/knowledge-work-plugins
Run the month-end close workflow. Reconcile, flag gaps, narrate the P&L, and export the close packet for the owner's records (and their accountant). Parse arguments: --month (default: previous calendar month) — YYYY-MM format --save-to (default files ) — files (Google Drive / OneDrive), desktop (local), or both Step 1 — Reconcile Trigger the month-end-prep skill workflow: Pull all QuickBooks transactions for the target month. Pull settlements from each connected payment processor (PayPal, Stripe...
1.3K
8558 business-pulse anthropics/knowledge-work-plugins
Business Pulse One prompt, one page. Pull live data from every connected tool, synthesize it into a single scannable brief, and surface the single most important thing to act on today. Do the work — don't ask the user to help find the data. Step 1 — Pull data in parallel Dispatch all connector calls in a single parallel batch — see reference/data_sources.md for the exact tool-to-metric mapping. Do not pull serially; latency turns a 30-second skill into a painful wait. Connectors to attempt simul...
1.3K
8559 content-pattern-analyzer-sms blacktwist/social-media-skills
Content Pattern Analyzer When to Use User asks to find patterns in what content works and what does not User mentions "what's working," "content patterns," or "best topics" User says "best format," "best time to post," or "analyze my content" User wants to know what to do more of or do less of User asks "what should I change" about their content approach User shares post history and wants a pattern-based breakdown User mentions "content audit" or "what's my best-performing content type" Role You...
1.3K
8560 scikit-learn k-dense-ai/scientific-agent-skills
Scikit-learn Overview This skill provides comprehensive guidance for machine learning tasks using scikit-learn, the industry-standard Python library for classical machine learning. Use this skill for classification, regression, clustering, dimensionality reduction, preprocessing, model evaluation, and building production-ready ML pipelines. Installation Tested against scikit-learn 1.8.0 (stable; December 2025). Requires Python 3.11–3.14 (free-threaded CPython 3.14 wheels available in 1.8+). Inst...
1.3K
8561 remotion vercel-labs/json-render
Stitch to Remotion Walkthrough Videos You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations. Overview This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects ...
1.3K
8562 mcp2cli knowsuchagency/mcp2cli
mcp2cli Turn any MCP server or OpenAPI spec into a CLI at runtime. No codegen. Install Run directly (no install needed) uvx mcp2cli --help Or install pip install mcp2cli Core Workflow Connect to a source (MCP server or OpenAPI spec) Discover available commands with --list Inspect a specific command with <command> --help Execute the command with flags MCP over HTTP mcp2cli --mcp https://mcp.example.com/sse --list mcp2cli --mcp https://mcp.example.com/sse create-task --help mcp2cli --mcp https:...
1.3K
8563 images-search brave/brave-search-skills
Images Search Requires API Key : Get one at https://api.search.brave.com Plan : Included in the Search plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe Quick Start (cURL) Basic Search curl -s "https://api.search.brave.com/res/v1/images/search?q=mountain+landscape" \ -H "Accept: application/json" \ -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY} " With Parameters curl -s "https://api.search.brave.com/res/v1/images/search" \ -H "Accept: application/json" \ -H "X-Subsc...
1.3K
8564 ccxt-python ccxt/ccxt
CCXT for Python A comprehensive guide to using CCXT in Python projects for cryptocurrency exchange integration. Installation REST API (Standard) pip install ccxt WebSocket API (Real-time, ccxt.pro) pip install ccxt Optional Performance Enhancements pip install orjson Faster JSON parsing pip install coincurve Faster ECDSA signing (45ms → 0.05ms) Both REST and WebSocket APIs are included in the same package. Quick Start REST API - Synchronous import ccxt exchange = ccxt . binance ( ) exchange . ...
1.3K
8565 translate-book deusyu/translate-book
Book Translation Skill You are a book translation assistant. You translate entire books from one language to another by orchestrating a multi-step pipeline. Workflow 1. Collect Parameters Determine the following from the user's message: file_path : Path to the input file (PDF, DOCX, or EPUB) — REQUIRED target_lang : Target language code (default: zh ) — e.g. zh, en, ja, ko, fr, de, es concurrency : Number of parallel sub-agents per batch (default: 8 ) custom_instructions : Any additional transla...
1.3K
8566 cybersecurity-analyst rysweet/amplihack
Cybersecurity Analyst Skill Purpose Analyze events through the disciplinary lens of cybersecurity, applying rigorous security frameworks (CIA triad, defense-in-depth, zero-trust), threat modeling methodologies (STRIDE, PASTA, VAST), attack surface analysis, and industry standards (NIST, ISO 27001, MITRE ATT&CK) to understand security risks, identify vulnerabilities, assess threat actors and attack vectors, evaluate defensive controls, and recommend risk mitigation strategies. When to Use This ...
1.3K
8567 papercuts every-app/open-seo
No SKILL.md available for this skill. View on GitHub Installs 893 Repository every-app/open-seo GitHub Stars 10.8K First Seen Jul 10, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.3K
8568 landing-page-guide-v2 bear2u/my-skills
This skill enables creation of distinctive, high-converting landing pages that combine: - Proven Conversion Framework: 11 essential elements from DESIGNNAS for high conversion rates - Exceptional Design Quality: Bold aesthetic choices that create unforgettable brand experiences - Production-Ready Code: Next.js 14+ with ShadCN UI, TypeScript, and performance optimization Philosophy: A landing page must convert visitors AND make them remember your brand. Generic, template-looking pages fail at...
1.3K
8569 asr marswaveai/skills
When to Use User wants to transcribe an audio file to text User provides an audio file path and asks for transcription User says "转录", "识别", "transcribe", "语音转文字" When NOT to Use User wants to synthesize speech from text (use /tts ) User wants to create a podcast or explainer (use /podcast or /explainer ) Purpose Transcribe audio files to text using coli asr , which runs fully offline via local speech recognition models. No API key required. Supports Chinese, English, Japanese, Korean, and Canto...
1.3K
8570 agents-get-started aws/agent-toolkit-for-aws
get-started Walk a developer from zero to a running agent on AWS. When to use Developer wants to build an agent on AWS and doesn't know where to start Developer wants to create a new AgentCore project Developer is choosing between frameworks (Strands, LangGraph, GoogleADK, OpenAI Agents) Developer just ran agentcore create and wants to know what to do next Do NOT use for: Environment/prerequisite issues (CLI not found, credentials broken) → use agents-debug Adding capabilities to an existing pro...
1.3K
8571 symbolic-equation lingzhi227/agent-research-skills
Symbolic Equation Discovery Discover interpretable scientific equations from data using LLM-guided evolutionary search. Input $0 — Dataset description, variable names, and physical context References LLM-SR patterns (prompts, evolution, sampling): ~/.claude/skills/symbolic-equation/references/llmsr-patterns.md Workflow (from LLM-SR) Show more
1.3K
8572 macos-cleaner daymade/claude-code-skills
macOS Cleaner Overview Intelligently analyze macOS disk usage and provide actionable cleanup recommendations to reclaim storage space. This skill follows a safety-first philosophy: analyze thoroughly, present clear findings, and require explicit user confirmation before executing any deletions. Target users: Users with basic technical knowledge who understand file systems but need guidance on what's safe to delete on macOS. Core Principles Safety First, Never Bypass: NEVER execute dangerous c...
1.3K
8573 chakra-ui-migrate chakra-ui/chakra-ui
Chakra UI Migration: v2 → v3 You are guiding a developer through migrating their project from Chakra UI v2 to v3. Work through the steps below in order. Inspect the project first — never guess the package versions or framework. Node requirement: Chakra UI v3 requires Node >= 20.x. Confirm before proceeding if the environment is uncertain. Step 1 — Inspect the project Read these files to understand the current state: package.json Show more
1.3K
8574 build-loop-codex buildgreatproducts/builder-os
Codex Build Loop Quality-gated feature work: nothing ships on "it compiles" — every increment is built, reviewed, tested end to end, and fixed before the user hears "done." Source of work A plan file exists (roadmap, refactor plan, or task list with - [ ] checkboxes — search the repo): work the first unchecked task. Tasks are ordered intentionally — never skip ahead. If the plan references spec docs, read only the sections relevant to the current task. No plan (or the request is outside it): bui...
1.3K
8575 bib-search-citation bahayonghang/academic-writing-skills
Bib Search Citation Capability Summary Use this skill when the user provides a local .bib file and needs research-oriented bibliography retrieval rather than a single citation-key lookup. It is designed for large BibTeX/BibLaTeX libraries, including Zotero exports with mixed standard and custom fields such as shorttitle , annotation , keywords , abstract , file , DOI, URL, and eprint metadata. The skill can: search by topic words and field-specific filters filter by author, year, entry type, DOI...
1.3K
8576 superpowers-lab sickn33/agentic-awesome-skills
Superpowers Lab Overview Lab environment for Claude superpowers When to Use This Skill Use this skill when you need to work with lab environment for claude superpowers. Instructions This skill provides guidance and patterns for lab environment for claude superpowers. For more information, see the source repository . Show more Installs 1.3K Repository sickn33/agentic…e-skills GitHub Stars 45.1K First Seen Feb 1, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.3K
8577 multi-agent-brainstorming sickn33/agentic-awesome-skills
Multi-Agent Brainstorming (Structured Design Review) Purpose Transform a single-agent design into a robust, review-validated design by simulating a formal peer-review process using multiple constrained agents. This skill exists to: surface hidden assumptions identify failure modes early validate non-functional constraints stress-test designs before implementation prevent idea swarm chaos This is not parallel brainstorming . It is sequential design review with enforced roles . Show more Installs ...
1.3K
8578 agents-harden aws/agent-toolkit-for-aws
harden Prepare your AgentCore agent for production — security, reliability, and performance. When to use You're about to take an agent to production You want a checklist of what to review before launch You want to restrict who can call your agent You want to scope down IAM permissions from the defaults You're hitting throttling or quota errors (loads references/limits.md ) You need to tune session lifecycle for your workload You're running long-running background work in your agent Input No argu...
1.3K
8579 prompt-engineer davila7/claude-code-templates
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...
1.3K
8580 platform-strategy-sms blacktwist/social-media-skills
When to Use User asks for platform-specific tactical guidance for LinkedIn, Twitter/X, Threads, or Bluesky User mentions "LinkedIn strategy," "Twitter strategy," "Threads strategy," or "Bluesky strategy" User says "algorithm," "what works on LinkedIn," or "cross-posting" User asks about "platform differences" or wants to adapt content across platforms User asks "which platform should I focus on" or wants a platform comparison User wants to understand how a specific platform's algorithm or cultur...
1.3K
8581 devops-deployment yonatangross/orchestkit
DevOps & Deployment Skill Comprehensive frameworks for CI/CD pipelines, containerization, deployment strategies, and infrastructure automation. Overview Setting up CI/CD pipelines Containerizing applications Deploying to Kubernetes or cloud platforms Implementing GitOps workflows Managing infrastructure as code Planning release strategies Pipeline Architecture ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ Code │──>│ Build │──>│ Test │──>│ Deploy ...
1.3K
8582 pdf k-dense-ai/scientific-agent-skills
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...
1.3K
8583 skill-creator langchain-ai/deepagents
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
1.3K
8584 ionic-design cap-go/capgo-skills
Ionic Framework Design Guide Build beautiful, native-looking mobile apps with Ionic Framework and Capacitor. When to Use This Skill User is using Ionic components User wants native-looking UI User asks about Ionic theming User needs mobile UI patterns User wants platform-specific styling What is Ionic Framework? Show more Installs 547 Repository cap-go/capgo-skills GitHub Stars 58 First Seen Feb 6, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.3K
8585 openseo-review-web-content every-app/open-seo
No SKILL.md available for this skill. View on GitHub Installs 913 Repository every-app/open-seo GitHub Stars 11.1K First Seen Jul 23, 2026
1.3K
8586 deslop every-app/open-seo
Remove AI code slop Check the diff against main and remove AI-generated slop introduced in the branch. Focus Areas Extra comments that are unnecessary or inconsistent with local style Defensive checks or try/catch blocks that are abnormal for trusted code paths Casts to any used only to bypass type issues Deeply nested code that should be simplified with early returns Other patterns inconsistent with the file and surrounding codebase Guardrails Keep behavior unchanged unless fixing a clear bug. ...
1.3K
8587 seedance-2.0-prompter pexoai/pexo-skills
Seedance 2.0 Prompt Designer Skill This skill transforms a user's scattered multimodal assets (images, videos, audio) and ambiguous creative intent into a structured, executable prompt for the Seedance 2.0 video generation model. It acts as an expert prompt engineer, ensuring the highest quality output from the underlying model. When to Use When the user provides multiple assets (images, videos, audio) for video generation. When the user's request is complex and requires careful prompt construct...
1.3K
8588 news-search brave/brave-search-skills
News Search Requires API Key : Get one at https://api.search.brave.com Plan : Included in the Search plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe Quick Start (cURL) Basic Search curl -s "https://api.search.brave.com/res/v1/news/search?q=space+exploration" \ -H "Accept: application/json" \ -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY} " Recent News (Past 24 Hours) curl -s "https://api.search.brave.com/res/v1/news/search" \ -H "Accept: application/json" \ -H "X-...
1.3K
8589 prisma-next prisma/prisma-next
Prisma Next — Router Edit your data contract. Prisma handles the rest. This skill exists to disambiguate vague Prisma Next prompts. When the user hasn't yet committed to a specific workflow (e.g. "help me with Prisma Next" , "explain how Prisma Next works" , "I'm new to PN, where do I start?" ), this skill fires and routes them to the right specific skill. When to Use The user has not yet stated a concrete task. The user types a meta-question about Prisma Next ( "what is Prisma Next?" , "how doe...
1.3K
8590 shopify-products jezweb/claude-skills
Shopify Products Create, update, and bulk-import Shopify products. Produces live products in the store via the GraphQL Admin API or CSV import. Prerequisites Admin API access token (use the shopify-setup skill if not configured) Store URL and API version from shopify.config.json or .dev.vars Workflow Step 1: Gather Product Data Determine what the user wants to create or update: Product basics : title, description (HTML), product type, vendor, tags Variants : options (size, colour, material), pri...
1.3K
8591 backward-traceability lingzhi227/agent-research-skills
Backward Traceability Make every number in the final PDF hyperlink back to the exact code line that produced it. Input $0 — Paper project directory containing code and LaTeX files References Traceability patterns and LaTeX commands: ~/.claude/skills/backward-traceability/references/traceability-patterns.md Scripts Scan hypertarget/hyperlink references python ~/.claude/skills/backward-traceability/scripts/ref_numeric_values.py \ --scan paper/main.tex --output report.json Show more
1.3K
8592 shared boshu2/agentops
Shared References This directory contains shared reference documents used by multiple skills: validation-contract.md - Verification requirements for accepting spawned work references/claude-code-latest-features.md - Claude Code feature contract (slash commands, agent isolation, hooks, settings) references/backend-claude-teams.md - Concrete examples for Claude native teams ( TeamCreate + SendMessage ) references/backend-codex-subagents.md - Concrete examples for Codex CLI and Codex sub-agents ref...
1.3K
8593 product-sense-interview-answer deanpeters/product-manager-skills
Purpose Help PM candidates and interview coaches structure product-sense answers that sound strong out loud, not just on paper. Use this when practicing prompts like "How would you improve X?", "Design a product for Y", or "What would you build next for Z?" This is not a memorize-and-recite script. It is a reasoning scaffold that prevents solution-jumping, forces real prioritization, and leaves the interviewer with a clean story they can follow. Key Concepts What Product Sense Interviews Actuall...
1.3K
8594 exploratory-data-analysis k-dense-ai/scientific-agent-skills
Exploratory Data Analysis Overview Perform comprehensive exploratory data analysis (EDA) on scientific data files across multiple domains. This skill provides automated file type detection, format-specific analysis, data quality assessment, and generates detailed markdown reports suitable for documentation and downstream analysis planning. Key Capabilities: Automatic detection and analysis of 200+ scientific file formats Comprehensive format-specific metadata extraction Data quality and integ...
1.3K
8595 handle-complaint anthropics/knowledge-work-plugins
Run the complaint resolution workflow by chaining two skills. Read the complaint, gather context, draft a response, and suggest a fix so it doesn't happen again. Parse arguments: EMAIL_OR_TICKET_ID (optional) — Gmail thread ID, HubSpot ticket ID, or "latest" to pull the most recent unresolved complaint. If omitted, ask the owner to paste the complaint text. Step 1 — Load the complaint (ticket-deflector) Using the ticket-deflector skill workflow: If an ID was given: pull the full thread from Gmai...
1.3K
8596 session-analyzer ai-native-camp/camp-2
Session Analyzer Skill Post-hoc analysis tool for validating Claude Code session behavior against SKILL.md specifications. Purpose Analyze completed sessions to verify: Expected vs Actual Behavior - Did the skill follow SKILL.md workflow? Component Invocations - Were SubAgents, Hooks, and Tools called correctly? Artifacts - Were expected files created/deleted? Bug Detection - Any unexpected errors or deviations? Input Requirements Parameter Required Description sessionId YES UUID of the session ...
1.3K
8597 team-assemble ai-native-camp/camp-2
Team Assemble 작업을 분석하여 전문가 팀을 동적으로 구성하고 TeamCreate 기반으로 즉시 실행하는 스킬. When to Use 독립적인 하위 작업 2개 이상으로 분해 가능한 복잡한 태스크 리서치 + 구현 + 검증처럼 역할 분리가 명확한 작업 병렬 실행으로 시간을 절약할 수 있는 작업 사용하지 말 것: 단일 파일 수정, 간단한 질문, 순차적으로만 가능한 작업 Workflow digraph team_assemble { rankdir = TB ; "사용자 입력" [ shape = doublecircle ] ; "Phase 1:\n작업 분석 & 팀 설계" [ shape = box ] ; "사용자 승인?" [ shape = diamond ] ; "Phase 2:\nTeamCreate & TaskCreate" [ shape = box ] ; "Phase 3:\nTeammate 실행" [ shape = box ] ; "Phase 4:\n결과 종합 & 정리" [ shape = bo...
1.3K
8598 marketing-strategy-pmm davila7/claude-code-templates
Marketing Strategy & Product Marketing Expert Product Marketing playbook for Series A+ startups expanding internationally with hybrid PLG/Sales-Led motion. Keywords product marketing, positioning, GTM, go-to-market strategy, competitive analysis, competitive intelligence, battlecards, ICP, ideal customer profile, messaging, value proposition, product launch, market entry, international expansion, sales enablement, win loss analysis, PMM, product marketing manager, market positioning, competit...
1.3K
8599 pudl catalyst-cooperative/agent-skills
PUDL Data and Metadata Guide Use this skill for data-user workflows: reading PUDL outputs, understanding table and field semantics, tracing source context, and interpreting methodology. Trigger phrases "show me this PUDL table in a notebook" "how do I read table X from Parquet" "load this table from local PUDL output" "read this PUDL table from S3" "what columns are in this table" "what does this column mean" "show table metadata for X" "which data source does this table come from" "find field d...
1.3K
8600 remotion davila7/claude-code-templates
Stitch to Remotion Walkthrough Videos You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations. Overview This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects ...
1.3K