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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
8701 zotero-paper-reader fuzhiyu/researchprojecttemplate
Read and analyze academic papers directly from the Zotero library. This skill handles the complete workflow from searching Zotero to converting PDFs to readable markdown format. When to Use Use this skill when the user requests to: - "Read this paper from Zotero" - "Find and read [paper title]" - "Access [author name] paper" - "Get the paper about [topic]" - "Convert [paper] from Zotero to markdown" Workflow Step 1: Search Zotero Library Use the Zotero MCP tools to search for the pa...
375
8702 android-development mindrally/skills
Android Development Build Android applications following Google's official architecture guidance, as demonstrated in the NowInAndroid reference app. Quick Reference Task Reference File Project structure & modules modularization.md Architecture layers (UI, Domain, Data) architecture.md Jetpack Compose patterns compose-patterns.md Gradle & build configuration gradle-setup.md Testing approach testing.md Workflow Decision Tree Creating a new project? → Read modularization.md for project structure...
375
8703 peft-fine-tuning davila7/claude-code-templates
PEFT (Parameter-Efficient Fine-Tuning) Fine-tune LLMs by training <1% of parameters using LoRA, QLoRA, and 25+ adapter methods. When to use PEFT Use PEFT/LoRA when: Fine-tuning 7B-70B models on consumer GPUs (RTX 4090, A100) Need to train <1% parameters (6MB adapters vs 14GB full model) Want fast iteration with multiple task-specific adapters Deploying multiple fine-tuned variants from one base model Use QLoRA (PEFT + quantization) when: Fine-tuning 70B models on single 24GB GPU Memory is the pr...
375
8704 best-practices davila7/claude-code-templates
Best practices Modern web development standards based on Lighthouse best practices audits. Covers security, browser compatibility, and code quality patterns. Security HTTPS everywhere Enforce HTTPS: <!-- ❌ Mixed content --> <img src="http://example.com/image.jpg"> <script src="http://cdn.example.com/script.js"></script> <!-- ✅ HTTPS only --> <img src="https://example.com/image.jpg"> <script src="https://cdn.example.com/script.js"></script> <!-- ✅ Protocol-relative (will use page's protocol...
375
8705 seo-meta-optimizer sickn33/antigravity-awesome-skills
Use this skill when Working on seo meta optimizer tasks or workflows Needing guidance, best practices, or checklists for seo meta optimizer Do not use this skill when The task is unrelated to seo meta optimizer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md...
375
8706 package-management wshaddix/dotnet-skills
NuGet Package Management When to Use This Skill Use this skill when: Adding, removing, or updating NuGet packages Setting up Central Package Management (CPM) for a solution Managing package versions across multiple projects Troubleshooting package conflicts or restore issues Golden Rule: Never Edit XML Directly Always use dotnet CLI commands to manage packages. Never manually edit .csproj or Directory.Packages.props files. DO: Use CLI commands dotnet add package Newtonsoft.Json dotnet remove pa...
375
8707 web-scraper guia-matthieu/clawfu-skills
Web Scraper Extract structured data from websites using BeautifulSoup and requests - turn any webpage into usable data. When to Use This Skill Competitor research - Scrape pricing, features, positioning Lead generation - Extract contact info from directories Content audit - Pull headings, links, meta data Price monitoring - Track competitor pricing changes Data collection - Gather research data from multiple sources What Claude Does vs What You Decide Claude Does You Decide Structures analysis f...
374
8708 database-migration sickn33/antigravity-awesome-skills
Database Migration Master database schema and data migrations across ORMs (Sequelize, TypeORM, Prisma), including rollback strategies and zero-downtime deployments. When to Use This Skill Migrating between different ORMs Performing schema transformations Moving data between databases Implementing rollback procedures Zero-downtime deployments Database version upgrades Data model refactoring ORM Migrations Sequelize Migrations // migrations/20231201-create-users.js module . exports = { up : async ...
374
8709 wowerpoint thedotmack/claude-mem
Wowerpoint One doc in, one PDF out. Slide-deck only — videos and podcasts from the same engine are noticeably worse and out of scope; refer the user to the notebooklm CLI directly if they want those. Triggers "Wowerpoint " "Make a slide deck about " "Turn this report into slides" "Kawaii-deck this" Setup (one-time per machine) If notebooklm auth check returns 0 and command -v jq resolves, skip. uv tool install --with playwright --force notebooklm-py $( uv tool dir ) /notebooklm-py/bin/playwright...
374
8710 database-schema-documentation aj-geddes/useful-ai-prompts
Database Schema Documentation Overview Create comprehensive database schema documentation including entity relationship diagrams (ERD), table definitions, indexes, constraints, and data dictionaries. When to Use Database schema documentation ERD (Entity Relationship Diagrams) Data dictionary creation Table relationship documentation Index and constraint documentation Migration documentation Database design specs Schema Documentation Template Database Schema Documentation Database: PostgreSQL...
374
8711 payment-gateway-integration aj-geddes/useful-ai-prompts
Payment Gateway Integration Overview Build secure payment processing systems with major payment providers (Stripe, PayPal, Square), handling transactions, subscriptions, webhooks, PCI compliance, and error scenarios across different backend frameworks. When to Use Processing customer payments Implementing subscription billing Building e-commerce platforms Handling refunds and disputes Managing recurring charges Integrating payment webhooks Instructions 1. Stripe Integration with Python/Flask ...
374
8712 serialization wshaddix/dotnet-skills
Serialization in .NET When to Use This Skill Use this skill when: Choosing a serialization format for APIs, messaging, or persistence Migrating from Newtonsoft.Json to System.Text.Json Implementing AOT-compatible serialization Designing wire formats for distributed systems Optimizing serialization performance Serialization Format Comparison Format Library AOT-Safe Human-Readable Relative Size Relative Speed Best For JSON System.Text.Json (source gen) Yes Yes Largest Good APIs, config, web client...
374
8713 web-browser mitsuhiko/agent-stuff
Web Browser Skill Minimal CDP tools for collaborative site exploration. Start Chrome ./scripts/start.js Fresh profile ./scripts/start.js --profile Copy your profile (cookies, logins) Start Chrome on :9222 with remote debugging. Navigate ./scripts/nav.js https://example.com ./scripts/nav.js https://example.com --new Navigate current tab or open new tab. Evaluate JavaScript ./scripts/eval.js 'document.title' ./scripts/eval.js 'document.querySelectorAll("a").length' ./scri...
374
8714 electron-development mindrally/skills
Electron Development Guidelines You are an expert in Electron development for building cross-platform desktop applications. Core Principles Follow security best practices for Electron apps Separate main and renderer process concerns Use IPC for process communication Implement proper window management Project Structure src/ ├── main/ Main process code │ ├── index.ts Entry point │ ├── ipc/ IPC handlers │ └── utils/ Utilities ├── renderer/ Ren...
374
8715 workflow-automation davila7/claude-code-templates
Workflow Automation When to use this skill Repetitive tasks : running the same commands every time Complex builds : multi-step build processes Team onboarding : a consistent development environment Instructions Step 1: npm scripts package.json : { "scripts" : { "dev" : "nodemon src/index.ts" , "build" : "tsc && vite build" , "test" : "jest --coverage" , "test:watch" : "jest --watch" , "lint" : "eslint src --ext .ts,.tsx" , "lint:fix" : "eslint src --ext .ts,.tsx --fix" , "format" : "prettier --w...
374
8716 pricing-strategy davila7/claude-code-templates
Pricing Strategy You are an expert in SaaS pricing and monetization strategy. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this con...
374
8717 prompt-caching davila7/claude-code-templates
Prompt Caching You're a caching specialist who has reduced LLM costs by 90% through strategic caching. You've implemented systems that cache at multiple levels: prompt prefixes, full responses, and semantic similarity matches. You understand that LLM caching is different from traditional caching—prompts have prefixes that can be cached, responses vary with temperature, and semantic similarity often matters more than exact match. Your core principles: Cache at the right level—prefix, response...
374
8718 unity-developer sickn33/antigravity-awesome-skills
Use this skill when Working on unity developer tasks or workflows Needing guidance, best practices, or checklists for unity developer Do not use this skill when The task is unrelated to unity developer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md. You ar...
374
8719 typescript-pro sickn33/antigravity-awesome-skills
TypeScript Pro Senior TypeScript specialist with deep expertise in advanced type systems, full-stack type safety, and production-grade TypeScript development. Role Definition You are a senior TypeScript developer with 10+ years of experience. You specialize in TypeScript 5.0+ advanced type system features, full-stack type safety, and build optimization. You create type-safe APIs with zero runtime type errors. When to Use This Skill Building type-safe full-stack applications Implementing adva...
374
8720 tailwind-4 prowler-cloud/prowler
Styling Decision Tree Tailwind class exists? → className="..." Dynamic value? → style={{ width: `${x}%` }} Conditional styles? → cn("base", condition && "variant") Static only? → className="..." (no cn() needed) Library can't use class?→ style prop with var() constants Critical Rules Never Use var() in className // ❌ NEVER: var() in className <div className="bg-[var(--color-primary)]" /> <div className="text-[var(--text-color)]" /> // ✅ ALWAYS: Use Tailwind semantic cl...
374
8721 generate-translations payloadcms/payload
Translation Generation Guide Payload has two separate translation systems: Core Translations - for core Payload packages (packages/ui, packages/payload, packages/next) Plugin Translations - for plugins (packages/plugin-*) Table of Contents 1. Core Translations 2. Plugin Translations Scaffolding New Plugin Translations Important Notes 1. Core Translations When to use: Adding translations to core Payload packages (packages/ui, packages/payload, packages/next) Steps: Add the English translatio...
374
8722 scientific-critical-thinking k-dense-ai/scientific-agent-skills
Scientific Critical Thinking Overview Critical thinking is a systematic process for evaluating scientific rigor. Assess methodology, experimental design, statistical validity, biases, confounding, and evidence quality using GRADE and Cochrane ROB frameworks. Apply this skill for critical analysis of scientific claims. When to Use This Skill This skill should be used when: Evaluating research methodology and experimental design Assessing statistical validity and evidence quality Identifying b...
373
8723 ucp shopify/shopify-ai-toolkit
UCP Skill — Universal Commerce Protocol Implementation Core Principles Edge runtime is NOT USED — Only Node.js (default) or Bun (opt-in) runtimes Interactive error handling — When ambiguous, ask the user how to proceed Config-driven — All decisions persist in ucp.config.json Spec-grounded — All implementations reference the canonical UCP specification Next.js conventions — Follow App Router patterns for code organization Deep analysis — Use AST parsing and data flow tracing for gap detection Spe...
373
8724 security-audit-logging aj-geddes/useful-ai-prompts
Security Audit Logging Overview Implement comprehensive audit logging for security events, user actions, and system changes with structured logging, retention policies, and SIEM integration. When to Use Compliance requirements (SOC 2, HIPAA, PCI-DSS) Security monitoring Forensic investigations User activity tracking System change auditing Breach detection Implementation Examples 1. Node.js Audit Logger // audit-logger.js const winston = require('winston'); const { ElasticsearchTransport } = re...
373
8725 getnote-note iswalle/getnote-cli
getnote-note Skill Save, list, view, update, and delete notes in Get笔记. Prerequisites getnote CLI installed and authenticated ( getnote auth status should show "Authenticated") Commands Save a note getnote save <url|text|image_path> [--title <title>] [--tag <tag>]... Show more
373
8726 prompt-videos replicate/skills
Prompting video models on Replicate Distilled from Replicate's blog posts on prompting video models (2025-2026). Techniques are model-agnostic and focus on transferable principles. Choose a model with the API, not from memory This skill describes general prompting techniques. To choose a model, use the find-models skill and query the Replicate API. The video model landscape changes weekly. Don't assume specific models exist or are still state-of-the-art based on names you've seen before. Always ...
373
8727 rag-engineer davila7/claude-code-templates
RAG Engineer Role: RAG Systems Architect I bridge the gap between raw documents and LLM understanding. I know that retrieval quality determines generation quality - garbage in, garbage out. I obsess over chunking boundaries, embedding dimensions, and similarity metrics because they make the difference between helpful and hallucinating. Capabilities Vector embeddings and similarity search Document chunking and preprocessing Retrieval pipeline design Semantic search implementation Context windo...
373
8728 notion-research-documentation davila7/claude-code-templates
Research & Documentation Pull relevant Notion pages, synthesize findings, and publish clear briefs or reports (with citations and links to sources). Quick start Find sources with Notion:notion-search using targeted queries; confirm scope with the user. Fetch pages via Notion:notion-fetch ; note key sections and capture citations ( reference/citations.md ). Choose output format (brief, summary, comparison, comprehensive report) using reference/format-selection-guide.md . Draft in Notion with Noti...
373
8729 database-migrations-sql-migrations sickn33/antigravity-awesome-skills
SQL Database Migration Strategy and Implementation Overview You are a SQL database migration expert specializing in zero-downtime deployments, data integrity, and production-ready migration strategies for PostgreSQL, MySQL, and SQL Server. Create comprehensive migration scripts with rollback procedures, validation checks, and performance optimization. When to Use This Skill Use when working on SQL database migration strategy and implementation tasks. Use when needing guidance, best practices, or...
373
8730 microsoft-extensions-dependency-injection wshaddix/dotnet-skills
Dependency Injection Patterns When to Use This Skill Use this skill when: Organizing service registrations in ASP.NET Core applications Avoiding massive Program.cs/Startup.cs files with hundreds of registrations Making service configuration reusable between production and tests Designing libraries that integrate with Microsoft.Extensions.DependencyInjection The Problem Without organization, Program.cs becomes unmanageable: // BAD: 200+ lines of unorganized registrations var builder = WebApplicat...
373
8731 instagram vm0-ai/vm0-skills
Instagram API (Graph API) Use the Instagram Graph API by directly executing curl commands to read and publish Instagram content . Official docs: https://developers.facebook.com/docs/instagram-api When to Use Use this skill when you need to: Fetch recent media (photos / videos / Reels) from an account Get detailed information about a specific media item (caption, type, link, time, etc.) Search recent media by hashtag Publish image posts via API (with caption) Prerequisites You must have an Instag...
373
8732 chrome bridge automation web-infra-dev/midscene-skills
Chrome Bridge Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time for...
372
8733 github-actions bobmatnyc/claude-mpm-skills
GitHub Actions Build Artifacts Overview Reusable GitHub Actions patterns to build React Native apps for iOS simulators and Android emulators in the cloud, then publish artifacts retrievable via gh CLI or GitHub API. When to Apply Use this skill when: Creating CI workflows that build React Native simulator/emulator artifacts. Uploading iOS simulator and Android emulator installables from PRs or manual dispatch runs. Replacing local-only mobile builds with downloadable CI artifacts. Needing stable...
372
8734 ai-multimodal mrgoonie/claudekit-skills
AI Multimodal Processing Skill Process audio, images, videos, documents, and generate images using Google Gemini's multimodal API. Unified interface for all multimedia content understanding and generation. Core Capabilities Audio Processing Transcription with timestamps (up to 9.5 hours) Audio summarization and analysis Speech understanding and speaker identification Music and environmental sound analysis Text-to-speech generation with controllable voice Image Understanding Image captioning an...
372
8735 r8-analyzer android/skills
Core workflow [ ] Step 1: Create a file called R8_Configuration_Analysis.md, or reuse if one exists already, to store the output [ ] Step 2: Look at the configuration of R8 by looking at build.gradle, build.gradle.kts, gradle.properties in the codebase using references/CONFIGURATION.md as the reference. Inform the developer and add the analysis to the report file [ ] Step 3: If the AGP version is less than 9, suggest moving to AGP 9.0 version as AGP 9.0 includes optimizations . [ ] Step 4: Look ...
372
8736 carousel-writer-sms blacktwist/social-media-skills
Carousel Writer When to Use User asks to write a carousel or create slide-by-slide content User mentions "carousel," "slides," or "LinkedIn carousel" User mentions "Instagram carousel," "IG carousel," or "photo carousel" User mentions "TikTok photo carousel," "Idea Pin," or "Pinterest Idea Pin" User says "swipe post," "slide deck," or "visual content" User wants to turn an idea into a multi-slide format User shares a topic and asks for a swipeable breakdown User mentions "carousel format" or "ca...
372
8737 qq-email shadowcz007/skills
何时使用 用户要使用 QQ 邮箱 发邮件 、 收邮件 、 查邮件 、 代发邮件 或 配置 QQ 邮箱 时使用本 skill。 QQ 邮箱收发 面向 QQ 邮箱:通过 IMAP 收取邮件、SMTP 发送邮件。账号与授权码 仅从环境变量读取 ,不在代码或配置中硬编码。 凭证(环境变量) 变量 说明 QQ_EMAIL_ACCOUNT QQ 邮箱账号(完整地址,如 xxx@qq.com ) QQ_EMAIL_AUTH_CODE QQ 邮箱授权码(在 QQ 邮箱「设置 → 账户」中开启 IMAP/SMTP 后生成, 非 QQ 登录密码 ;勿提交到仓库) 脚本会校验,缺失时报错并退出;请勿在终端用 echo 等方式检查,以免泄露授权码。 QQ 邮箱服务器 IMAP : imap.qq.com ,端口 993(SSL) SMTP : smtp.qq.com ,端口 465(SSL) 脚本 脚本 作用 scripts/send.js 从环境变量读凭证,用 nodemailer 连接 QQ 邮箱 SMTP 发信;支持收件人、主题、正文(CLI 参数)。 scripts/receive.js 从环境变量读...
372
8738 ce-proof everyinc/compound-engineering-plugin
Proof - Collaborative Markdown Editor Proof is a collaborative document editor for humans and agents. It supports two modes: Web API - Create and edit shared documents via HTTP (no install needed) Local Bridge - Drive the macOS Proof app via localhost:9847 Identity and Attribution Every write to a Proof doc must be attributed. Two fields carry the agent's identity: Machine ID ( by on every op, X-Agent-Id header): ai:compound-engineering — stable, lowercase-hyphenated, machine-parseable. Appears ...
372
8739 react-server-components patternsdev/skills
React Server Components Table of Contents When to Use When NOT to Use Instructions Details Source React's Server Components enable modern UX with a server-driven mental model . This is quite different from Server-side Rendering (SSR) of components and results in significantly smaller client-side JavaScript bundles. When to Use Use this when you want to reduce client-side JavaScript by running data-fetching and rendering on the server This is helpful for improving performance with zero-JS-cost se...
372
8740 prompt-library davila7/claude-code-templates
📝 Prompt Library A comprehensive collection of battle-tested prompts inspired by awesome-chatgpt-prompts and community best practices. When to Use This Skill Use this skill when the user: Needs ready-to-use prompt templates Wants role-based prompts (act as X) Asks for prompt examples or inspiration Needs task-specific prompt patterns Wants to improve their prompting Prompt Categories 🎭 Role-Based Prompts Expert Developer Act as an expert software developer with 15+ years of experience. You s...
372
8741 ce-clean-gone-branches everyinc/compound-engineering-plugin
Clean Gone Branches Delete local branches whose remote tracking branch has been deleted, including any associated worktrees. Workflow Step 1: Discover gone branches Run the discovery script to fetch the latest remote state and identify gone branches: bash scripts/clean-gone scripts/clean-gone The script runs git fetch --prune first, then parses git branch -vv for branches marked : gone] . If the script outputs __NONE__ , report that no stale branches were found and stop. Show more
372
8742 ruby-rails mindrally/skills
Ruby on Rails You are an expert in Ruby and Ruby on Rails development with deep knowledge of web application patterns and Rails conventions. Core Principles Write concise, idiomatic Ruby code with accurate examples Adhere to Rails conventions (Convention over Configuration) Follow the Ruby Style Guide for formatting consistency Leverage Ruby 3.x features like pattern matching and endless methods Naming Conventions Use snake_case for files, methods, and variables Use CamelCase for classes and m...
372
8743 github-workflow mindrally/skills
GitHub Workflow Best Practices You are an expert in GitHub workflows, including pull requests, code reviews, GitHub Actions, issue management, and repository best practices. Core Principles Use pull requests for all code changes to enable review and discussion Automate workflows with GitHub Actions for CI/CD Maintain clear issue tracking and project management Follow security best practices for repository access and secrets Document repositories thoroughly with README and contributing guidelin...
372
8744 perplexity davila7/claude-code-templates
Perplexity Tools Use ONLY when user says "search", "find", "look up", "ask", "research", or "what's the latest" for generic queries. NOT for library/framework docs (use Context7), gt CLI (use Graphite MCP), or workspace questions (use Nx MCP). Quick Reference Which Perplexity tool? Need search results/URLs? → Perplexity Search Need conversational answer? → Perplexity Ask Need deep research? → Researcher agent ( /research <topic> ) NOT Perplexity - use these instead: Library/framework docs → Cont...
372
8745 whitepaper adobe/skills
Professional PDF Generator This skill converts Markdown files into professionally typeset PDF whitepapers using pandoc and typst. Assets The skill includes (located in the plugin's root directory): Typst template : templates/whitepaper.typ Source Sans 3 fonts : fonts/ — variable fonts supporting all weights (open source from Google Fonts) Source Code Pro fonts : fonts/ (Regular, Bold, Italic, Bold Italic) — used for code blocks and inline code Plugin Root: The plugin root is determined dynamical...
371
8746 cron-helper tclawde/openclaw-skills-user
Cron Helper Skill Purpose: Guides me to use openclaw cron CLI for time-based tasks and send logs on create/remove. When to use: User asks for periodic/reminder tasks User mentions "remind me every X" User needs scheduled background checks User wants agent to perform a task at a specific time Core Principle Always prefer cron over manual timing. Reason: I lack an internal clock. Manual "track time yourself" fails because I can get absorbed in reading/thinking and lose track of time. Cron is an ex...
371
8747 hairy hairyf/skills
This skill covers Hairyf's preferred tooling, configurations, and best practices for web development. This skill is opinionated. Quick Summary | Package Manager | pnpm | Language | TypeScript (strict mode) | Module System | ESM (`"type": "module"`) | Linting & Formatting | @antfu/eslint-config (no Prettier) | Testing | Vitest | Git Hooks | simple-git-hooks + lint-staged | Documentation | VitePress (in `docs/`) Core Stack Package Manager (pnpm) Use pnpm as the package ...
371
8748 pyre-code-ml-practice aradotso/trending-skills
Pyre Code ML Practice Platform Skill by ara.so — Daily 2026 Skills collection. Pyre Code is a self-hosted ML coding practice platform with 68 problems ranging from ReLU to flow matching. Users implement internals of modern AI systems (Transformers, vLLM, TRL, diffusion models) in a browser editor with instant pass/fail feedback, no GPU required. Installation Option A — One-liner (recommended) git clone https://github.com/whwangovo/pyre-code.git cd pyre-code ./setup.sh npm run dev setup.sh create...
371
8749 describe-pr parcadei/continuous-claude-v3
Generate PR Description You are tasked with generating a comprehensive pull request description following the repository's standard template. Steps to follow: Read the PR description template: First, check if thoughts/shared/pr_description.md exists If it doesn't exist, inform the user they need to create a PR description template at thoughts/shared/pr_description.md Read the template carefully to understand all sections and requirements Identify the PR to describe: Check if the current br...
371
8750 research-agent parcadei/continuous-claude-v3
Note: The current year is 2025. When researching best practices, use 2024-2025 as your reference timeframe. Research Agent You are a research agent spawned to gather external documentation, best practices, and library information. You use MCP tools (Nia, Perplexity, Firecrawl) and write a handoff with your findings. What You Receive When spawned, you will receive: Research question - What you need to find out Context - Why this research is needed (e.g., planning a feature) Handoff directory...
371