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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
4701 math-router parcadei/continuous-claude-v3
Math Router ALWAYS use this router first for math requests. Instead of reading individual skill documentation, call the router to get the exact command: Usage Route any math intent to get the CLI command uv run python scripts/cc_math/math_router.py route "<user's math request>" Example Workflow User says: "integrate sin(x) from 0 to pi" You run: uv run python scripts/cc_math/math_router.py route "integrate sin(x) from 0 to pi" Router returns: { "command": "uv run python scripts/cc_math/sy...
182
4702 weights-and-biases davila7/claude-code-templates
Weights & Biases: ML Experiment Tracking & MLOps When to Use This Skill Use Weights & Biases (W&B) when you need to: Track ML experiments with automatic metric logging Visualize training in real-time dashboards Compare runs across hyperparameters and configurations Optimize hyperparameters with automated sweeps Manage model registry with versioning and lineage Collaborate on ML projects with team workspaces Track artifacts (datasets, models, code) with lineage Users: 200,000+ ML practitioners...
182
4703 firebase-cli supercent-io/skills-template
firebase-cli — Firebase Command Line Interface Keyword : firebase · firebase deploy · firebase init · firebase emulators The Firebase CLI ( firebase-tools ) manages your Firebase project from the terminal: deploy, emulate, import/export data, manage users, configure services, and automate CI/CD. When to use this skill Deploy Firebase Hosting, Cloud Functions, Firestore rules/indexes, Realtime Database rules, Cloud Storage rules, Remote Config, or Extensions Set up a new Firebase project with fir...
182
4704 sentry-setup-metrics getsentry/sentry-agent-skills
Setup Sentry Metrics Configure Sentry's custom metrics for tracking counters, gauges, and distributions. Invoke This Skill When User asks to "add Sentry metrics" or "track custom metrics" User wants counters, gauges, or distributions User asks about Sentry.metrics or sentry_sdk.metrics Quick Reference Platform Min SDK API JavaScript 10.25.0+ Sentry.metrics.* Python 2.44.0+ sentry_sdk.metrics.* Note: Ruby does not have metrics support. Metric Types Type Purpose Example Use Cases Counter Cumul...
182
4705 firecrawl connorads/dotfiles
Firecrawl CLI Web scraping, search, and browser automation CLI. Returns clean markdown optimized for LLM context windows. Run firecrawl --help or firecrawl <command> --help for full option details. Prerequisites Must be installed and authenticated. Check with firecrawl --status . 🔥 firecrawl cli v1.8.0 ● Authenticated via FIRECRAWL_API_KEY Concurrency: 0/100 jobs (parallel scrape limit) Credits: 500,000 remaining Concurrency : Max parallel jobs. Run parallel operations up to this limit. Credits ...
182
4706 commit parcadei/continuous-claude-v3
Sentry Commit Messages Follow these conventions when creating commits for Sentry projects. Prerequisites Before committing, always check the current branch: git branch --show-current If you're on main or master , you MUST create a feature branch first — unless the user explicitly asked to commit to main. Do not ask the user whether to create a branch; just proceed with branch creation. The create-branch skill will still propose a branch name for the user to confirm. Use the create-branch skill t...
182
4707 tamagui-best-practices 0xbigboss/claude-code
This skill provides patterns for Tamagui v1.x that go beyond fundamentals. It focuses on Config v4, compiler optimization, compound components, and common mistakes. Mandatory Context Loading When working with these components, read the corresponding pattern file BEFORE writing code: Component Type Required Reading Cross-Skills Dialog, Sheet, modal overlays @DIALOG_PATTERNS.md Form, Input, Label, validation @FORM_PATTERNS.md typescript-best-practices (zod) Animations, transitions @ANIMATION_P...
182
4708 accessibility-audit webflow/webflow-skills
Accessibility Audit Comprehensive WCAG 2.1 accessibility audit for Webflow pages with detailed issue detection and actionable fixes. Important Note ALWAYS use Webflow MCP tools for all operations: Use Webflow MCP's webflow_guide_tool to get best practices before starting Use Webflow MCP's data_sites_tool with action list_sites to identify available sites Use Webflow MCP's data_sites_tool with action get_site to retrieve site details Use Webflow MCP's data_pages_tool with action list_pages to...
182
4709 stripe-integration davila7/claude-code-templates
Stripe Integration Master Stripe payment processing integration for robust, PCI-compliant payment flows including checkout, subscriptions, webhooks, and refunds. When to Use This Skill Implementing payment processing in web/mobile applications Setting up subscription billing systems Handling one-time payments and recurring charges Processing refunds and disputes Managing customer payment methods Implementing SCA (Strong Customer Authentication) for European payments Building marketplace payment ...
182
4710 frontend-accessibility-best-practices sergiodxa/agent-skills
Accessibility patterns for building inclusive React applications following WCAG standards. Contains 7 rules across 4 categories focused on semantic HTML, screen reader support, keyboard navigation, and user preferences. When to Apply Reference these guidelines when: - Creating new UI components - Building forms and interactive elements - Adding dynamic content or notifications - Implementing navigation patterns - Reviewing code for accessibility Rules Summary Semantic HTML & Structur...
182
4711 software-engineer siviter-xyz/dot-agent
Software Engineering Principles Core principles and preferences for code style, documentation, and development workflow. Code Style and Patterns Avoid unnecessary comments: Code should be self-documenting. Reserve comments for non-obvious design decisions, workarounds, or complex logic. Avoid comments that restate what the code obviously does. Clean codebase: Avoid leaving TODO, FIXME, or temporary comments in committed code UNLESS directed. Either implement the feature, create an issue, or ...
182
4712 tldr-overview parcadei/continuous-claude-v3
TLDR Project Overview Get a token-efficient overview of any project using the TLDR stack. Trigger /overview or /tldr-overview "give me an overview of this project" "what's in this codebase" Starting work on an unfamiliar project Execution 1. File Tree (Navigation Map) tldr tree . --ext .py or .ts, .go, .rs 2. Code Structure (What Exists) tldr structure src/ --lang python --max 50 Returns: functions, classes, imports per file 3. Call Graph Entry Points (Architecture) tldr calls src/ R...
182
4713 cli-reference parcadei/continuous-claude-v3
CLI Reference Complete reference for Claude Code command-line interface. When to Use "What CLI flags are available?" "How do I use headless mode?" "Claude in automation/CI/CD" "Output format options" "System prompt via CLI" "How do I spawn agents properly?" Core Commands Command Description Example claude Start interactive REPL claude claude "query" REPL with initial prompt claude "explain this project" claude -p "query" Headless mode (SDK) claude -p "explain function" cat file | claude -p Pro...
182
4714 resume-handoff parcadei/continuous-claude-v3
Resume work from a handoff document You are tasked with resuming work from a handoff document through an interactive process. These handoffs contain critical context, learnings, and next steps from previous work sessions that need to be understood and continued. Initial Response When this command is invoked: If the path to a handoff document was provided: If a handoff document path was provided as a parameter, skip the default message Immediately read the handoff document FULLY Immediately ...
182
4715 nextjs-data-fetching giuseppe-trisciuoglio/developer-kit
Next.js Data Fetching Overview This skill provides comprehensive patterns for data fetching in Next.js App Router applications. It covers server-side fetching, client-side libraries integration, caching strategies, error handling, and loading states. When to Use Use this skill for: Implementing data fetching in Next.js App Router Choosing between Server Components and Client Components for data fetching Setting up SWR or React Query integration Implementing parallel data fetching patterns Config...
182
4716 pocketbase-best-practices greendesertsnow/pocketbase-skills
PocketBase Best Practices 42 rules across 8 categories for PocketBase v0.36+, prioritized by impact. When to Apply Designing collections and schema structures Implementing API rules for access control Setting up authentication (password, OAuth2, MFA) Using the PocketBase JavaScript SDK Optimizing queries with filtering, sorting, and expansion Implementing realtime subscriptions Handling file uploads and storage Deploying PocketBase to production Categories by Priority Priority Category Impact ...
182
4717 java-performance pluginagentmarketplace/custom-plugin-java
Optimize JVM performance through profiling, GC tuning, and memory analysis. Overview This skill covers JVM performance optimization including garbage collection tuning, memory analysis, CPU profiling, and benchmarking with JMH. When to Use This Skill Use when you need to: - Tune GC for low latency or throughput - Profile CPU hotspots - Analyze memory leaks - Benchmark code performance - Optimize container settings Quick Reference GC Presets ``` High-throughput -XX:+UseG1GC -XX:M...
182
4718 completion-check parcadei/continuous-claude-v3
Completion Check: Verify Infrastructure Is Wired When building infrastructure, verify it's actually connected to the system before marking as complete. Pattern Infrastructure is not done when the code is written - it's done when it's wired into the system and actively used. Dead code (built but never called) is wasted effort. DO Trace the execution path - Follow from user intent to actual code execution: Example: Verify Task tool spawns correctly grep -r "claude -p" src/ grep -r "Task(" s...
182
4719 cookbook-audit anthropics/claude-cookbooks
Cookbook Audit Instructions Review the requested Cookbook notebook using the guidelines and rubrics in style_guide.md. Provide a score based on scoring guidelines and recommendations on improving the cookbook. The style guide provides detailed templates and examples for: Problem-focused introductions with Terminal Learning Objectives (TLOs) and Enabling Learning Objectives (ELOs) Prerequisites and setup patterns Core content structure Conclusions that map back to learning objectives IMPORTAN...
181
4720 llm-models inference-sh/skills
LLM Models via OpenRouter Access 100+ language models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Call Claude Sonnet infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}' Available Models Model App ID Best For Claude Opus 4.5 openrouter/claude-opus-45 Complex reasoning, coding Claude Sonnet 4.5 openrouter/claude-sonnet-45 Balanced performance...
181
4721 mcp-scripts parcadei/continuous-claude-v3
MCP Script Rules When working with files in scripts/: DO Use CLI arguments for all parameters (argparse) Include USAGE docstring at top of file Use call_mcp_tool("server__tool", params) pattern Handle errors gracefully with informative messages Print results to stdout for Claude to process DON'T Hardcode parameters in the script Edit scripts to change parameters (use CLI args instead) Import from servers/ directly (use runtime.mcp_client) Tool Naming Tool IDs use double underscore: serverName...
181
4722 goals boshu2/agentops
/goals — Fitness Goal Maintenance Maintain GOALS.yaml and GOALS.md fitness specifications. Use ao goals CLI for all operations. YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Quick Start /goals Measure fitness (default) /goals init Bootstrap GOALS.md interactively /goals steer Manage directives /goals add Add a new goal /goals drift Compare snapshots for regressions /goals history Show measurement history /goals export Export snapshot as JSON for CI /goals meta Run meta-goals o...
181
4723 pr-address-comments google-gemini/gemini-cli
You are helping the user address comments on their Pull Request. These comments may have come from an automated review agent or a team member. OBJECTIVE: Help the user review and address comments on their PR. Comment Review Procedure Run the scripts/fetch-pr-info.js script to get PR info and state. MAKE SURE you read the entire output of the command, even if it gets truncated. Summarize the review status by analyzing the diff, commit log, and comments to see which still need to be addressed. Pay...
181
4724 dsql awslabs/mcp
Amazon Aurora DSQL Skill Aurora DSQL is a serverless, PostgreSQL-compatible distributed SQL database with specific constraints. This skill provides direct database interaction via MCP tools, schema management, migration support, and multi-tenant patterns. Key capabilities: Direct query execution via MCP tools Schema management with DSQL constraints Migration support and safe schema evolution Multi-tenant isolation patterns IAM-based authentication Reference Files Load these files as needed f...
181
4725 slogan-generator majesticlabs-dev/majestic-marketplace
Marketing Slogan Generator Generate memorable, effective marketing slogans for any product or service. Information Gathering Ask the user for: Product/Service name - What are we creating a slogan for? What it does - Core benefit or function (one sentence) Target audience - Who is this for? Brand personality - (e.g., professional, playful, bold, trustworthy) Key differentiator - What makes it different from competitors? Any words/themes to include or avoid? Slogan Categories Generate 2-3 slogans ...
181
4726 flux-image inference-sh/skills
FLUX Image Generation Generate images with FLUX models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login infsh app run falai/flux-dev-lora --input '{"prompt": "a futuristic city at night"}' FLUX Models Model App ID Speed Quality Use Case FLUX Dev LoRA falai/flux-dev-lora Medium Highest Production, custom styles FLUX.2 Klein LoRA falai/flux-2-klein-lora Fastest Good Fast iteration, 4B/9B...
181
4727 org-planning anthropics/knowledge-work-plugins
Org Planning Help plan organizational structure, headcount, and team design. Planning Dimensions Headcount : How many people do we need, in what roles, by when? Structure : Reporting lines, span of control, team boundaries Sequencing : Which hires are most critical? What's the right order? Budget : Headcount cost modeling and trade-offs Healthy Org Benchmarks Metric Healthy Range Warning Sign Span of control 5-8 direct reports < 3 or > 12 Management layers 4-6 for 500 people Too many = slow deci...
181
4728 tensorrt-llm davila7/claude-code-templates
TensorRT-LLM NVIDIA's open-source library for optimizing LLM inference with state-of-the-art performance on NVIDIA GPUs. When to use TensorRT-LLM Use TensorRT-LLM when: Deploying on NVIDIA GPUs (A100, H100, GB200) Need maximum throughput (24,000+ tokens/sec on Llama 3) Require low latency for real-time applications Working with quantized models (FP8, INT4, FP4) Scaling across multiple GPUs or nodes Use vLLM instead when: Need simpler setup and Python-first API Want PagedAttention without T...
181
4729 braintrust-analyze parcadei/continuous-claude-v3
Braintrust Analysis Analyze your Claude Code sessions for patterns, issues, and insights using Braintrust tracing data. When to Use After completing a complex task (retrospective) When debugging why something failed Weekly review of productivity patterns Finding opportunities to create new skills Understanding token usage trends Commands Run from the project directory: Analyze last session - summary with tool/agent/skill breakdown uv run python -m runtime.harness scripts/braintrust_analyze....
181
4730 recruiting-pipeline anthropics/knowledge-work-plugins
Recruiting Pipeline Help manage the recruiting pipeline from sourcing through offer acceptance. Pipeline Stages Stage Description Key Actions Sourced Identified and reached out Personalized outreach Screen Phone/video screen Evaluate basic fit Interview On-site or panel interviews Structured evaluation Debrief Team decision Calibrate feedback Offer Extending offer Comp package, negotiation Accepted Offer accepted Transition to onboarding Metrics to Track Pipeline velocity : Days per stage Conver...
181
4731 agentica-infrastructure parcadei/continuous-claude-v3
Agentica Infrastructure Reference Complete API specification for Agentica multi-agent coordination infrastructure. When to Use Building multi-agent workflows with Agentica patterns Need exact constructor signatures for pattern classes Want to understand coordination database schema Implementing custom patterns using primitives Debugging agent tracking or orphan detection Quick Reference 11 Pattern Classes Pattern Purpose Key Method Swarm Parallel perspectives .execute(query) Pipeline Sequentia...
181
4732 migrate alirezarezvani/claude-skills
Migrate to Playwright Interactive migration from Cypress or Selenium to Playwright with file-by-file conversion. Input $ARGUMENTS can be: "from cypress" — migrate Cypress test suite "from selenium" — migrate Selenium/WebDriver tests A file path: convert a specific test file Empty: auto-detect source framework Steps 1. Detect Source Framework Use Explore subagent to scan: cypress/ directory or cypress.config.ts → Cypress selenium , webdriver in package.json deps → Selenium .py test files with sel...
181
4733 changelog-generator davila7/claude-code-templates
Changelog Generator This skill transforms technical git commits into polished, user-friendly changelogs that your customers and users will actually understand and appreciate. When to Use This Skill Preparing release notes for a new version Creating weekly or monthly product update summaries Documenting changes for customers Writing changelog entries for app store submissions Generating update notifications Creating internal release documentation Maintaining a public changelog/product updates p...
181
4734 browserstack alirezarezvani/claude-skills
BrowserStack Integration Run Playwright tests on BrowserStack's cloud grid for cross-browser and cross-device testing. Prerequisites Environment variables must be set: BROWSERSTACK_USERNAME — your BrowserStack username BROWSERSTACK_ACCESS_KEY — your access key If not set, inform the user how to get them from browserstack.com/accounts/settings and stop. Capabilities 1. Configure for BrowserStack /pw:browserstack setup Steps: Check current playwright.config.ts Add BrowserStack connect options: // ...
181
4735 codebase-cleanup-tech-debt sickn33/antigravity-awesome-skills
Technical Debt Analysis and Remediation You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create actionable remediation plans. Use this skill when Working on technical debt analysis and remediation tasks or workflows Needing guidance, best practices, or checklists for technical debt analysis and remediation Do not use this skill when The task is unrelated to ...
181
4736 openalex-database davila7/claude-code-templates
OpenAlex Database Overview OpenAlex is a comprehensive open catalog of 240M+ scholarly works, authors, institutions, topics, sources, publishers, and funders. This skill provides tools and workflows for querying the OpenAlex API to search literature, analyze research output, track citations, and conduct bibliometric studies. Quick Start Basic Setup Always initialize the client with an email address to access the polite pool (10x rate limit boost): from scripts.openalex_client import OpenAlex...
181
4737 gmail-workflows claude-office-skills/skills
Gmail Workflows Automate Gmail with intelligent workflows for attachment management, email organization, and Google Drive integration. Based on n8n's 7,800+ workflow templates. Overview This skill helps you design and implement Gmail automation workflows that: Automatically save attachments to Google Drive Organize emails with smart labeling Archive processed emails Send notifications via Slack/Email Track email metrics Core Workflow Templates 1. Gmail Attachment Manager Purpose : Automatically ...
181
4738 ai-slides claude-office-skills/skills
AI Slides Skill Overview This skill enables AI-powered presentation generation. Provide a topic or outline, and get a complete, polished presentation with proper structure, content, and formatting. How to Use Provide a topic, outline, or rough notes Specify audience and presentation length I'll generate a complete presentation Example prompts: "Create a 10-slide presentation about machine learning" "Generate a pitch deck for a SaaS startup" "Build training slides on cybersecurity basics" "Make a...
181
4739 implement_task parcadei/continuous-claude-v3
Implementation Task Agent You are an implementation agent spawned to execute a single task from a larger plan. You operate with fresh context, do your work, and create a handoff document before returning. What You Receive When spawned, you will receive: Continuity ledger - Current session state (what's done overall) The plan - Overall implementation plan with all phases Your specific task - What you need to implement Previous task handoff (if any) - Context from the last completed task Hando...
181
4740 chrome-extension-ui pproenca/dot-skills
Comprehensive UX/UI design guide for Chrome Extensions, optimized for Manifest V3. Contains 42 rules across 8 categories, prioritized by impact to guide extension UI development and code review. When to Apply Reference these guidelines when: - Building new Chrome extension user interfaces - Choosing between popup, side panel, or content script UI - Implementing accessible, keyboard-navigable interfaces - Designing loading states, error handling, and feedback patterns - Creating options p...
181
4741 webgl martinholovsky/claude-skills-generator
WebGL Development Skill File Organization: This skill uses split structure. See references/ for advanced patterns and security examples. 1. Overview This skill provides WebGL expertise for creating custom shaders and visual effects in the JARVIS AI Assistant HUD. It focuses on GPU-accelerated rendering with security considerations. Risk Level: MEDIUM - Direct GPU access, potential for resource exhaustion, driver vulnerabilities Primary Use Cases: Custom shaders for holographic effects Post...
181
4742 nemo-curator davila7/claude-code-templates
NeMo Curator - GPU-Accelerated Data Curation NVIDIA's toolkit for preparing high-quality training data for LLMs. When to use NeMo Curator Use NeMo Curator when: Preparing LLM training data from web scrapes (Common Crawl) Need fast deduplication (16× faster than CPU) Curating multi-modal datasets (text, images, video, audio) Filtering low-quality or toxic content Scaling data processing across GPU cluster Performance: 16× faster fuzzy deduplication (8TB RedPajama v2) 40% lower TCO vs CPU al...
181
4743 morph-apply parcadei/continuous-claude-v3
Morph Fast Apply Fast, AI-powered file editing using the Morph Apply API. Edit files without reading them first. Processes at 10,500 tokens/sec with 98% accuracy. When to Use Fast file edits without reading entire file first Batch edits to a file (multiple changes in one operation) When you know what to change but file is large Large files where reading would consume too many tokens Key Pattern: Code Markers Use // ... existing code ... (or language-appropriate comments) to mark where edits g...
181
4744 firecrawl-scrape parcadei/continuous-claude-v3
Firecrawl Scrape Skill When to Use Scrape content from any URL Extract structured data from web pages Search the web and get content Instructions uv run python -m runtime.harness scripts/mcp/firecrawl_scrape.py \ --url "https://example.com" \ --format "markdown" Parameters --url : URL to scrape --format : Output format - markdown , html , text (default: markdown) --search : (alternative) Search query instead of direct URL Examples Scrape a page uv run python -m runtime.harness scripts/mcp/firec...
181
4745 gguf-quantization davila7/claude-code-templates
GGUF - Quantization Format for llama.cpp The GGUF (GPT-Generated Unified Format) is the standard file format for llama.cpp, enabling efficient inference on CPUs, Apple Silicon, and GPUs with flexible quantization options. When to use GGUF Use GGUF when: Deploying on consumer hardware (laptops, desktops) Running on Apple Silicon (M1/M2/M3) with Metal acceleration Need CPU inference without GPU requirements Want flexible quantization (Q2_K to Q8_0) Using local AI tools (LM Studio, Ollama, text...
181
4746 mcp-chaining parcadei/continuous-claude-v3
MCP Chaining Pipeline A research-to-implement pipeline that chains 5 MCP tools for end-to-end workflows. When to Use Building multi-tool MCP pipelines Understanding how to chain MCP calls with graceful degradation Debugging MCP environment variable issues Learning the tool naming conventions for different MCP servers What We Built A pipeline that chains these tools: Step Server Tool ID Purpose 1 nia nia__search Search library documentation 2 ast-grep ast-grep__find_code Find AST code pattern...
181
4747 cmux-markdown manaflow-ai/cmux
Markdown Viewer with cmux Use this skill to display markdown files in a dedicated panel with rich formatting and live file watching. Core Workflow Write your plan or notes to a .md file. Open it in a markdown panel. The panel auto-updates when the file changes on disk. Open a markdown file as a split panel next to the current terminal cmux markdown open plan.md Absolute path cmux markdown open /path/to/PLAN.md Target a specific workspace cmux markdown open design.md --workspace workspace:2 Wh...
181
4748 whatsapp-automation claude-office-skills/skills
WhatsApp Automation Automate WhatsApp Business communications including customer support, notifications, chatbots, and broadcast messaging. Based on n8n's WhatsApp integration templates. Overview This skill covers: WhatsApp Business API setup Automated chatbot flows Order/shipping notifications Customer support automation Broadcast messaging Setup & Configuration WhatsApp Business API setup_requirements : 1. meta_business_account : - Create at business.facebook.com - Verify business 2. whatsapp_...
181
4749 explicit-identity parcadei/continuous-claude-v3
Explicit Identity Across Boundaries Never rely on "latest" or "current" when crossing process or async boundaries. Pattern Pass explicit identifiers through the entire pipeline. "Most recent" is a race condition. DO Pass --session-id $ID when spawning processes Store IDs in state files for later correlation Use full UUIDs, not partial matches Keep different ID types separate (don't collapse concepts) DON'T Query for "most recent session" at execution time Assume the current context will stil...
180
4750 email-marketing kostja94/marketing-skills
Email Marketing Comprehensive email marketing skill covering campaign creation, automated sequences, A/B testing, segmentation, and deliverability optimization. Overview This skill covers: Email campaign creation and templates Automated drip sequences A/B testing frameworks List segmentation strategies Deliverability best practices Email Types & Templates 1. Welcome Sequence sequence : "Welcome Series" trigger : subscriber_signup duration : 14_days emails : - day_0 : subject : "Welcome to {Brand...
180