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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
701 vercel-sandbox vercel-labs/agent-browser
Browser Automation with Vercel Sandbox Run agent-browser + headless Chrome inside ephemeral Vercel Sandbox microVMs. A Linux VM spins up on demand, executes browser commands, and shuts down. Works with any Vercel-deployed framework (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.). When to Use Sandbox vs Serverless Vercel Sandbox Serverless ( @sparticuz/chromium ) Binary size limit None 50MB compressed Session persistence Yes, within a sandbox lifetime No, fresh browser per request Multi-step workf...
3.1K
702 workflow-patterns wshobson/agents
Workflow Patterns Guide for implementing tasks using Conductor's TDD workflow, managing phase checkpoints, handling git commits, and executing the verification protocol that ensures quality throughout implementation. When to Use This Skill Implementing tasks from a track's plan.md Following TDD red-green-refactor cycle Completing phase checkpoints Managing git commits and notes Understanding quality assurance gates Handling verification protocols Recording progress in plan files TDD Task Lifec...
3.1K
703 vue-testing-best-practices vuejs-ai/skills
Vue.js testing best practices, patterns, and common gotchas. Testing Setting up test infrastructure for Vue 3 projects → See testing-vitest-recommended-for-vue Tests keep breaking when refactoring component internals → See testing-component-blackbox-approach Tests fail intermittently with race conditions → See testing-async-await-flushpromises Composables using lifecycle hooks or inject fail to test → See testing-composables-helper-wrapper Getting "injection Symbol(pinia) not found" errors in te...
3.1K
704 angular-routing analogjs/angular-skills
Angular Routing Configure routing in Angular v20+ with lazy loading, functional guards, and signal-based route parameters. Basic Setup // app.routes.ts import { Routes } from '@angular/router'; export const routes: Routes = [ { path: '', redirectTo: '/home', pathMatch: 'full' }, { path: 'home', component: HomeComponent }, { path: 'about', component: AboutComponent }, { path: '', component: NotFoundComponent }, ]; // app.config.ts import { ApplicationConfig } from '@angular/core'; imp...
3.1K
705 web-quality-audit addyosmani/web-quality-skills
Web quality audit Comprehensive quality review based on Google Lighthouse audits. Covers Performance, Accessibility, SEO, and Best Practices across 150+ checks. How it works Analyze the provided code/project for quality issues Categorize findings by severity (Critical, High, Medium, Low) Provide specific, actionable recommendations Include code examples for fixes Audit categories Performance (40% of typical issues) Core Web Vitals — Must pass for good page experience: LCP (Largest Contentful...
3.1K
706 web3-testing wshobson/agents
Web3 Smart Contract Testing Master comprehensive testing strategies for smart contracts using Hardhat, Foundry, and advanced testing patterns. When to Use This Skill Writing unit tests for smart contracts Setting up integration test suites Performing gas optimization testing Fuzzing for edge cases Forking mainnet for realistic testing Automating test coverage reporting Verifying contracts on Etherscan Hardhat Testing Setup // hardhat.config.js require("@nomicfoundation/hardhat-toolbox"); requi...
3.1K
707 news-aggregator-skill cclank/news-aggregator-skill
News Aggregator Skill Fetch real-time hot news from multiple sources. Tools fetch_news.py Usage: Single Source (Limit 10) ```bash Global Scan (Option 12) - Broad Fetch Strategy > NOTE: This strategy is specifically for the "Global Scan" scenario where we want to catch all trends. ```bash 1. Fetch broadly (Massive pool for Semantic Filtering) python3 scripts/fetch_news.py --source all --limit 15 --deep 2. SEMANTIC FILTERING: Agent manually filters the broad list (approx 120 items) for...
3.1K
708 dbt-transformation-patterns wshobson/agents
dbt Transformation Patterns Production-ready patterns for dbt (data build tool) including model organization, testing strategies, documentation, and incremental processing. When to Use This Skill Building data transformation pipelines with dbt Organizing models into staging, intermediate, and marts layers Implementing data quality tests Creating incremental models for large datasets Documenting data models and lineage Setting up dbt project structure Core Concepts 1. Model Layers (Medallion Ar...
3.1K
709 best-practices addyosmani/web-quality-skills
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...
3.1K
710 projection-patterns wshobson/agents
Projection Patterns Comprehensive guide to building projections and read models for event-sourced systems. When to Use This Skill Building CQRS read models Creating materialized views from events Optimizing query performance Implementing real-time dashboards Building search indexes from events Aggregating data across streams Core Concepts 1. Projection Architecture ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ Event Store │────►│ Projector │────►│ Read Model │ │ │ ...
3.1K
711 vector-index-tuning wshobson/agents
Vector Index Tuning Guide to optimizing vector indexes for production performance. When to Use This Skill Tuning HNSW parameters Implementing quantization Optimizing memory usage Reducing search latency Balancing recall vs speed Scaling to billions of vectors Core Concepts 1. Index Type Selection Data Size Recommended Index ──────────────────────────────────────── < 10K vectors → Flat (exact search) 10K - 1M → HNSW 1M - 100M → HNSW + Quantization > 100M →...
3.1K
712 typescript-react-reviewer dotneet/claude-code-marketplace
TypeScript + React 19 Code Review Expert Expert code reviewer with deep knowledge of React 19's new features, TypeScript best practices, state management patterns, and common anti-patterns. Review Priority Levels 🚫 Critical (Block Merge) These issues cause bugs, memory leaks, or architectural problems: Issue Why It's Critical useEffect for derived state Extra render cycle, sync bugs Missing cleanup in useEffect Memory leaks Direct state mutation (.push(), .splice()) Silent update failures Co...
3.1K
713 multi-cloud-architecture wshobson/agents
Multi-Cloud Architecture Decision framework and patterns for architecting applications across AWS, Azure, and GCP. Purpose Design cloud-agnostic architectures and make informed decisions about service selection across cloud providers. When to Use Design multi-cloud strategies Migrate between cloud providers Select cloud services for specific workloads Implement cloud-agnostic architectures Optimize costs across providers Cloud Service Comparison Compute Services AWS Azure GCP Use Case EC2 Vi...
3.1K
714 airflow-dag-patterns wshobson/agents
Apache Airflow DAG Patterns Production-ready patterns for Apache Airflow including DAG design, operators, sensors, testing, and deployment strategies. When to Use This Skill Creating data pipeline orchestration with Airflow Designing DAG structures and dependencies Implementing custom operators and sensors Testing Airflow DAGs locally Setting up Airflow in production Debugging failed DAG runs Core Concepts 1. DAG Design Principles Principle Description Idempotent Running twice produces same re...
3.1K
715 billing-automation wshobson/agents
Billing Automation Master automated billing systems including recurring billing, invoice generation, dunning management, proration, and tax calculation. When to Use This Skill Implementing SaaS subscription billing Automating invoice generation and delivery Managing failed payment recovery (dunning) Calculating prorated charges for plan changes Handling sales tax, VAT, and GST Processing usage-based billing Managing billing cycles and renewals Core Concepts 1. Billing Cycles Common Intervals:...
3.1K
716 angular-migration wshobson/agents
Angular Migration Master AngularJS to Angular migration, including hybrid apps, component conversion, dependency injection changes, and routing migration. When to Use This Skill Migrating AngularJS (1.x) applications to Angular (2+) Running hybrid AngularJS/Angular applications Converting directives to components Modernizing dependency injection Migrating routing systems Updating to latest Angular versions Implementing Angular best practices Migration Strategies 1. Big Bang (Complete Rewrite) ...
3.1K
717 screen-reader-testing wshobson/agents
Screen Reader Testing Practical guide to testing web applications with screen readers for comprehensive accessibility validation. When to Use This Skill Validating screen reader compatibility Testing ARIA implementations Debugging assistive technology issues Verifying form accessibility Testing dynamic content announcements Ensuring navigation accessibility Core Concepts 1. Major Screen Readers Screen Reader Platform Browser Usage VoiceOver macOS/iOS Safari ~15% NVDA Windows Firefox/Chrome ~31...
3.1K
718 ml-pipeline-workflow wshobson/agents
ML Pipeline Workflow Complete end-to-end MLOps pipeline orchestration from data preparation through model deployment. Overview This skill provides comprehensive guidance for building production ML pipelines that handle the full lifecycle: data ingestion → preparation → training → validation → deployment → monitoring. When to Use This Skill Building new ML pipelines from scratch Designing workflow orchestration for ML systems Implementing data → model → deployment automation Setting up reprod...
3.1K
719 design-system supercent-io/skills-template
Frontend Design System This is a skill for production-grade UI design. It supports consistent and scalable frontend development through clear design tokens, layout rules, motion guidelines, and accessibility checks. When to use this skill Production-quality UI needed : Generate high-quality UI from prompts Consistent design language : Consistent visual language across screens Typography/layout/motion guide : Systematic design system Instructions Step 1: Define Design Tokens // design-tokens.ts e...
3.1K
720 saga-orchestration wshobson/agents
Saga Orchestration Patterns for managing distributed transactions and long-running business processes. When to Use This Skill Coordinating multi-service transactions Implementing compensating transactions Managing long-running business workflows Handling failures in distributed systems Building order fulfillment processes Implementing approval workflows Core Concepts 1. Saga Types Choreography Orchestration ┌─────┐ ┌─────┐ ┌─────┐ ┌─────────────┐ │Svc A│─►│Svc B│─►│Svc...
3.1K
721 distributed-tracing wshobson/agents
Distributed Tracing Implement distributed tracing with Jaeger and Tempo for request flow visibility across microservices. Purpose Track requests across distributed systems to understand latency, dependencies, and failure points. When to Use Debug latency issues Understand service dependencies Identify bottlenecks Trace error propagation Analyze request paths Distributed Tracing Concepts Trace Structure Trace (Request ID: abc123) ↓ Span (frontend) [100ms] ↓ Span (api-gateway) [80ms] ├→ ...
3K
722 shellcheck-configuration wshobson/agents
ShellCheck Configuration and Static Analysis Comprehensive guidance for configuring and using ShellCheck to improve shell script quality, catch common pitfalls, and enforce best practices through static code analysis. When to Use This Skill Setting up linting for shell scripts in CI/CD pipelines Analyzing existing shell scripts for issues Understanding ShellCheck error codes and warnings Configuring ShellCheck for specific project requirements Integrating ShellCheck into development workflows ...
3K
723 angular-http analogjs/angular-skills
Angular HTTP & Data Fetching Fetch data in Angular using signal-based resource(), httpResource(), and the traditional HttpClient. httpResource() - Signal-Based HTTP httpResource() wraps HttpClient with signal-based state management: import { Component, signal } from '@angular/core'; import { httpResource } from '@angular/common/http'; interface User { id: number; name: string; email: string; } @Component({ selector: 'app-user-profile', template: ` @if (userResource.isLoading(...
3K
724 incident-runbook-templates wshobson/agents
Incident Runbook Templates Production-ready templates for incident response runbooks covering detection, triage, mitigation, resolution, and communication. When to Use This Skill Creating incident response procedures Building service-specific runbooks Establishing escalation paths Documenting recovery procedures Responding to active incidents Onboarding on-call engineers Core Concepts 1. Incident Severity Levels Severity Impact Response Time Example SEV1 Complete outage, data loss 15 min Produ...
3K
725 postmortem-writing wshobson/agents
Postmortem Writing Comprehensive guide to writing effective, blameless postmortems that drive organizational learning and prevent incident recurrence. When to Use This Skill Conducting post-incident reviews Writing postmortem documents Facilitating blameless postmortem meetings Identifying root causes and contributing factors Creating actionable follow-up items Building organizational learning culture Core Concepts 1. Blameless Culture Blame-Focused Blameless "Who caused this?" "What condition...
3K
726 fullstack-developer shubhamsaboo/awesome-llm-apps
Full-Stack Developer You are an expert full-stack web developer specializing in modern JavaScript/TypeScript stacks with React, Node.js, and databases. When to Apply Use this skill when: Building complete web applications Developing REST or GraphQL APIs Creating React/Next.js frontends Setting up databases and data models Implementing authentication and authorization Deploying and scaling web applications Integrating third-party services Technology Stack Frontend React - Modern component pattern...
3K
727 turborepo-caching wshobson/agents
Turborepo Caching Production patterns for Turborepo build optimization. When to Use This Skill Setting up new Turborepo projects Configuring build pipelines Implementing remote caching Optimizing CI/CD performance Migrating from other monorepo tools Debugging cache misses Core Concepts 1. Turborepo Architecture Workspace Root/ ├── apps/ │ ├── web/ │ │ └── package.json │ └── docs/ │ └── package.json ├── packages/ │ ├── ui/ │ │ └── package.json │ └── config/ │ └── pac...
3K
728 hybrid-cloud-networking wshobson/agents
Hybrid Cloud Networking Configure secure, high-performance connectivity between on-premises and cloud environments using VPN, Direct Connect, and ExpressRoute. Purpose Establish secure, reliable network connectivity between on-premises data centers and cloud providers (AWS, Azure, GCP). When to Use Connect on-premises to cloud Extend datacenter to cloud Implement hybrid active-active setups Meet compliance requirements Migrate to cloud gradually Connection Options AWS Connectivity 1. Site-to...
3K
729 spark-optimization wshobson/agents
Apache Spark Optimization Production patterns for optimizing Apache Spark jobs including partitioning strategies, memory management, shuffle optimization, and performance tuning. When to Use This Skill Optimizing slow Spark jobs Tuning memory and executor configuration Implementing efficient partitioning strategies Debugging Spark performance issues Scaling Spark pipelines for large datasets Reducing shuffle and data skew Core Concepts 1. Spark Execution Model Driver Program ↓ Job (trigger...
3K
730 python-anti-patterns wshobson/agents
Python Anti-Patterns Checklist A reference checklist of common mistakes and anti-patterns in Python code. Review this before finalizing implementations to catch issues early. When to Use This Skill Reviewing code before merge Debugging mysterious issues Teaching or learning Python best practices Establishing team coding standards Refactoring legacy code Note: This skill focuses on what to avoid. For guidance on positive patterns and architecture, see the python-design-patterns skill. Infrastruct...
3K
731 react-best-practices supercent-io/skills-template
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
3K
732 paypal-integration wshobson/agents
PayPal Integration Master PayPal payment integration including Express Checkout, IPN handling, recurring billing, and refund workflows. When to Use This Skill Integrating PayPal as a payment option Implementing express checkout flows Setting up recurring billing with PayPal Processing refunds and payment disputes Handling PayPal webhooks (IPN) Supporting international payments Implementing PayPal subscriptions Core Concepts 1. Payment Products PayPal Checkout One-time payments Express checko...
3K
733 ralphmode supercent-io/skills-template
Ralphmode Ralphmode is a cross-platform permission profile for long-running ralph or jeo workflows. It reduces approval friction, but it is not "allow everything everywhere." The core rule is simple: widen automation only inside a bounded project or disposable sandbox, and keep secrets plus destructive commands explicitly blocked. When to use this skill You want ralph to iterate without repeated approval popups. You are setting up the same repo for Claude Code, Codex CLI, and Gemini CLI. You nee...
3K
734 nuxt onmax/nuxt-skills
Nuxt is a full-stack Vue framework that provides server-side rendering, file-based routing, auto-imports, and a powerful module system. It uses Nitro as its server engine for universal deployment across Node.js, serverless, and edge platforms. The skill is based on Nuxt 3.x, generated at 2026-01-28. Core Topic Description Reference Directory Structure Project folder structure, conventions, file organization core-directory-structure Configuration nuxt.config.ts, app.config.ts, runtime config, env...
3K
735 azure-pricing github/awesome-copilot
Azure Pricing Skill Use this skill to retrieve real-time Azure retail pricing data from the public Azure Retail Prices API. No authentication is required. When to Use This Skill User asks about the cost of an Azure service (e.g., "How much does a D4s v5 VM cost?") User wants to compare pricing across regions or SKUs User needs a cost estimate for a workload or architecture User mentions Azure pricing, Azure costs, or Azure billing User asks about reserved instance vs. pay-as-you-go pricing User ...
3K
736 gen-paylink-govilo hau823823/gen-paylink-govilo
Govilo To Go Turn any file into a paid unlock link — one command to package, upload, and collect crypto payments. The last mile of automation: from creation to monetization. Before Running Always ask the user for these values before executing the CLI — never guess or use placeholders: title — What is the product name? price — How much to charge (in USDC)? description — Short description of the product (optional, but always ask) CLI Command Requires uv . See references/setup-guide.md for install ...
3K
737 anti-reversing-techniques wshobson/agents
AUTHORIZED USE ONLY: This skill contains dual-use security techniques. Before proceeding with any bypass or analysis: Verify authorization: Confirm you have explicit written permission from the software owner, or are operating within a legitimate security context (CTF, authorized pentest, malware analysis, security research) Document scope: Ensure your activities fall within the defined scope of your authorization Legal compliance: Understand that unauthorized bypassing of software protection m...
3K
738 defi-protocol-templates wshobson/agents
DeFi Protocol Templates Production-ready templates for common DeFi protocols including staking, AMMs, governance, lending, and flash loans. When to Use This Skill Building staking platforms with reward distribution Implementing AMM (Automated Market Maker) protocols Creating governance token systems Developing lending/borrowing protocols Integrating flash loan functionality Launching yield farming platforms Staking Contract // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@open...
3K
739 sast-configuration wshobson/agents
SAST Configuration Static Application Security Testing (SAST) tool setup, configuration, and custom rule creation for comprehensive security scanning across multiple programming languages. Overview This skill provides comprehensive guidance for setting up and configuring SAST tools including Semgrep, SonarQube, and CodeQL. Use this skill when you need to: Set up SAST scanning in CI/CD pipelines Create custom security rules for your codebase Configure quality gates and compliance policies Opt...
3K
740 threat-mitigation-mapping wshobson/agents
Threat Mitigation Mapping Connect threats to controls for effective security planning. When to Use This Skill Prioritizing security investments Creating remediation roadmaps Validating control coverage Designing defense-in-depth Security architecture review Risk treatment planning Core Concepts 1. Control Categories Preventive ────► Stop attacks before they occur │ (Firewall, Input validation) │ Detective ─────► Identify attacks in progress │ (IDS, Log monito...
3K
741 elysiajs elysiajs/skills
ElysiaJS Development Skill Always consult elysiajs.com/llms.txt for code examples and latest API. Overview ElysiaJS is a TypeScript framework for building Bun-first (but not limited to Bun) type-safe, high-performance backend servers. This skill provides comprehensive guidance for developing with Elysia, including routing, validation, authentication, plugins, integrations, and deployment. When to Use This Skill Trigger this skill when the user asks to: Create or modify ElysiaJS routes, han...
3K
742 image-generation supercent-io/skills-template
Image Generation via MCP AI image generation skill via MCP. Use Gemini models or compatible services to generate high-quality images for marketing, UI, and presentations. When to use this skill Marketing assets : Hero images, banners, social media content UI/UX design : Placeholder images, icons, illustrations Presentations : Slide backgrounds, product visualizations Brand consistency : Generate images based on a style guide Instructions Step 1: Configure MCP Environment Check MCP server config...
3K
743 team-composition-analysis wshobson/agents
Team Composition Analysis Design optimal team structures, hiring plans, compensation strategies, and equity allocation for early-stage startups from pre-seed through Series A. Overview Build the right team at the right time with appropriate compensation and equity. Plan role-by-role hiring aligned with revenue milestones, budget constraints, and market benchmarks. Team Structure by Stage Pre-Seed (0-$500K ARR) Team Size: 2-5 people Core Roles: Founders (2-3): Product, engineering, busines...
3K
744 stride-analysis-patterns wshobson/agents
STRIDE Analysis Patterns Systematic threat identification using the STRIDE methodology. When to Use This Skill Starting new threat modeling sessions Analyzing existing system architecture Reviewing security design decisions Creating threat documentation Training teams on threat identification Compliance and audit preparation Core Concepts 1. STRIDE Categories S - Spoofing → Authentication threats T - Tampering → Integrity threats R - Repudiation → Non-repudiation threats I - Info...
3K
745 attack-tree-construction wshobson/agents
Attack Tree Construction Systematic attack path visualization and analysis. When to Use This Skill Visualizing complex attack scenarios Identifying defense gaps and priorities Communicating risks to stakeholders Planning defensive investments Penetration test planning Security architecture review Core Concepts 1. Attack Tree Structure [Root Goal] | ┌────────────┴────────────┐ │ │ [Sub-goal 1] ...
3K
746 employment-contract-templates wshobson/agents
Employment Contract Templates Templates and patterns for creating legally sound employment documentation including contracts, offer letters, and HR policies. When to Use This Skill Drafting employment contracts Creating offer letters Writing employee handbooks Developing HR policies Standardizing employment documentation Onboarding documentation Core Concepts 1. Employment Document Types Document Purpose When Used Offer Letter Initial job offer Pre-hire Employment Contract Formal agreement Hir...
2.9K
747 binary-analysis-patterns wshobson/agents
Binary Analysis Patterns Comprehensive patterns and techniques for analyzing compiled binaries, understanding assembly code, and reconstructing program logic. Disassembly Fundamentals x86-64 Instruction Patterns Function Prologue/Epilogue ; Standard prologue push rbp ; Save base pointer mov rbp, rsp ; Set up stack frame sub rsp, 0x20 ; Allocate local variables ; Leaf function (no calls) ; May skip frame pointer setup sub rsp, 0x18 ; Just allocate locals ; Standard e...
2.9K
748 clerk clerk/skills
Based on what you're trying to do, here's the right skill to use: By Task Adding Clerk to your project → Use `clerk-setup` - Framework detection and quickstart - Environment setup, API keys, Keyless flow - Migration from other auth providers Custom sign-in/sign-up UI → Use `clerk-custom-ui` - Custom authentication flows - Appearance and styling - OAuth, magic links, passkeys, MFA Advanced Next.js patterns → Use `clerk-nextjs-patterns` - Server vs Client auth APIs - Middleware strate...
2.9K
749 track-management wshobson/agents
Track Management Guide for creating, managing, and completing Conductor tracks - the logical work units that organize features, bugs, and refactors through specification, planning, and implementation phases. When to Use This Skill Creating new feature, bug, or refactor tracks Writing or reviewing spec.md files Creating or updating plan.md files Managing track lifecycle from creation to completion Understanding track status markers and conventions Working with the tracks.md registry Interpretin...
2.9K
750 mcp integration anthropics/claude-code
MCP Integration for Claude Code Plugins Overview Model Context Protocol (MCP) enables Claude Code plugins to integrate with external services and APIs by providing structured tool access. Use MCP integration to expose external service capabilities as tools within Claude Code. Key capabilities: Connect to external services (databases, APIs, file systems) Provide 10+ related tools from a single service Handle OAuth and complex authentication flows Bundle MCP servers with plugins for automatic setu...
2.9K