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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
8651 competitive-analysis anthropics/knowledge-work-plugins
Competitive Analysis Help the user understand competitive dynamics using frameworks from 49 product leaders who have navigated competition at companies from startups to Netflix and Google. How to Help When the user asks for help with competitive analysis: Expand the competitive set - Identify not just direct competitors but the status quo and workarounds Understand the true threat - Determine if the competition is features, distribution, or fundamental business model Find asymmetries - Help them...
378
8652 frontend-slides zarazhangrui/frontend-slides
Frontend Slides Create zero-dependency, animation-rich HTML presentations that run entirely in the browser. Inspired by the visual exploration approach showcased in work by zarazhangrui (credit: @zarazhangrui). When to Activate Creating a talk deck, pitch deck, workshop deck, or internal presentation Converting .ppt or .pptx slides into an HTML presentation Improving an existing HTML presentation's layout, motion, or typography Exploring presentation styles with a user who does not know their de...
378
8653 talking-head-production inference-sh/skills
Talking Head Production Create talking head videos with AI avatars and lipsync via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Generate dialogue audio infsh app run falai/dia-tts --input '{ "prompt": "[S1] Welcome to our product tour. Today I will show you three features that will save you hours every week." }' Create talking head video with OmniHuman infsh app run bytedance/omnihum...
378
8654 setup everyinc/compound-engineering-plugin
Parallel Plugin Setup Install CLI See https://docs.parallel.ai/integrations/cli for the supported install methods (pipx, Homebrew, npm, native binary). Walk the user through whichever they pick. Authenticate parallel-cli login Verify parallel-cli auth If parallel-cli not found, add ~/.local/bin to PATH. Show more
378
8655 dotnet-testing-strategy wshaddix/dotnet-skills
dotnet-testing-strategy Decision framework for choosing the right test type, organizing test projects, and selecting test doubles in .NET applications. Covers unit vs integration vs E2E trade-offs with concrete criteria, naming conventions, and when to use mocks vs fakes vs stubs. Out of scope: Test project scaffolding (directory layout, xUnit project creation, coverlet setup, editorconfig overrides) is owned by [skill:dotnet-add-testing]. Code coverage tooling and mutation testing are covered b...
378
8656 web3-polymarket polymarket/agent-skills
Polymarket Skill When to use this skill Use this skill when the user asks about or needs to build: Polymarket API authentication (L1/L2, API keys, HMAC signing) Placing or managing orders (limit, market, GTC, GTD, FOK, FAK, batch, cancel) Reading orderbook data (prices, spreads, midpoints, depth) Market data fetching (events, markets, by slug, by tag, pagination) WebSocket subscriptions (market channel, user channel, sports) CTF operations (split, merge, redeem positions) Negative risk markets (...
378
8657 copywriter shipshitdev/library
Copywriter Skill You are an expert copywriter and brand voice guardian, specializing in direct, conversion-focused copy that adapts to each project's brand voice and tone. Project Context Discovery Before writing copy, discover the project's brand voice: Scan Project Documentation: Check .agents/SYSTEM/ARCHITECTURE.md for brand guidelines Look for brand voice documentation in project docs Review .agents/SOP/ for copywriting standards Check for existing copy examples Identify Brand Voice: Review ...
378
8658 unity mindrally/skills
Unity You are an expert in Unity game development and C with deep knowledge of game architecture and performance optimization. Core Principles Write clear, technical responses with precise C and Unity examples Leverage built-in features and prioritize maintainability following C conventions Structure projects modularly using component-based architecture Prioritize performance, scalability, and maintainability in architecture C Standards Employ MonoBehaviour for GameObject components Use Script...
378
8659 swr mindrally/skills
SWR Best Practices You are an expert in SWR (stale-while-revalidate), TypeScript, and React development. SWR is a React Hooks library for data fetching that first returns data from cache (stale), then sends the request (revalidate), and finally delivers up-to-date data. Core Principles Use SWR for all client-side data fetching Leverage automatic caching and revalidation Minimize boilerplate with SWR's built-in state management Implement proper error handling and loading states Use TypeScript f...
378
8660 general-best-practices mindrally/skills
General Best Practices A comprehensive collection of software development best practices applicable across various technology stacks and project types. Code Quality Readability and Maintainability Write short, focused functions with a single responsibility. Use clear, descriptive names for variables, functions, and classes. Avoid deep nesting; prefer early returns and guard clauses. Keep functions and methods to a reasonable length (typically under 30 lines). Error Handling Always handle...
378
8661 django-python mindrally/skills
Django Python You are an expert in Django and Python web development. Core Principles Write clear, technical responses with precise Django examples Leverage Django's built-in features and tools extensively Maintain PEP 8 compliance and readability Use descriptive naming (lowercase with underscores) Structure projects modularly using Django apps Django/Python Guidelines Prefer class-based views for complex logic; function-based views for simpler tasks Leverage Django's ORM for database interactio...
378
8662 angular mindrally/skills
Angular You are an Angular, SASS, and TypeScript expert creating scalable, high-performance web applications with strict type safety and Angular's official style guide adherence. Core Principles Provide concise, precise examples with clear explanations Apply immutability and pure functions throughout services and state management Favor component composition over inheritance for enhanced modularity Use descriptive naming conventions (e.g., isUserLoggedIn , fetchData() ) Enforce kebab-case file na...
378
8663 codebase-documenter mhattingpete/claude-skills-marketplace
Codebase Documenter Overview This skill enables creating comprehensive, beginner-friendly documentation for codebases. It provides structured templates and best practices for writing READMEs, architecture guides, code comments, and API documentation that help new users quickly understand and contribute to projects. Core Principles for Beginner-Friendly Documentation When documenting code for new users, follow these fundamental principles: Start with the "Why" - Explain the purpose before div...
378
8664 mermaid-diagram-generator rysweet/amplihack
Mermaid Diagram Generator Skill Purpose This skill automatically converts text descriptions of system architectures, module specifications, workflow documentation, and design concepts into valid Mermaid diagram syntax. It enables clear visual communication of complex systems, ensuring diagrams are production-ready and embeddable in markdown documentation. When to Use This Skill Architecture Visualization : Convert architecture descriptions into flowcharts or block diagrams Module Relationships :...
378
8665 kotlin-concurrency-expert new-silvermoon/awesome-android-agent-skills
No SKILL.md available for this skill. View on GitHub
378
8666 nextjs-supabase-auth davila7/claude-code-templates
Next.js + Supabase Auth You are an expert in integrating Supabase Auth with Next.js App Router. You understand the server/client boundary, how to handle auth in middleware, Server Components, Client Components, and Server Actions. Your core principles: Use @supabase/ssr for App Router integration Handle tokens in middleware for protected routes Never expose auth tokens to client unnecessarily Use Server Actions for auth operations when possible Understand the cookie-based session flow Capabiliti...
378
8667 import-on-visibility patternsdev/skills
Import On Visibility Besides user interaction, we often have components that aren't visible on the initial page. A good example of this is lazy loading images that aren't directly visible in the viewport, but only get loaded once the user scrolls down. As we're not requesting all images instantly, we can reduce the initial loading time. We can do the same with components! In order to know whether components are currently in our viewport, we can use the IntersectionObserver API , or use libraries...
378
8668 laravel-security-audit sickn33/antigravity-awesome-skills
Laravel Security Audit Skill Metadata Name: laravel-security-audit Focus: Security Review & Vulnerability Detection Scope: Laravel 10/11+ Applications Role You are a Laravel Security Auditor. You analyze Laravel applications for security vulnerabilities, misconfigurations, and insecure coding practices. You think like an attacker but respond like a security engineer. You prioritize: Data protection Input validation integrity Authorization correctness Secure configuration OWASP awareness Real-wor...
378
8669 accountant-expert personamanagmentlayer/pcl
Expert guidance for accounting systems, financial reporting, tax compliance, and modern accounting technology. Core Concepts Accounting Principles - GAAP (Generally Accepted Accounting Principles) - IFRS (International Financial Reporting Standards) - Double-entry bookkeeping - Accrual vs cash accounting - Financial statement preparation - Audit and assurance Financial Statements - Balance sheet (Statement of Financial Position) - Income statement (P&L) - Cash flow statement - St...
378
8670 openwebninja openweb-ninja/openwebninja-skills
OpenWeb Ninja Universal Scraper Data extraction from 35+ OpenWeb Ninja APIs. This skill automatically selects the best API for your task, reads its docs, plans the extraction, and runs a script. When to use Use this skill when the user wants to: Extract structured data from the web (businesses, products, jobs, reviews, news, social profiles, finance data, etc.) Generate leads or enrich contact lists Run market research, competitor analysis, or price tracking Monitor content, trends, or brand men...
378
8671 figma hoodini/ai-agents-skills
Figma MCP Use the Figma MCP server for Figma-driven implementation. For setup and debugging details (env vars, config, verification), see references/figma-mcp-config.md . Figma MCP Integration Rules These rules define how to translate Figma inputs into code for this project and must be followed for every Figma-driven change. Required flow (do not skip) Run get_design_context first to fetch the structured representation for the exact node(s). If the response is too large or truncated, run get_met...
378
8672 pinia uni-helper/skills
Pinia Pinia is the official state management library for Vue, designed to be intuitive and type-safe. It supports both Options API and Composition API styles, with first-class TypeScript support and devtools integration. The skill is based on Pinia v3.0.4, generated at 2026-01-28. Core References Topic Description Reference Stores Defining stores, state, getters, actions, storeToRefs, subscriptions core-stores Features Extensibility Topic Description Reference Plugins Extend stores with custom p...
378
8673 vega-multi-tv-migration amazonappdev/devices-agent-skills
Vega Multi-Platform Migration Overview Migrate Vega OS (Fire TV) apps to multi-platform React Native monorepo with 70-85% code reuse across Android TV, Apple TV, and Vega OS. When to Apply Use this skill when user mentions: Migrating Vega/Fire TV app to other platforms Building multi-platform TV application Converting single-platform TV app to monorepo Adding Android TV or Apple TV support Sharing code between TV platforms Setting up Yarn workspaces for TV apps Phase Priority Guide Show more Ins...
377
8674 skill-from-github gbsoss/skill-from-masters
Skill from GitHub When users want to accomplish something, search GitHub for quality projects that solve the problem, understand them deeply, then create a skill based on that knowledge. When to Use When users describe a task and you want to find existing tools/projects to learn from: "I want to be able to convert markdown to PDF" "Help me analyze sentiment in customer reviews" "I need to generate API documentation from code" Workflow Step 1: Understand User Intent Clarify what the user wan...
377
8675 logging-observability wshaddix/dotnet-skills
You are a senior .NET architect specializing in observability. When implementing logging and monitoring in Razor Pages applications, follow these patterns to ensure production-grade observability, troubleshooting capabilities, and integration with monitoring systems. Target .NET 8+ with nullable reference types enabled. Rationale Effective observability is critical for production applications. Poor logging makes debugging impossible, and lack of correlation IDs makes tracing requests across serv...
377
8676 legal-advisor lotosbin/claude-skills
Use this skill when Working on legal advisor tasks or workflows Needing guidance, best practices, or checklists for legal advisor Do not use this skill when The task is unrelated to legal advisor 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 are a le...
377
8677 azure-diagrams eraserlabs/eraser-io
Azure Diagram Generator Generates architecture diagrams for Azure infrastructure from ARM templates, Azure CLI output, or natural language descriptions. When to Use Activate this skill when: User has ARM (Azure Resource Manager) templates (JSON) User provides Azure CLI output (e.g., az vm list) User wants to visualize Azure resources User mentions Azure services (Virtual Machines, Storage Accounts, VNets, etc.) User asks to "diagram my Azure infrastructure" How It Works This skill generates...
377
8678 bencium-impact-designer bencium/bencium-claude-code-design-skill
Innovative Designer for impact Create distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. Expert UI/UX design skill that helps create unique, and thoughtfully designed interfaces. This skill emphasizes design decision collaboration, breaking away from generic patterns, and building interfaces that stand out. This skill emphasizes bold creative commitment , brea...
377
8679 prometheus grafana/skills
Metrics with Prometheus and Grafana Value Proposition Prometheus is an open-source monitoring and alerting toolkit for cloud-native environments. Combined with Grafana Cloud Metrics (powered by Grafana Mimir), it provides a fully managed Prometheus-compatible service with long-term storage, global query performance, and enterprise scalability. Key Differentiators : Pull-based model, dimensional data model with labels, PromQL, automatic service discovery, scales to billions of active series. Prom...
377
8680 edge-strategy-designer tradermonty/claude-trading-skills
Edge Strategy Designer Overview Translate concept-level hypotheses into concrete strategy draft specs. This skill sits after concept synthesis and before pipeline export validation. When to Use You have edge_concepts.yaml and need strategy candidates. You want multiple variants (core/conservative/research-probe) per concept. You want optional exportable ticket files for interface v1 families. Prerequisites Python 3.9+ PyYAML edge_concepts.yaml produced by concept synthesis Output strategy_drafts...
377
8681 qiaomu-smart-search joeseesun/opencli-skill
智能搜索路由器 根据话题和场景,将查询路由到最佳的 opencli 搜索源。此 skill 的核心目标不是记忆命令,而是先定位数据源,再让 Agent 通过 opencli 自己读取实时帮助,避免文档漂移。 强制预检 每次使用前,必须先做下面两步: 运行 opencli list -f yaml 用 live registry 确认候选站点是否存在,并检查 strategy 、 browser 、 domain 选定站点后,必须再做下面两步: 运行 opencli <site> -h 查看该站点有哪些子命令 若已锁定某个子命令,再运行 opencli <site> <command> -h 查看参数、输出列、策略 不要在 skill 文档里硬编码参数或假设命令签名;以 opencli ... -h 的实时输出为准。 主路由规则 只使用这一条规则,不再维护多套优先级: 当用户明确指定网站、平台或数据源时,直接使用对应网站。 当用户没有指定网站时,优先只选择一个 AI 源: grok 、 doubao 、 gemini 三选一。 当 AI 返回内容不足、缺少原始数据、需要权威佐证或需要垂直...
377
8682 bitbucket-workflow mindrally/skills
Bitbucket Workflow Best Practices You are an expert in Bitbucket workflows, including pull requests, Bitbucket Pipelines, Jira integration, and Atlassian ecosystem best practices. Core Principles Use pull requests for all code changes with proper review processes Implement CI/CD with Bitbucket Pipelines using bitbucket-pipelines.yml Leverage Jira integration for seamless issue tracking Follow branching models like Gitflow for structured development Maintain security through branch permissions ...
377
8683 hono-typescript mindrally/skills
Hono TypeScript Development You are an expert in Hono and TypeScript development with deep knowledge of building ultrafast, edge-first APIs that run on Cloudflare Workers, Deno, Bun, and Node.js. TypeScript General Guidelines Basic Principles Use English for all code and documentation Always declare types for variables and functions (parameters and return values) Avoid using any type - create necessary types instead Use JSDoc to document public classes and methods Write concise, maintainable, ...
377
8684 home-assistant-integrations-addons bradsjm/hassio-addons
Home Assistant Integrations & Add-ons Workflow Discover current integrations/add-ons and update availability. Summarize current state before changes. Avoid destructive operations unless explicitly requested. Prefer reloads over restarts when supported; validate config before restart. Tooling map (ha-mcp) Integrations: ha_get_integration , ha_set_integration_enabled , ha_delete_config_entry Add-ons: ha_get_addon Updates: ha_get_updates System health: ha_get_system_health Reload/restart: ha_reload...
377
8685 integration-testing aj-geddes/useful-ai-prompts
Integration Testing Overview Integration testing validates that different components, modules, or services work correctly together. Unlike unit tests that isolate single functions, integration tests verify the interactions between multiple parts of your system including databases, APIs, external services, and infrastructure. When to Use Testing API endpoints with real database connections Verifying service-to-service communication Validating data flow across multiple layers Testing repository/...
377
8686 design-system-creation aj-geddes/useful-ai-prompts
Design System Creation Overview A design system is a structured set of components, guidelines, and principles that ensure consistency, accelerate development, and improve product quality. When to Use Multiple product interfaces or teams Scaling design consistency Reducing redundant component development Improving design-to-dev handoff Creating shared language across teams Building reusable components Documenting design standards Instructions 1. Design System Components Design System Structure:...
377
8687 project-structure wshaddix/dotnet-skills
.NET Project Structure and Build Configuration When to Use This Skill Use this skill when: Setting up a new .NET solution with modern best practices Configuring centralized build properties across multiple projects Implementing central package version management Setting up SourceLink for debugging and NuGet packages Automating version management with release notes Pinning SDK versions for consistent builds Recommended Solution Layout MyApp/ ├── .config/ │ └── dotnet-tools.json Local...
377
8688 route-based patternsdev/skills
Route Based Splitting We can request resources that are only needed for specific routes, by adding route-based splitting . By combining React Suspense or loadable-components with libraries such as react-router , we can dynamically load components based on the current route. By lazily loading the components per route, we're only requesting the bundle that contains the code that's necessary for the current route. Since most people are used to the fact that there may be some loading time during a r...
377
8689 create-agent-skills glittercowboy/taches-cc-resources
<essential_principles> How Skills Work Skills are modular, filesystem-based capabilities that provide domain expertise on demand. This skill teaches how to create effective skills. 1. Skills Are Prompts All prompting best practices apply. Be clear, be direct, use XML structure. Assume Claude is smart - only add context Claude doesn't have. 2. SKILL.md Is Always Loaded When a skill is invoked, Claude reads SKILL.md. Use this guarantee: Essential principles go in SKILL.md (can't be skipped) Workfl...
377
8690 trading-signals scientiacapital/skills
<quick_start> Confluence analysis (methodologies agree = high-probability setup): score = sum(signal.strength * weights[signal.method] for signal in signals) action = 'BUY' if score >= 0.7 else 'WAIT' Score interpretation: 0.7-1.0: High conviction entry 0.4-0.7: Wait for more confluence 0.0-0.4: No trade Cost-effective routing: DeepSeek-V3 for pattern detection → Claude Sonnet for critical decisions </quick_start> <success_criteria> Analysis is successful when: Multiple methodologies prov...
377
8691 shadcn vercel/vercel-plugin
shadcn/ui A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI. IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn@latest , pnpm dlx shadcn@latest , or bunx --bun shadcn@latest — based on the project's packageManager . Examples below use npx shadcn@latest but substitute the correct runner for the project. Current Project Context !`npx shadcn@latest info --json 2 >/dev/ null || echo ' { "error...
377
8692 cartography alvinunreal/oh-my-opencode-slim
Cartography Skill You help users understand and map repositories by creating hierarchical codemaps. When to Use User asks to understand/map a repository User wants codebase documentation Starting work on an unfamiliar codebase Workflow Step 1: Check for Existing State First, check if .slim/cartography.json exists in the repo root. If it exists: Skip to Step 3 (Detect Changes) - no need to re-initialize. If it doesn't exist: Continue to Step 2 (Initialize). Step 2: Initialize (Only if no st...
376
8693 validation-patterns wshaddix/dotnet-skills
Validation Patterns in ASP.NET Core Rationale Validation is critical for both security and user experience. Poor validation leads to invalid data, security vulnerabilities, and confusing error messages. These patterns provide a comprehensive approach to validation at multiple layers. Validation Strategy Layer Purpose Technology Client-Side Immediate feedback, reduce server load jQuery Validation, HTML5 Model Binding Data type/format validation Model Binders Application Business rule validation F...
376
8694 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...
376
8695 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...
376
8696 billing-sdk dodopayments/skills
BillingSDK Integration Reference: docs.dodopayments.com/developer-resources/billingsdk | billingsdk.com BillingSDK provides open-source, customizable React components for billing interfaces - pricing tables, subscription management, usage meters, and more. Overview BillingSDK offers: React Components: Pre-built, customizable billing components CLI Tooling: Project initialization and component management Framework Support: Next.js, Express.js, Hono, Fastify, React Payment Provider: Full inte...
376
8697 codesight-ai-context aradotso/trending-skills
CodeSight — AI Context Generator Skill by ara.so — Daily 2026 Skills collection. CodeSight compiles your codebase into a compact, structured context map (routes, models, components, dependencies) that AI coding assistants can read in one shot — eliminating thousands of tokens spent on manual file exploration. Supports 14 languages, 30+ frameworks, 13 ORM parsers, and an MCP server with 13 tools. Installation No installation required. Run directly with npx : npx codesight Or install globally: npm...
376
8698 network-debugging aj-geddes/useful-ai-prompts
Network Debugging Overview Network debugging identifies connectivity issues, latency problems, and data transmission errors that impact application performance. When to Use Slow loading times Failed requests Intermittent connectivity CORS errors SSL/TLS issues API communication problems Instructions 1. Browser Network Tools Chrome DevTools Network Tab: Columns: - Name: Request file/endpoint - Status: HTTP status code - Type: Resource type (xhr, fetch, etc) - Initiator: What triggered ...
376
8699 encore-auth encoredev/skills
Encore Authentication Instructions Encore.ts provides a built-in authentication system for identifying API callers and protecting endpoints. 1. Create an Auth Handler // auth.ts import { Header, Gateway } from "encore.dev/api"; import { authHandler } from "encore.dev/auth"; // Define what the auth handler receives interface AuthParams { authorization: Header<"Authorization">; } // Define what authenticated requests will have access to interface AuthData { userID: string; email: string;...
376
8700 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...
376