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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,531
总 Skills
93.7M
总安装量
2,585
贡献者
# Skill 仓库 描述 安装量
12501 skill-publisher joeseesun/skill-publisher
Skill Publisher 一键将 Claude Code Skill 发布到 GitHub,自动完成验证、补全、推送全流程。 前置条件 gh CLI 已安装且已登录( gh auth status ) Skill 目录包含有效的 SKILL.md (含 YAML frontmatter name + description ) 发布流程 当用户要求发布 skill 时,运行发布脚本: python3 ~/.claude/skills/skill-publisher/scripts/publish_skill.py < skill_dir > 确定 skill 目录 如果用户说"发布这个 skill"且当前在某个 skill 目录 → 用当前目录 如果用户指定了 skill 名称 → 在 ~/.claude/skills/ 下查找 如果不确定 → 问用户要发布哪个 skill 脚本自动完成的步骤 验证 SKILL.md 的 YAML frontmatter(name + description) 检查 gh CLI 就绪状态 创建 LICENSE(MIT,如果缺少) 生成 READ...
233
12502 playwright-blazor-testing aaronontheweb/dotnet-skills
Use this skill when: - Writing end-to-end UI tests for Blazor Server or WebAssembly applications - Testing interactive components, forms, and user workflows - Verifying authentication and authorization flows - Testing SignalR-based real-time updates in Blazor Server - Capturing screenshots for visual regression testing - Testing responsive designs and mobile emulation - Debugging UI issues with browser developer tools Core Principles - Wait for Rendering - Blazor renders asynchronously...
233
12503 eve-local-dev-loop incept5/eve-skillpacks
Eve Local Dev Loop (Docker Compose) Use this skill to run and test the app locally with Docker Compose, then hand off to Eve for staging deploys. Preconditions A compose.yaml or docker-compose.yml exists in the repo. The Eve manifest ( .eve/manifest.yaml ) reflects the same services and ports. Local Run Start local services docker compose up --build View logs docker compose logs -f Stop and clean docker compose down -v Keep Compose and Manifest in Sync Match service names and exposed ports be...
233
12504 clerk-authentication mindrally/skills
Clerk Authentication You are an expert in Clerk authentication implementation for Next.js applications. Follow these guidelines when integrating Clerk. Core Principles Implement defense-in-depth with multiple authentication layers Verify authentication at every data access point, not just middleware Protect server actions individually Use Clerk's built-in security features (HttpOnly cookies, CSRF protection) Installation and Setup npm install @clerk/nextjs Environment Variables Required NEXT...
233
12505 rollup-bundler mindrally/skills
Rollup Bundler You are an expert in Rollup.js, the JavaScript module bundler optimized for ES modules and library development. Follow these guidelines when working with Rollup configurations. Core Principles Rollup is designed for ES modules and produces cleaner, smaller bundles Superior tree-shaking through deep execution path analysis Ideal for libraries and packages that will be consumed by other projects Focus on producing efficient, readable output code Project Structure project/ ├── src/...
233
12506 api-design aaronontheweb/dotnet-skills
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
233
12507 nansen-wallet-manager nansen-ai/nansen-cli
Wallet Auth Setup Save API key (non-interactive) nansen login --api-key < key > Or via env var: NANSEN_API_KEY = < key > nansen login Verify nansen research profiler labels --address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 --chain ethereum Wallet Providers The CLI supports two wallet providers: Local (default) Privy (server-side) Key storage Encrypted on disk Server-side via Privy API Password required Yes (min 12 chars) No Export private keys Yes ( wallet export ) No — keys are managed by...
233
12508 uniprot-database davila7/claude-code-templates
UniProt Database Access Prerequisites uv : Read the uv skill and follow its Setup instructions to ensure uv is installed and on PATH. User Notification : If LICENSE_NOTIFICATION.txt does not already exist in this skill directory then (1) prominently notify the user to check the terms at https://www.uniprot.org/help/license and https://www.uniprot.org/help/api_queries , then (2) create the file recording the notification text and timestamp. Overview Provides direct programmatic access to the UniP...
233
12509 graphql davila7/claude-code-templates
GraphQL You're a developer who has built GraphQL APIs at scale. You've seen the N+1 query problem bring down production servers. You've watched clients craft deeply nested queries that took minutes to resolve. You know that GraphQL's power is also its danger. Your hard-won lessons: The team that didn't use DataLoader had unusable APIs. The team that allowed unlimited query depth got DDoS'd by their own clients. The team that made everything nullable couldn't distinguish errors from empty data....
233
12510 mypy bobmatnyc/claude-mpm-skills
mypy - Static Type Checking for Python Overview mypy is the standard static type checker for Python, enabling gradual typing with type hints (PEP 484) and comprehensive type safety. It catches type errors before runtime, improves code documentation, and enhances IDE support while maintaining Python's dynamic nature through incremental adoption. Key Features: Gradual typing: Add types incrementally to existing code Strict mode: Maximum type safety with --strict flag Type inference: Automatical...
232
12511 hono-rpc bobmatnyc/claude-mpm-skills
Hono RPC - Type-Safe Client Overview Hono RPC enables sharing API specifications between server and client through TypeScript's type system. Export your server's type, and the client automatically knows all routes, request shapes, and response types - no code generation required. Key Features: Zero-codegen type-safe client Automatic TypeScript inference Works with Zod validators Status code-aware response types Supports path params, query, headers When to Use This Skill Use Hono RPC when: B...
232
12512 fastapi-code-review existential-birds/beagle
FastAPI Code Review Quick Reference Issue Type Reference APIRouter setup, response_model, status codes references/routes.md Depends(), yield deps, cleanup, shared deps references/dependencies.md Pydantic models, HTTPException, 422 handling references/validation.md Async handlers, blocking I/O, background tasks references/async.md Review Checklist APIRouter with proper prefix and tags All routes specify response_model for type safety Correct HTTP methods (GET, POST, PUT, DELETE, PATCH) Proper...
232
12513 ccg yeachan-heo/oh-my-claudecode
CCG - Claude-Codex-Gemini Tri-Model Orchestration CCG routes through the canonical /ask skill ( /ask codex + /ask gemini ), then Claude synthesizes both outputs into one answer. Use this when you want parallel external perspectives without launching tmux team workers. When to Use Backend/analysis + frontend/UI work in one request Code review from multiple perspectives (architecture + design/UX) Cross-validation where Codex and Gemini may disagree Fast advisor-style parallel input without team ru...
232
12514 deployment-pipeline-design sickn33/antigravity-awesome-skills
Deployment Pipeline Design Architecture patterns for multi-stage CI/CD pipelines with approval gates, deployment strategies, and environment promotion workflows. Purpose Design robust, secure deployment pipelines that balance speed with safety through proper stage organization, automated quality gates, and progressive delivery strategies. This skill covers both the structural design of pipeline architecture and the operational patterns for reliable production deployments. Input / Output What You...
232
12515 android-retrofit new-silvermoon/awesome-android-agent-skills
Android Networking with Retrofit Instructions When implementing network layers using Retrofit , follow these modern Android best practices (2025). 1. URL Manipulation Retrofit allows dynamic URL updates through replacement blocks and query parameters. Dynamic Paths : Use {name} in the relative URL and @Path("name") in parameters. Query Parameters : Use @Query("key") for individual parameters. Complex Queries : Use @QueryMap Map<String, String> for dynamic sets of parameters. interface SearchServ...
232
12516 protocol-reverse-engineering sickn33/antigravity-awesome-skills
Protocol Reverse Engineering Comprehensive techniques for capturing, analyzing, and documenting network protocols for security research, interoperability, and debugging. Traffic Capture Wireshark Capture Capture on specific interface wireshark -i eth0 -k Capture with filter wireshark -i eth0 -k -f "port 443" Capture to file tshark -i eth0 -w capture.pcap Ring buffer capture (rotate files) tshark -i eth0 -b filesize:100000 -b files:10 -w capture.pcap tcpdump Capture Basic capture tcpdu...
232
12517 eve-job-debugging incept5/eve-skillpacks
Eve Job Debugging CLI-Only Debugging Debug via the Eve CLI exclusively. This replicates the client experience — clients don't have kubectl or host access. Every debugging capability must be available through the CLI. If you find yourself needing system tools to diagnose a job issue, that's a gap in our CLI that should be fixed. Monitor eve job follow <id> to stream logs. eve job wait <id> --timeout 300 --json to wait on completion. eve job result <id> --format text for the latest result. Diagnos...
232
12518 eve-repo-upkeep incept5/eve-skillpacks
Eve Repo Upkeep Keep an app repo current with Eve conventions. The checks are independent — run them in parallel when multiple areas need attention. When to Use After Eve platform updates or manifest schema changes Before a major deploy or release When onboarding a new maintainer Phase 1: Assess Quickly determine which areas need attention. Check which of these files exist and whether they look stale — don't deep-read every file, just note which areas need work: .eve/manifest.yaml — does it exis...
232
12519 eve-read-eve-docs incept5/eve-skillpacks
Eve Read Docs (Load First) Purpose: provide a compact, public, always-available distillation of Eve Horizon system docs. Use this when private system docs are not accessible. When to Use Any question about how to use Eve Horizon via CLI or API. Any question about .eve/manifest.yaml , pipelines, workflows, jobs, or secrets. Any question about events, triggers, agents, teams, builds, or deployments. How to Use Start with references/overview.md for core concepts, IDs, and the reference index. Use t...
232
12520 skill-creator mrgoonie/claudekit-skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
232
12521 meta-prompt mindrally/skills
Meta-Prompt A collection of meta-prompting techniques for evaluating and analyzing AI responses and solution paths. Response Quality Evaluator A framework for critiquing and reflecting on the quality of responses, providing a score and indicating whether the response has fully solved the question or task. Evaluation Fields Reflections: The critique and reflections on the sufficiency, superfluency, and general quality of the response. Score: Score from 0-10 on the quality of the candidate r...
232
12522 write-judge-prompt hamelsmu/evals-skills
Write LLM-as-Judge Prompt Design a binary Pass/Fail LLM-as-Judge evaluator for one specific failure mode. Each judge checks exactly one thing. Prerequisites Error analysis is complete. The failure mode is identified. You have human-labeled traces for this failure mode (at least 20 Pass and 20 Fail examples). A code-based evaluator cannot check this failure mode. Exhaust code-based options before reaching for a judge — many failure modes that seem subjective reduce to keyword checks, regex, or AP...
232
12523 dna-extraction jwynia/agent-skills
DNA Extraction: Functional Analysis for Adaptation You help extract the functional DNA from existing works. Your role is to identify what makes a work function—not its surface elements, but the underlying structures, relationships, and emotional mechanics that could be preserved in an adaptation. Core Principle The first ideas when adapting are surface elements. The functional DNA is what those elements DO, not what they ARE. Hamlet's prince status is not the DNA—it's a form. The DNA is: "P...
232
12524 gh-pages-deploy aviz85/claude-skills-library
GitHub Pages Deployment Deploy static frontend websites to GitHub Pages using the GitHub CLI. Prerequisites GitHub CLI (gh) installed and authenticated Git installed A frontend project (HTML, CSS, JS) ready to deploy Deployment Workflow 1. Initialize Git Repository (if needed) git init git add . git commit -m "Initial commit" 2. Create GitHub Repository Create public repo (required for free GitHub Pages) gh repo create <repo-name> --public --source=. --push 3. Enable GitHub Pages Enable Gi...
232
12525 linkedin-sales-navigator-alt onewave-ai/claude-skills
LinkedIn Sales Navigator Alternative Find and qualify prospects on LinkedIn without expensive subscriptions. Instructions You are an expert sales intelligence researcher who helps build targeted prospect lists using publicly available LinkedIn data and other business intelligence sources. Your mission is to identify the right people at the right companies for outreach. IMPORTANT COMPLIANCE NOTE: This skill only works with publicly available information and respects LinkedIn's Terms of Servic...
232
12526 supabase-automation sickn33/antigravity-awesome-skills
Supabase Automation via Rube MCP Automate Supabase operations including database queries, table schema inspection, SQL execution, project and organization management, storage buckets, edge functions, and service health monitoring through Composio's Supabase toolkit. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Supabase connection via RUBE_MANAGE_CONNECTIONS with toolkit supabase Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : ...
232
12527 startup-metrics-framework sickn33/antigravity-awesome-skills
Startup Metrics Framework Comprehensive guide to tracking, calculating, and optimizing key performance metrics for different startup business models from seed through Series A. Overview Track the right metrics at the right stage. Focus on unit economics, growth efficiency, and cash management metrics that matter for fundraising and operational excellence. Universal Startup Metrics Revenue Metrics MRR (Monthly Recurring Revenue) MRR = Σ (Active Subscriptions × Monthly Price) ARR (Annual R...
232
12528 hono-middleware bobmatnyc/claude-mpm-skills
Hono Middleware Patterns Overview Hono provides a powerful middleware system with an "onion" execution model. Middleware processes requests before handlers and responses after handlers, enabling cross-cutting concerns like authentication, logging, and CORS. Key Features: Onion-style execution order Type-safe middleware creation with createMiddleware 25+ built-in middleware Context variable passing between middleware Async/await support throughout When to Use This Skill Use Hono middleware wh...
231
12529 golang-http-frameworks bobmatnyc/claude-mpm-skills
Go HTTP Frameworks & REST APIs Overview Go provides exceptional HTTP capabilities starting with the standard library's net/http package. Go 1.22+ introduced enhanced pattern routing in ServeMux, making stdlib viable for many applications. For more complex needs, frameworks like Chi, Gin, Echo, and Fiber offer additional features while maintaining Go's simplicity and performance. Key Features: 🌐 net/http: Production-ready standard library with Go 1.22+ routing 🎯 Chi: Lightweight, stdlib-compat...
231
12530 political-scientist-analyst rysweet/amplihack
Analyze events through the disciplinary lens of political science, applying established theoretical frameworks (Realism, Liberalism, Constructivism), comparative political analysis, institutional analysis, and rigorous methodological approaches to understand power dynamics, governance structures, actor interests, strategic interactions, and policy outcomes. When to Use This Skill - International Relations Analysis: Wars, alliances, treaties, international crises, great power competition - Re...
231
12531 cc-skill-project-guidelines-example davila7/claude-code-templates
Project Guidelines Skill (Example) This is an example of a project-specific skill. Use this as a template for your own projects. Based on a real production application: Zenith - AI-powered customer discovery platform. When to Use Reference this skill when working on the specific project it's designed for. Project skills contain: Architecture overview File structure Code patterns Testing requirements Deployment workflow Architecture Overview Tech Stack: Frontend: Next.js 15 (App Router), T...
231
12532 concise-planning davila7/claude-code-templates
Concise Planning Goal Turn a user request into a single, actionable plan with atomic steps. Workflow 1. Scan Context Read README.md, docs, and relevant code files. Identify constraints (language, frameworks, tests). 2. Minimal Interaction Ask at most 1–2 questions and only if truly blocking. Make reasonable assumptions for non-blocking unknowns. 3. Generate Plan Use the following structure: Approach: 1-3 sentences on what and why. Scope: Bullet points for "In" and "Out". Action Items: A list...
231
12533 gcp-cloud-run davila7/claude-code-templates
GCP Cloud Run Patterns Cloud Run Service Pattern Containerized web service on Cloud Run When to use: ['Web applications and APIs', 'Need any runtime or library', 'Complex services with multiple endpoints', 'Stateless containerized workloads'] ```dockerfile Dockerfile - Multi-stage build for smaller image FROM node:20-slim AS builder WORKDIR /app COPY package*.json ./ RUN npm ci --only=production FROM node:20-slim WORKDIR /app Copy only production dependencies COPY --from=builder /app/node...
231
12534 cc-skill-strategic-compact davila7/claude-code-templates
cc-skill-strategic-compact Development skill skill.
231
12535 api fuzzing for bug bounty davila7/claude-code-templates
API Fuzzing for Bug Bounty Purpose Provide comprehensive techniques for testing REST, SOAP, and GraphQL APIs during bug bounty hunting and penetration testing engagements. Covers vulnerability discovery, authentication bypass, IDOR exploitation, and API-specific attack vectors. Inputs/Prerequisites Burp Suite or similar proxy tool API wordlists (SecLists, api_wordlist) Understanding of REST/GraphQL/SOAP protocols Python for scripting Target API endpoints and documentation (if available) Outputs/...
231
12536 internal-comms davila7/claude-code-templates
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
231
12537 setup-tooluniverse mims-harvard/tooluniverse
Setup ToolUniverse Guide the user step-by-step through setting up ToolUniverse. Agent Behavior Detect language from user's first message. Respond in their language; keep commands/URLs in English. Go one step at a time . Ask before proceeding. Use AskQuestion for structured choices. Explain briefly in plain language. Celebrate small wins. When something goes wrong, help troubleshoot before moving on. Internal Notes (do not show) ToolUniverse has 1200+ tools. The tooluniverse command enables compa...
231
12538 direct-response-copy sanky369/vibe-building-skills
Direct Response Copy Skill Overview Direct Response Copy is copy designed to get a specific action (click, signup, purchase). This skill teaches you the architecture and principles of persuasive copy. Keywords: copywriting, sales copy, persuasion, conversion copy, landing page copy, direct response, copywriting principles Core Methodology Direct response copy follows a specific architecture: Hook — Grab attention immediately Problem — Validate their problem Mechanism — Explain your unique m...
231
12539 docker-expert personamanagmentlayer/pcl
Docker Expert You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices. When invoked: If the issue requires ultra-specific expertise outside Docker, recommend switching and stop: Kubernetes orchestration, pods, services, ingress → kubernetes-expert (future) GitHub Actions CI/CD with containers → ...
231
12540 git-pr-workflows-onboard sickn33/antigravity-awesome-skills
Onboard You are an expert onboarding specialist and knowledge transfer architect with deep experience in remote-first organizations, technical team integration, and accelerated learning methodologies. Your role is to ensure smooth, comprehensive onboarding that transforms new team members into productive contributors while preserving institutional knowledge. Use this skill when Working on onboard tasks or workflows Needing guidance, best practices, or checklists for onboard Do not use this skill...
231
12541 fal-upscale fal-ai-community/skills
fal-upscale Curated from the fal.ai community team. What it does Upscale and enhance image and video resolution using AI super-resolution models hosted on fal.ai. Source Upstream: https://github.com/fal-ai-community/skills Category: image-generation How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scripts, and references, install the upstream bundle into your active agent's s...
231
12542 eve-troubleshooting incept5/eve-skillpacks
Eve Troubleshooting Use CLI-first diagnostics. Do not assume cluster access. Quick Triage Checklist eve system health eve auth status eve job list --phase active Common Issues and Fixes Auth Fails or "Not authenticated" eve auth logout eve auth login eve auth status If SSH key is missing, register it with the admin or follow the CLI prompt to fetch from GitHub. Secret Missing / Interpolation Error eve secrets list --project proj_xxx eve secrets set MISSING_KEY "value" --project proj_xxx Verify ....
231
12543 eve-pipelines-workflows incept5/eve-skillpacks
Eve Pipelines and Workflows Use these patterns to automate build and deploy actions and invoke workflow jobs. Pipelines (v2 steps) Define pipelines under pipelines in .eve/manifest.yaml . Steps can be action , script , or agent . Use depends_on to control ordering. Built-in actions include build , release , deploy , run , job , create-pr . Run manually: eve pipeline list eve pipeline show <project> <name> eve pipeline run <name> --ref <sha> --env <env> --repo-dir ./my-app Trigger blocks exist in...
231
12544 eve-cli-primitives incept5/eve-skillpacks
Eve CLI Primitives Use this skill as the command map for Eve. Keep examples short and concrete. Profiles (API Target + Defaults) Create and use a profile eve profile create staging --api-url https://api.eh1.incept5.dev eve profile use staging Set defaults to avoid repeating flags eve profile set --default-email you@example.com --default-ssh-key ~/.ssh/id_ed25519 eve profile set --org org_xxx --project proj_xxx Inspect current profile eve profile show Authentication eve auth login eve auth sta...
231
12545 graalvm mindrally/skills
GraalVM You are an expert in Java programming, GraalVM native builds, Quarkus framework, Micronaut framework, Jakarta EE, MicroProfile, Vert.x for event-driven applications, Maven, JUnit, and related Java technologies. Code Style and Structure Write clean, efficient, and well-documented Java code optimized for GraalVM native compilation Follow framework-specific conventions (Quarkus, Micronaut, Spring Native) while ensuring GraalVM compatibility Use descriptive method and variable names follow...
231
12546 localization-l10n mindrally/skills
Localization (l10n) You are an expert in localization for web and mobile applications. Apply these guidelines to adapt internationalized applications for specific regions, languages, and cultures. Core Principles Localization (l10n) builds on internationalization (i18n) Ensure all user-facing text supports localization Adapt content for cultural appropriateness Respect regional conventions for dates, numbers, and currency Design for content that varies significantly between locales Localizatio...
231
12547 graphql-development mindrally/skills
GraphQL Development You are an expert in GraphQL development with type-safe clients and modern web frameworks. Core Principles Design schemas with clear, consistent naming Use type-safe clients for all GraphQL operations Optimize queries to fetch only necessary data Implement proper error handling Schema Design Types and Fields Use descriptive type names in PascalCase Field names in camelCase Use nullable types appropriately Implement input types for mutations Use enums for fixed value sets Re...
231
12548 database-performance aaronontheweb/dotnet-skills
Use this skill when: - Designing data access layers - Optimizing slow database queries - Choosing between EF Core and Dapper - Avoiding common performance pitfalls Core Principles - Separate read and write models - Don't use the same types for both - Think in batches - Avoid N+1 queries - Only retrieve what you need - No SELECT * - Apply row limits - Always have a configurable Take/Limit - Do joins in SQL - Never in application code - AsNoTracking for reads - EF Core change tracking ...
231
12549 data-exploration anthropics/knowledge-work-plugins
Data Exploration Skill Systematic methodology for profiling datasets, assessing data quality, discovering patterns, and understanding schemas. Data Profiling Methodology Phase 1: Structural Understanding Before analyzing any data, understand its structure: Table-level questions: How many rows and columns? What is the grain (one row per what)? What is the primary key? Is it unique? When was the data last updated? How far back does the data go? Column classification: Categorize each column as one ...
230
12550 eve-project-bootstrap incept5/eve-skillpacks
Eve Project Bootstrap Use this flow to connect an existing repo to Eve and get the first deploy running. Set the API Target Get the staging API URL from your admin. Create and use a profile: eve profile create staging --api-url https://api.eh1.incept5.dev eve profile use staging Create Org and Project eve org ensure my-org --slug myorg eve project ensure --name "My App" --slug my-app --repo-url git@github.com:me/my-app.git --branch main URL impact: These slugs determine your deployment URLs and ...
230