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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,541
总 Skills
94.0M
总安装量
2,585
贡献者
# Skill 仓库 描述 安装量
12501 cobrapy davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
234
12502 pufferlib davila7/claude-code-templates
PufferLib - High-Performance Reinforcement Learning Overview PufferLib is a high-performance reinforcement learning library designed for fast parallel environment simulation and training. It achieves training at millions of steps per second through optimized vectorization, native multi-agent support, and efficient PPO implementation (PuffeRL). The library provides the Ocean suite of 20+ environments and seamless integration with Gymnasium, PettingZoo, and specialized RL frameworks. When to Use T...
234
12503 qutip davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
234
12504 gepetto davila7/claude-code-templates
Gepetto Orchestrates a multi-step planning process: Research → Interview → Spec Synthesis → Plan → External Review → Sections CRITICAL: First Actions BEFORE anything else, do these in order: 1. Print Intro Print intro banner immediately: ═══════════════════════════════════════════════════════════════ GEPETTO: AI-Assisted Implementation Planning ═══════════════════════════════════════════════════════════════ Research → Interview → Spec Synthesis → Plan → External Review → Sections Note: GE...
234
12505 torchdrug davila7/claude-code-templates
TorchDrug Overview TorchDrug is a comprehensive PyTorch-based machine learning toolbox for drug discovery and molecular science. Apply graph neural networks, pre-trained models, and task definitions to molecules, proteins, and biological knowledge graphs, including molecular property prediction, protein modeling, knowledge graph reasoning, molecular generation, retrosynthesis planning, with 40+ curated datasets and 20+ model architectures. When to Use This Skill This skill should be used when wo...
234
12506 autoship vercel-labs/autoship
Automated Releases with autoship Core Workflow Every release follows this pattern: Configure : autoship add <name> (one-time setup) Release : autoship <name> (interactive) or autoship <name> -t patch -y (automated) The tool handles the complete release cycle: Clone repository Analyze changes and suggest release type (patch/minor/major) Generate AI-powered changeset description Create and merge changeset PR Wait for and merge Version Packages PR Trigger npm publish Requirements Before using autos...
234
12507 hugging-face-jobs huggingface/skills
Running Workloads on Hugging Face Jobs Overview Run any workload on fully managed Hugging Face infrastructure. No local setup required—jobs run on cloud CPUs, GPUs, or TPUs and can persist results to the Hugging Face Hub. Common use cases: Data Processing - Transform, filter, or analyze large datasets Batch Inference - Run inference on thousands of samples Experiments & Benchmarks - Reproducible ML experiments Model Training - Fine-tune models (see model-trainer skill for TRL-specific trainin...
233
12508 axiom-liquid-glass charleswiltgen/axiom
Liquid Glass — Apple's New Material Design System When to Use This Skill Use when: Implementing Liquid Glass effects in your app Reviewing existing UI for Liquid Glass adoption opportunities Debugging visual artifacts with Liquid Glass materials Optimizing Liquid Glass performance Requesting expert review of Liquid Glass implementation Understanding when to use Regular vs Clear variants Troubleshooting tinting, legibility, or adaptive behavior issues Related Skills Use axiom-liquid-glass-ref f...
233
12509 git-commit everyinc/compound-engineering-plugin
Git Commit with Conventional Commits Overview Create standardized, semantic git commits using the Conventional Commits specification. Analyze the actual diff to determine appropriate type, scope, and message. Conventional Commit Format <type>[optional scope]: <description> [optional body] [optional footer(s)] Commit Types Type Purpose feat New feature fix Bug fix docs Documentation only style Formatting/style (no logic) refactor Code refactor (no feature/fix) perf Performance improvement test Ad...
233
12510 deploy-docs everyinc/compound-engineering-plugin
Deploy Documentation Command Validate the documentation site and prepare it for GitHub Pages deployment. Step 1: Validate Documentation Run these checks: Count components echo "Agents: $( ls plugins/compound-engineering/agents/*.md | wc -l ) " echo "Skills: $( ls -d plugins/compound-engineering/skills/*/ 2 > /dev/null | wc -l ) " Validate JSON cat .claude-plugin/marketplace.json | jq . > /dev/null && echo "✓ marketplace.json valid" cat plugins/compound-engineering/.claude-plugin/plugin.json | ...
233
12511 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
12512 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
12513 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
12514 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
12515 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
12516 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
12517 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
12518 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
12519 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
12520 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
12521 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
12522 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
12523 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
12524 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
12525 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
12526 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
12527 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
12528 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
12529 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
12530 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
12531 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
12532 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
12533 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
12534 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
12535 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
12536 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
12537 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
12538 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
12539 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
12540 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
12541 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
12542 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
12543 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
12544 cc-skill-strategic-compact davila7/claude-code-templates
cc-skill-strategic-compact Development skill skill.
231
12545 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
12546 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
12547 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
12548 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
12549 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
12550 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