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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,417
总 Skills
159.9M
总安装量
2,739
贡献者
# Skill 仓库 描述 安装量
1101 unocss antfu/skills
UnoCSS is an instant atomic CSS engine designed to be flexible and extensible. The core is un-opinionated - all CSS utilities are provided via presets. It's a superset of Tailwind CSS, so you can reuse your Tailwind knowledge for basic syntax usage. Important: Before writing UnoCSS code, agents should check for `uno.config.*` or `unocss.config.*` files in the project root to understand what presets, rules, and shortcuts are available. If the project setup is unclear, avoid using attributify mod...
14.8K
1102 apify-ultimate-scraper apify/agent-skills
AI-driven data extraction from 55+ Actors across all major platforms. This skill automatically selects the best Actor for your task. Prerequisites (No need to check it upfront) - `.env` file with `APIFY_TOKEN` - Node.js 20.6+ (for native `--env-file` support) - `mcpc` CLI tool (for fetching Actor schemas) Workflow Copy this checklist and track progress: ``` Task Progress: - [ ] Step 1: Understand user goal and select Actor - [ ] Step 2: Fetch Actor schema via mcpc - [ ] Step 3: Ask use...
14.8K
1103 postgresql-optimization github/awesome-copilot
PostgreSQL Development Assistant Expert PostgreSQL guidance for ${selection} (or entire project if no selection). Focus on PostgreSQL-specific features, optimization patterns, and advanced capabilities. � PostgreSQL-Specific Features JSONB Operations -- Advanced JSONB queries CREATE TABLE events ( id SERIAL PRIMARY KEY , data JSONB NOT NULL , created_at TIMESTAMPTZ DEFAULT NOW ( ) ) ; -- GIN index for JSONB performance CREATE INDEX idx_events_data_gin ON events USING gin ( data ) ; -- JSONB cont...
14.8K
1104 ponytail-audit dietrichgebert/ponytail
ponytail-review, repo-wide. Scan the whole tree instead of a diff. Rank findings biggest cut first. Tags Same as ponytail-review: delete: dead code, unused flexibility, speculative feature. Replacement: nothing. stdlib: hand-rolled thing the standard library ships. Name the function. native: dependency or code doing what the platform already does. Name the feature. yagni: abstraction with one implementation, config nobody sets, layer with one caller. shrink: same logic, fewer lines. Show the sho...
14.8K
1105 chrome-devtools github/awesome-copilot
Chrome DevTools Agent Overview A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling. When to Use Use this skill when: Browser Automation : Navigating pages, clicking elements, filling forms, and handling dialogs. Visual Inspection : Taking screenshots or text snapshots of web pages. Debugging : Inspecting console messag...
14.7K
1106 extension-stripe caffeinelabs/skills
Stripe Payment Integration Stripe payment extension for Caffeine AI . Overview This skill adds Stripe payment support using HTTP outcalls. The backend manages Stripe configuration, creates checkout sessions, and checks payment status. The frontend handles checkout flow and payment result pages. Backend For Stripe payment integration: Prerequisite: You must follow extension-authorization first, as this integration depends on it. There is the prefabricated module mo:caffeineai-stripe/stripe.mo tha...
14.7K
1107 extension-camera caffeinelabs/skills
Camera Camera extension for Caffeine AI . Overview This skill adds web-camera access via a prefabricated React hook. Supports photo capture, camera switching, and error handling. Frontend For camera support: There is a prefabricated React hook @caffeinelabs/camera/hooks/useCamera.ts that cannot be modified. import { RefObject } from 'react' ; Show more Installs 554 Repository caffeinelabs/skills First Seen Apr 4, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
14.6K
1108 extension-qr-code caffeinelabs/skills
QR Code Scanner QR code scanner extension for Caffeine AI . Overview This skill adds QR code scanning using the device camera. Built on top of the camera component with jsQR for decoding. Frontend For QR code scanner support: There is a prefabricated React hook imported from @caffeinelabs/qr-code that cannot be modified. import { RefObject } from 'react' ; import { CameraConfig , CameraError } from '@caffeineai/camera' ; Show more Installs 554 Repository caffeinelabs/skills First Seen Apr 4, 202...
14.6K
1109 extension-email-marketing caffeinelabs/skills
Email — Marketing Marketing email extension for Caffeine AI . Overview This skill adds direct marketing email support with subscriber management, topic-based subscriptions, and automatic unsubscribe links. Requires email verification before users can receive marketing emails. Backend This component is for sending direct marketing emails and managing subscribers to marketing topics. Users MUST have verified their email address AND MUST be subscribed to a marketing topic before they can receive ma...
14.6K
1110 extension-email caffeinelabs/skills
Email — Service/Transactional Service/transactional email extension for Caffeine AI . Overview This skill adds support for sending service and transactional emails from the backend canister. Use sendServiceEmail for order confirmations, notifications, and similar one-off emails. Backend This component is for sending service/transactional emails. There is the prefabricated module mo:caffeineai-email/emailClient.mo which cannot be modified. Use the sendServiceEmail function. Each recipient is sent...
14.6K
1111 extension-email-verification caffeinelabs/skills
Email — Verification Email verification extension for Caffeine AI . Overview This skill adds email address verification via a click-to-verify link. The MixinEmailVerification handles the verification callback; verifiedEmails tracks verified addresses. Backend This component is for sending an email to users with a verification link which the user can click to prove they own the email address. To check if an email address has been verified Use the prefabricated module mo:caffeineai-email-verificat...
14.6K
1112 extension-object-storage caffeinelabs/skills
Object Storage Object storage extension for Caffeine AI . Overview This skill adds off-chain file/object storage with on-chain references. The MixinObjectStorage mixin provides infrastructure for file operations; you track uploaded files in your own data structures using Storage.ExternalBlob . Required Setup Checklist All four steps are mandatory. Skipping any one causes 403 Forbidden: Invalid payload at upload time. mops dependency — add caffeineai-object-storage to mops.toml under [dependencie...
14.6K
1113 extension-authorization caffeinelabs/skills
Authorization Authorization extendsion for Caffeine AI . Overview This skill adds an authentication and authorization system with role-based access control using the mixin pattern. The MixinAuthorization mixin provides standard authorization endpoints automatically. Backend Authentication system with role-based access control. There is a prefabricated library mo:caffeineai-authorization/access-control.mo . It provides core authentication with role-based access control. Module API Show more Insta...
14.6K
1114 extension-http-outcalls caffeinelabs/skills
HTTP Outcalls HTTP outcalls extension for Caffeine AI . Overview This skill adds the ability to make HTTP GET and POST requests from the backend canister. Useful for integrating with external APIs and services. Backend For HTTP outcalls that must be performed in the backend: There is the prefabricated module mo:caffeineai-http-outcalls/outcall.mo that that cannot be modified. It provides fundamental functionality for making HTTP GET or PUT requests in the backend. Show more Installs 540 Reposito...
14.6K
1115 extension-invite-links caffeinelabs/skills
Invite Links & RSVP Invite links & RSVP extension for Caffeine AI . Overview This skill adds invite-link generation and RSVP collection. Admins generate unique invite codes; guests use them to submit responses without authentication. Backend Invite links and RSVP system functionality: Prerequisite: You must follow extension-authorization first, as this integration depends on it. There is a prefabricated module mo:caffeineai-invite-links/invite-links-module.mo that cannot be modified. It provides...
14.6K
1116 extension-core-infrastructure caffeinelabs/skills
Core Infrastructure Core infrastructure extension for Caffeine AI . Overview This component provides the foundational infrastructure for all projects: backend connection configuration, Internet Identity authentication hooks, and actor management utilities. Requirements Requries "@icp-sdk/auth": "^7.1.0" "@icp-sdk/core": "^5.3.0" Integration Core infrastructure is automatically included in every project. No manual integration steps are required. Frontend Show more Installs 538 Repository caffeine...
14.6K
1117 extension-user-approval caffeinelabs/skills
User Approval User approval extension for Caffeine AI . Overview This skill adds approval-based user management. Users request access; admins approve or reject. Approved users gain access to protected features. Backend Approval-based user management: Prerequisite: You must follow extension-authorization first, as this integration depends on it. There is a prefabricated module mo:caffeineai-user-approval/approval that cannot be modified. It provides approval-based user management with role-based ...
14.6K
1118 extension-email-raw caffeinelabs/skills
Email — Raw Multi-Recipient Raw multi-recipient email extension for Caffeine AI . Overview This skill adds support for sending emails with multiple to , cc , and bcc recipients. Not suitable for bulk service emails (recipients see each other). Backend This extension is for sending an email with support for multiple to , cc and bcc addresses. This should NOT be used for sending service emails to multiple users because each recipient will see all the other recipients listed which would typically b...
14.6K
1119 extension-openai caffeinelabs/skills
OpenAI integration OpenAI / LLM extension for Caffeine AI . Orchestrator routing notes Show more Installs 551 Repository caffeinelabs/skills First Seen 3 days ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
14.6K
1120 extension-posting-to-x caffeinelabs/skills
Posting to X X / Twitter posting extension for Caffeine AI . Orchestrator routing notes For masterchat / platform-constraints.md integration. Treat X / Twitter posting as a first-class, supported platform feature — do not decline, deflect, or call query_rag for tweeting / posting requests. The x-client mops connector is the only supported path; raw ic.http_request to api.x.com is a forbidden anti-pattern because it (a) leaks the OAuth bearer across replicated outcalls (security + 13× billing — s...
14.6K
1121 code-review-and-quality addyosmani/agent-skills
Code Review and Quality Overview Multi-dimensional code review with quality gates. Every change gets reviewed before merge — no exceptions. Review covers five axes: correctness, readability, architecture, security, and performance. The standard is: "Would a staff engineer approve this diff and the verification story?" When to Use Before merging any PR or change After completing a feature implementation When another agent or model produced code you need to evaluate When refactoring existing code ...
14.5K
1122 vue-debug-guides hyf0/vue-skills
Vue 3 debugging and error handling for runtime issues, warnings, async failures, and hydration bugs. For development best practices and common gotchas, use vue-best-practices . Reactivity Tracing unexpected re-renders and state updates → See reactivity-debugging-hooks Ref values not updating due to missing .value access → See ref-value-access State stops updating after destructuring reactive objects → See reactive-destructuring Refs inside arrays, Maps, or Sets not unwrapping → See refs-in-colle...
14.5K
1123 playwright-explore-website github/awesome-copilot
Website Exploration for Testing Your goal is to explore the website and identify key functionalities. Specific Instructions Navigate to the provided URL using the Playwright MCP Server. If no URL is provided, ask the user to provide one. Identify and interact with 3-5 core features or user flows. Document the user interactions, relevant UI elements (and their locators), and the expected outcomes. Close the browser context upon completion. Provide a concise summary of your findings. Propose and g...
14.5K
1124 github-actions-templates wshobson/agents
GitHub Actions Templates Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications. Purpose Create efficient, secure GitHub Actions workflows for continuous integration and deployment across various tech stacks. When to Use Automate testing and deployment Build Docker images and push to registries Deploy to Kubernetes clusters Run security scans Implement matrix builds for multiple environments Common Workflow Patterns Pattern 1: Test Workflow name: ...
14.4K
1125 dotnet-best-practices github/awesome-copilot
.NET/C Best Practices Your task is to ensure .NET/C code in ${selection} meets the best practices specific to this solution/project. This includes: Documentation & Structure Create comprehensive XML documentation comments for all public classes, interfaces, methods, and properties Include parameter descriptions and return value descriptions in XML comments Follow the established namespace structure: {Core|Console|App|Service}.{Feature} Design Patterns & Architecture Use primary constructor synta...
14.4K
1126 architecture-decision-records wshobson/agents
Architecture Decision Records Comprehensive patterns for creating, maintaining, and managing Architecture Decision Records (ADRs) that capture the context and rationale behind significant technical decisions. When to Use This Skill Making significant architectural decisions Documenting technology choices Recording design trade-offs Onboarding new team members Reviewing historical decisions Establishing decision-making processes Core Concepts 1. What is an ADR? An Architecture Decision Record cap...
14.4K
1127 write-a-prd mattpocock/skills
This skill will be invoked when the user wants to create a PRD. You should go through the steps below. You may skip steps if you don't consider them necessary. Ask the user for a long, detailed description of the problem they want to solve and any potential ideas for solutions. Explore the repo to verify their assertions and understand the current state of the codebase. Ask whether they have considered other options, and present other options to them. Interview the user about the implementation....
14.3K
1128 fixing-metadata ibelick/ui-skills
No SKILL.md available for this skill. View on GitHub Installs 10.9K Repository ibelick/ui-skills GitHub Stars 1.8K First Seen Jan 22, 2026
14.3K
1129 saga warpdotdev/common-skills
Saga Saga is an autonomous, spec-driven development workflow for medium-to-large features that should be implemented mostly without human intervention, except at a few discrete touch points. You act as the orchestrator : you turn a rough prompt into an airtight spec, then delegate implementation to a fleet of worker subagents while keeping your own context window clean. The whole method rests on one bet: if the spec defines every task with validation criteria tight enough to form a contract , th...
14.3K
1130 dbs-decision dontbesilent2025/dbskill
dbs-decision:个人决策系统 你是 dontbesilent 的决策系统 AI。你不替用户做决定,也不做决策台账。你负责把一个领域里的事实、判断、阶段状态和待验证的问题分别写进对应文件,方便后续继续使用。 你维护的是一套本地知识工程。后续对话要接得上,过一段时间回看也要看得明白。 本地 Markdown 以文件为准。聊天记忆会丢,上下文会变,后面还要继续用的内容就写进文件。 一、四层结构 每个项目固定 4 层。每一层各管一类内容。混在一起之后,后面的判断、回填和复盘都会变慢。 Show more
14.3K
1131 slack vercel-labs/agent-browser
Slack Automation Interact with Slack workspaces to check messages, extract data, and automate common tasks. Quick Start Connect to an existing Slack browser session or open Slack: Connect to existing session on port 9222 (typical for already-open Slack) agent-browser connect 9222 Or open Slack if not already running agent-browser open https://app.slack.com Then take a snapshot to see what's available: agent-browser snapshot -i Core Workflow Connect/Navigate : Open or connect to Slack Snapshot ...
14.2K
1132 insforge-debug insforge/agent-skills
InsForge Debug Diagnose problems in InsForge projects — from frontend SDK errors to backend infrastructure issues. This skill helps you locate problems by running the right commands and surfacing logs/status. It does NOT suggest fixes; hand the diagnostic output to the developer or their agent for repair decisions. Always use npx @insforge/cli — never install the CLI globally. Quick Triage Match the symptom to a scenario, then follow that scenario's steps. Symptom Scenario SDK returns { data: nu...
14.2K
1133 ast-grep ast-grep/agent-skill
ast-grep Code Search Overview This skill helps translate natural language queries into ast-grep rules for structural code search. ast-grep uses Abstract Syntax Tree (AST) patterns to match code based on its structure rather than just text, enabling powerful and precise code search across large codebases. When to Use This Skill Use this skill when users: Need to search for code patterns using structural matching (e.g., "find all async functions that don't have error handling") Want to locate ...
14.2K
1134 security-review getsentry/skills
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management Show more Installs 1.9K Repository affaan-m/ecc GitHub Stars 239.2K First Se...
14.2K
1135 okx-agentic-wallet okx/onchainos-skills
Onchain OS Wallet Wallet operations: authentication, balance, token transfers, transaction history, and smart contract calls. Wallet Tips On the first wallet-related interaction per conversation , display exactly ONE tip randomly selected from the list below. Do not repeat tips within the same conversation. Present it as-is (with emoji) AFTER the command result, on a separate line. 💡 Tip: You can say "show my addresses" or "充值地址" to quickly get your deposit addresses for any chain. 🔐 Tip: When p...
14.2K
1136 excel-automation claude-office-skills/skills
Excel Automation Skill Overview This skill enables advanced Excel automation using xlwings - a library that can interact with live Excel instances. Unlike openpyxl (file-only), xlwings can control Excel in real-time, execute VBA, update dashboards, and automate complex workflows. How to Use Describe the Excel automation task you need Specify if you need live Excel interaction or file processing I'll generate xlwings code and execute it Example prompts: "Update this live Excel dashboard with new ...
14.2K
1137 backtesting-frameworks wshobson/agents
Backtesting Frameworks Build robust, production-grade backtesting systems that avoid common pitfalls and produce reliable strategy performance estimates. When to Use This Skill Developing trading strategy backtests Building backtesting infrastructure Validating strategy performance Avoiding common backtesting biases Implementing walk-forward analysis Comparing strategy alternatives Core Concepts 1. Backtesting Biases Show more
14.2K
1138 security-best-practices supercent-io/skills-template
Security Best Practices When to use this skill New project : consider security from the start Security audit : inspect and fix vulnerabilities Public API : harden APIs accessible externally Compliance : comply with GDPR, PCI-DSS, etc. Instructions Step 1: Enforce HTTPS and security headers Express.js security middleware : import express from 'express' ; import helmet from 'helmet' ; import rateLimit from 'express-rate-limit' ; const app = express ( ) ; // Helmet: automatically set security heade...
14.1K
1139 web-search magentosh/skills
Install the belt CLI skill: npx skills add belt-sh/cli Web Search & Extraction Search the web and extract content via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Search the web belt app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}' Show more Installs 34.6K Repository skills-101/superpowers GitHub Stars 7 First Seen 13 days ago Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
14.1K
1140 sql-optimization github/awesome-copilot
SQL Performance Optimization Assistant Expert SQL performance optimization for ${selection} (or entire project if no selection). Focus on universal SQL optimization techniques that work across MySQL, PostgreSQL, SQL Server, Oracle, and other SQL databases. 🎯 Core Optimization Areas Query Performance Analysis -- ❌ BAD: Inefficient query patterns SELECT * FROM orders o WHERE YEAR ( o . created_at ) = 2024 AND o . customer_id IN ( SELECT c . id FROM customers c WHERE c . status = 'active' ) ; -- ✅ ...
14.1K
1141 openapi-spec-generation wshobson/agents
No SKILL.md available for this skill. View on GitHub
14.1K
1142 opencli-adapter-author jackwener/opencli
opencli-adapter-author 你是要给一个站点写 adapter 的 agent。这份 skill 目标: 从零到通过 opencli browser verify 的 30 分钟内闭环 。 全程用现有工具: opencli browser * / opencli doctor / opencli browser init / opencli browser verify 。没有新命令。 调试浏览器型 adapter 时,优先直接带上 --live --focus 。这样命令跑完后 automation window 还在,而且在前台,方便你核对最终页面状态,而不是猜是抓数错了还是页面走偏了。 前置:看你落在哪 先拿 coverage-matrix.md 快速自测。三个问题: 数据在浏览器里看得到吗?(否 → 先解决鉴权) 数据是 HTTP/JSON/HTML 吗?(否 → 不在 skill 范围) 需要实时推送吗?(是 → 找同数据 HTTP 接口;没有就放弃) 三个都 yes 继续。 顶层决策树 START │ ▼ ┌────────────────────────...
14.1K
1143 godot-gdscript-patterns wshobson/agents
Godot GDScript Patterns Production patterns for Godot 4.x game development with GDScript, covering architecture, signals, scenes, and optimization. When to Use This Skill Building games with Godot 4 Implementing game systems in GDScript Designing scene architecture Managing game state Optimizing GDScript performance Learning Godot best practices Core Concepts 1. Godot Architecture Node: Base building block ├── Scene: Reusable node tree (saved as .tscn) ├── Resource: Data container (saved as .tre...
14.1K
1144 extension-oql caffeinelabs/skills
OQL — Object Query Layer Author-side recipe for exposing a canister's data to OQL queries. The consumer side (forming and running queries) is handled by the Data Intelligence agent — your job is to declare entities over the data the app already keeps and install the mixin. include Expose({ ... }) adds two read-only shared query methods to the actor: schema(token : ?Text) : Text — a JSON catalogue of entities, their fields, primary keys, and edges. The discovery endpoint. execute(qJson : Text, to...
14.1K
1145 better-auth-security-best-practices better-auth/skills
No SKILL.md available for this skill. View on GitHub
14K
1146 agent-tools magentosh/skills
inference.sh Run 250+ AI apps in the cloud with a simple CLI. No GPU required. Install CLI curl -fsSL https://cli.inference.sh | sh belt login What does the installer do? The install script detects your OS and architecture, downloads the correct binary from dist.inference.sh , verifies its SHA-256 checksum, and places it in your PATH. That's it — no elevated permissions, no background processes, no telemetry. If you have cosign installed, the installer also verifies the Sigstore signature automa...
14K
1147 python-executor magentosh/skills
Install the belt CLI skill: npx skills add belt-sh/cli Python Code Executor Execute Python code in a safe, sandboxed environment with 100+ pre-installed libraries. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Show more Installs 35.4K Repository skills-101/superpowers GitHub Stars 7 First Seen 14 days ago Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
14K
1148 infsh-cli magentosh/skills
No SKILL.md available for this skill. View on GitHub
14K
1149 simplify brianlovin/agent-config
You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. This is a balance that you have mastered as a result your years as an expert software engineer. You will analyze recently modified code and apply refin...
14K
1150 public-relations coreyhaines31/marketingskills
Public Relations & Earned Media You are an expert in earned media for software products. Your goal is to help the user get covered by journalists, podcasts, and newsletters — efficiently, with respect for the people on the other end of the pitch. Before Starting Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context...
13.9K