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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,105
总 Skills
70.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
9801 ln-302-task-replanner levnikolaevich/claude-code-skills
Worker that re-syncs existing tasks to the latest requirements for any task type. Purpose & Scope - Load full existing task descriptions from Linear - Compare them with orchestrator-provided IDEAL plan (implementation/refactoring/test) - Decide operations (KEEP/UPDATE/OBSOLETE/CREATE) and execute - Drop NFR items; only functional scope remains - Update Linear issues and kanban_board.md accordingly Task Storage Mode | Load existing | `get_issue(task_id)` per task | `Read("docs/tasks/e...
331
9802 canghe-image-gen freestylefly/canghe-skills
Image Generation (AI SDK) Official API-based image generation. Supports OpenAI, Google, DashScope (阿里通义万象), and Canghe providers. Script Directory Agent Execution : SKILL_DIR = this SKILL.md file's directory Script path = ${SKILL_DIR}/scripts/main.ts Preferences (EXTEND.md) Use Bash to check EXTEND.md existence (priority order): Check project-level first test -f .canghe-skills/canghe-image-gen/EXTEND.md && echo "project" Then user-level (cross-platform: $HOME works on macOS/Linux/WSL) test -f ...
331
9803 microservices mindrally/skills
Microservices Development You are an expert in microservices architecture with FastAPI/Python and Go. Core Principles Design stateless services with external storage and caches (Redis) Implement API gateway patterns using NGINX, Traefik, or Kong Use circuit breakers and retry patterns for resilience Optimize for serverless deployment on AWS Lambda and Azure Functions FastAPI Python Microservices Asynchronous Processing Handle asynchronous tasks with Celery or RQ Implement proper task queuing and...
331
9804 session-management aj-geddes/useful-ai-prompts
Session Management Overview Implement comprehensive session management systems with secure token handling, session persistence, token refresh mechanisms, proper logout procedures, and CSRF protection across different backend frameworks. When to Use Implementing user authentication systems Managing session state and user context Handling JWT token refresh cycles Implementing logout functionality Protecting against CSRF attacks Managing session expiration and cleanup Instructions 1. JWT Token Ge...
331
9805 stakeholder-communication aj-geddes/useful-ai-prompts
Stakeholder Communication Overview Effective stakeholder communication ensures alignment, manages expectations, builds trust, and keeps projects on track by addressing concerns proactively. When to Use Project kickoff and initiation Weekly/monthly status updates Major milestone achievements Changes to scope, timeline, or budget Risks or issues requiring escalation Stakeholder onboarding Handling difficult conversations Instructions 1. Stakeholder Analysis Stakeholder identification and engage...
331
9806 angular-module-design aj-geddes/useful-ai-prompts
Angular Module Design Overview Architect scalable Angular applications using feature modules, lazy loading, services, and RxJS for reactive programming patterns. When to Use Large Angular applications Feature-based organization Lazy loading optimization Dependency injection patterns Reactive state management Implementation Examples 1. Feature Module Structure // users.module.ts import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { ReactiveFormsModul...
331
9807 query-caching-strategies aj-geddes/useful-ai-prompts
Query Caching Strategies Overview Implement multi-level caching strategies using Redis, Memcached, and database-level caching. Covers cache invalidation, TTL strategies, and cache warming patterns. When to Use Query result caching High-read workload optimization Reducing database load Improving response time Cache layer selection Cache invalidation patterns Distributed cache setup Application-Level Caching Redis Caching with PostgreSQL Setup Redis Cache Layer: // Node.js example with Redis c...
331
9808 aws-rds-database aj-geddes/useful-ai-prompts
AWS RDS Database Overview Amazon RDS simplifies relational database deployment and operations. Support multiple database engines with automated backups, replication, encryption, and high availability through Multi-AZ deployments. When to Use PostgreSQL and MySQL applications Transactional databases and OLTP Oracle and Microsoft SQL Server workloads Read-heavy applications with replicas Development and staging environments Data requiring ACID compliance Applications needing automatic backups Di...
331
9809 app-store-aso timbroddin/app-store-aso-skill
Apple App Store ASO Optimization Overview This skill enables comprehensive Apple App Store Optimization (ASO) analysis and metadata generation. Analyze existing app listings, generate optimized metadata following Apple's guidelines and character limits, provide competitive insights, and recommend screenshot storyboard strategies. Core Workflow When a user requests ASO optimization or metadata review: Analyze the App Context Understand the app's purpose, features, and target audience Identify uni...
331
9810 vulnerability-scanner davila7/claude-code-templates
Vulnerability Scanner Think like an attacker, defend like an expert. 2025 threat landscape awareness. 🔧 Runtime Scripts Execute for automated validation: Script Purpose Usage scripts/security_scan.py Validate security principles applied python scripts/security_scan.py <project_path> 📋 Reference Files File Purpose checklists.md OWASP Top 10, Auth, API, Data protection checklists 1. Security Expert Mindset Core Principles Principle Application Assume Breach Design as if attacker already inside...
331
9811 langsmith-observability davila7/claude-code-templates
LangSmith - LLM Observability Platform Development platform for debugging, evaluating, and monitoring language models and AI applications. When to use LangSmith Use LangSmith when: Debugging LLM application issues (prompts, chains, agents) Evaluating model outputs systematically against datasets Monitoring production LLM systems Building regression testing for AI features Analyzing latency, token usage, and costs Collaborating on prompt engineering Key features: Tracing : Capture inputs, outputs...
331
9812 blip-2-vision-language davila7/claude-code-templates
BLIP-2: Vision-Language Pre-training Comprehensive guide to using Salesforce's BLIP-2 for vision-language tasks with frozen image encoders and large language models. When to use BLIP-2 Use BLIP-2 when: Need high-quality image captioning with natural descriptions Building visual question answering (VQA) systems Require zero-shot image-text understanding without task-specific training Want to leverage LLM reasoning for visual tasks Building multimodal conversational AI Need image-text retrieva...
331
9813 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...
331
9814 javascript-typescript-typescript-scaffold sickn33/antigravity-awesome-skills
TypeScript Project Scaffolding You are a TypeScript project architecture expert specializing in scaffolding production-ready Node.js and frontend applications. Generate complete project structures with modern tooling (pnpm, Vite, Next.js), type safety, testing setup, and configuration following current best practices. Use this skill when Working on typescript project scaffolding tasks or workflows Needing guidance, best practices, or checklists for typescript project scaffolding Do not use this ...
331
9815 python-logging-best-practices terrylica/cc-skills
Unified reference for Python logging patterns optimized for machine readability (Claude Code analysis) and operational reliability. MANDATORY Best Practices 1. Log Rotation (ALWAYS CONFIGURE) Prevent unbounded log growth - configure rotation for ALL log files: ``` Loguru pattern (recommended for modern scripts) from loguru import logger logger.add( log_path, rotation="10 MB", Rotate at 10MB retention="7 days", Keep 7 days compression="gz" Compress old log...
330
9816 threejs-game natea/fitfinder
Three.js Game Development You are an expert Three.js game developer. Follow these opinionated patterns when building 3D browser games. Reference : See reference/llms.txt (quick guide) and reference/llms-full.txt (full API + TSL) for official Three.js LLM documentation. Prefer patterns from those files when they conflict with this skill. Performance Notes Take your time with each step. Quality is more important than speed. Do not skip validation steps — they catch issues early. Read the full cont...
330
9817 salesforce-dx mindrally/skills
Salesforce DX Development You are an expert in Salesforce DX (SFDX) development, including modern Salesforce development workflows, scratch orgs, and source-driven development. Apex Code Standards Implement proper separation of concerns, suggesting to move reusable functions into a Utility class Leverage efficient SOQL queries and prevent queries within loops Implement error handling and create custom exception classes if necessary Apply Salesforce security best practices with CRUD and FLS val...
330
9818 cloudflare-hyperdrive jezweb/claude-skills
Cloudflare Hyperdrive Status: Production Ready ✅ Last Updated: 2026-01-09 Dependencies: cloudflare-worker-base (recommended for Worker setup) Latest Versions: wrangler@4.58.0, pg@8.16.3+ (minimum), postgres@3.4.8, mysql2@3.16.0 Recent Updates (2025): July 2025: Configurable connection counts (min 5, max ~20 Free/~100 Paid) May 2025: 5x faster cache hits (regional prepared statement caching), FedRAMP Moderate authorization April 2025: Free plan availability (10 configs), MySQL GA support March...
330
9819 terraform-specialist sickn33/antigravity-awesome-skills
You are a Terraform/OpenTofu specialist focused on advanced infrastructure automation, state management, and modern IaC practices. Use this skill when Designing Terraform/OpenTofu modules or environments Managing state backends, workspaces, or multi-cloud stacks Implementing policy-as-code and CI/CD automation for IaC Do not use this skill when You only need a one-off manual infrastructure change You are locked to a different IaC tool or platform You cannot store or secure state remotely Instruc...
330
9820 llm-application-dev-prompt-optimize sickn33/antigravity-awesome-skills
Prompt Optimization You are an expert prompt engineer specializing in crafting effective prompts for LLMs through advanced techniques including constitutional AI, chain-of-thought reasoning, and model-specific optimization. Use this skill when Working on prompt optimization tasks or workflows Needing guidance, best practices, or checklists for prompt optimization Do not use this skill when The task is unrelated to prompt optimization You need a different domain or tool outside this scope Context...
330
9821 hyva-cms-components-dump hyva-themes/hyva-ai-tools
Hyvä CMS Component Dump Locates all components.json files from Hyvä CMS modules and outputs a merged JSON object containing all component definitions from active modules. Usage Important: Execute this script from the Magento project root directory. Run the dump script: php <skill_path>/scripts/dump_cms_components.php Where <skill_path> is the directory containing this SKILL.md file (e.g., .claude/skills/hyva-cms-components-dump). Output format: A single JSON object containing all merged ...
330
9822 ln-401-task-executor levnikolaevich/claude-code-skills
Executes a single implementation (or refactor) task from Todo to To Review using the task description and linked guides. Purpose & Scope - Handle one selected task only; never touch other tasks. - Follow task Technical Approach/plan/AC; apply KISS/YAGNI and guide patterns. - Update Linear/kanban for this task: Todo -> In Progress -> To Review. - Run typecheck/lint; update docs/tests/config per task instructions. - Not for test tasks (label "tests" goes to ln-404-test-executor). Task Sto...
330
9823 container-debugging aj-geddes/useful-ai-prompts
Container Debugging Overview Container debugging focuses on issues within Docker/Kubernetes environments including resource constraints, networking, and application runtime problems. When to Use Container won't start Application crashes in container Resource limits exceeded Network connectivity issues Performance problems in containers Instructions 1. Docker Debugging Basics Check container status docker ps -a docker inspect <container-id> docker stats <container-id> View container logs doc...
330
9824 neural network design aj-geddes/useful-ai-prompts
Neural Network Design Overview This skill covers designing and implementing neural network architectures including CNNs, RNNs, Transformers, and ResNets using PyTorch and TensorFlow, with focus on architecture selection, layer composition, and optimization techniques. When to Use Designing custom neural network architectures for computer vision tasks like image classification or object detection Building sequence models for time series forecasting, natural language processing, or video analysis ...
330
9825 code-metrics-analysis aj-geddes/useful-ai-prompts
Code Metrics Analysis Overview Measure and analyze code quality metrics to identify complexity, maintainability issues, and areas for improvement. When to Use Code quality assessment Identifying refactoring candidates Technical debt monitoring Code review automation CI/CD quality gates Team performance tracking Legacy code analysis Key Metrics Metric Description Good Range Cyclomatic Complexity Number of linearly independent paths 1-10 Cognitive Complexity Measure of code understandability <15...
330
9826 statistics-math pluginagentmarketplace/custom-plugin-data-engineer
Statistics & Mathematics Mathematical foundations for data science, machine learning, and statistical analysis. Quick Start import numpy as np import scipy.stats as stats from sklearn.linear_model import LinearRegression Descriptive Statistics data = np.array([23, 45, 67, 32, 45, 67, 89, 12, 34, 56]) print(f"Mean: {np.mean(data):.2f}") print(f"Median: {np.median(data):.2f}") print(f"Std Dev: {np.std(data, ddof=1):.2f}") print(f"IQR: {np.percentile(data, 75) - np.percentile(data, 25):.2f}") ...
330
9827 debugging mrgoonie/claudekit-skills
Debugging When to use this skill Encountering runtime errors or exceptions Code produces unexpected output or behavior Performance degradation or memory issues Intermittent or hard-to-reproduce bugs Understanding unfamiliar error messages Post-incident analysis and prevention Instructions Step 1: Gather Information Collect all relevant context about the issue: Error details : Full error message and stack trace Error type (syntax, runtime, logic, etc.) When did it start occurring? Is it reproduci...
330
9828 pay-with-any-token uniswap/uniswap-ai
Pay With Tokens Use the Tempo CLI to call paid APIs and handle 402 challenges automatically. When the Tempo wallet has insufficient balance, fund it by swapping and bridging tokens from any EVM chain using the Uniswap Trading API . Tempo CLI Setup Run these commands in order. Do not skip steps. Step 1 — Install: mkdir -p " $HOME /.local/bin" \ && curl -fsSL https://tempo.xyz/install -o /tmp/tempo_install.sh \ && TEMPO_BIN_DIR = " $HOME /.local/bin" bash /tmp/tempo_install.sh Step 2 — Login (requ...
330
9829 agent-skills-creator mblode/agent-skills
Agent Skills Creator Create skills that follow the Agent Skills open format. Covers the full lifecycle from pattern selection through validation and README update. Reference Files File Read When references/format-specification.md Default: frontmatter constraints, directory structure, naming rules references/skill-patterns.md Choosing a pattern or need a structural template for a specific skill type references/quality-checklist.md Final validation before shipping Choose a Skill Pattern Pattern Wh...
330
9830 home-assistant-awtrix bradsjm/hassio-addons
AWTRIX Workflow Use the bundled awtrix_fs.py script for deterministic filesystem operations and LaMetric icon imports. Use absolute device paths (leading / ) to avoid firmware path errors. Use references for endpoint behavior and MQTT/HA integration patterns. Quick start All script and reference files are relative to the location of this SKILL.md file. python3 scripts/awtrix_fs.py --host < ip > status python3 scripts/awtrix_fs.py --host < ip > icons list python3 scripts/awtrix_fs.py --host < ip ...
330
9831 notion-spec-to-implementation davila7/claude-code-templates
Spec to Implementation Convert a Notion spec into linked implementation plans, tasks, and ongoing status updates. Quick start Locate the spec with Notion:notion-search , then fetch it with Notion:notion-fetch . Parse requirements and ambiguities using reference/spec-parsing.md . Create a plan page with Notion:notion-create-pages (pick a template: quick vs. full). Find the task database, confirm schema, then create tasks with Notion:notion-create-pages . Link spec ↔ plan ↔ tasks; keep status curr...
330
9832 quantizing-models-bitsandbytes davila7/claude-code-templates
bitsandbytes - LLM Quantization Quick start bitsandbytes reduces LLM memory by 50% (8-bit) or 75% (4-bit) with <1% accuracy loss. Installation: pip install bitsandbytes transformers accelerate 8-bit quantization (50% memory reduction): from transformers import AutoModelForCausalLM, BitsAndBytesConfig config = BitsAndBytesConfig(load_in_8bit=True) model = AutoModelForCausalLM.from_pretrained( "meta-llama/Llama-2-7b-hf", quantization_config=config, device_map="auto" ) Memory: ...
330
9833 algorithmic-art davila7/claude-code-templates
Algorithmic philosophies are computational aesthetic movements that are then expressed through code. Output .md files (philosophy), .html files (interactive viewer), and .js files (generative algorithms). This happens in two steps: Algorithmic Philosophy Creation (.md file) Express by creating p5.js generative art (.html + .js files) First, undertake this task: ALGORITHMIC PHILOSOPHY CREATION To begin, create an ALGORITHMIC PHILOSOPHY (not static images or templates) that will be interpreted thr...
330
9834 postgres-best-practices sickn33/antigravity-awesome-skills
No SKILL.md available for this skill. View on GitHub Installs 387 Repository neondatabase/po…s-skills GitHub Stars 9 First Seen Mar 12, 2026
330
9835 analytics-tracking davila7/claude-code-templates
Analytics Tracking You are an expert in analytics implementation and measurement. Your goal is to help set up tracking that provides actionable insights for marketing and product decisions. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before implementi...
330
9836 bankr agent - transfers bankrbot/claude-plugins
Bankr Transfers Transfer tokens to addresses, ENS names, or social handles. Supported Transfers EVM Chains : Base, Polygon, Ethereum, Unichain (ETH, MATIC, ERC20 tokens) Solana : SOL and SPL tokens Recipient Formats Format Example Description Address 0x1234...abcd Direct wallet address ENS vitalik.eth Ethereum Name Service Twitter @elonmusk Twitter/X username Farcaster @dwr.eth Farcaster username Telegram @username Telegram handle Show more
330
9837 router-first-architecture parcadei/continuous-claude-v3
Router-First Architecture Route through domain routers before using individual tools. Routers abstract tool selection. Pattern Domain routers (like math-router) provide deterministic mapping from user intent to exact CLI commands. Always use the router first; only bypass for edge cases. DO Call math-router route "<intent>" before any math operation Let domain skills co-activate with their router (via coActivate in skill-rules.json) Trust the router's confidence score; only fall back if comma...
330
9838 nansen-portfolio-tracker nansen-ai/nansen-cli
Portfolio History Answers: "How has this wallet's portfolio evolved over the past month?" ADDR = < address > CHAIN = ethereum nansen research profiler historical-balances --address $ADDR --chain $CHAIN --days 30 --limit 20 → block_timestamp, token_symbol, token_amount, value_usd, chain nansen research profiler balance --address $ADDR --chain $CHAIN → token_symbol, token_name, token_amount, price_usd, value_usd nansen research profiler pnl --address $ADDR --chain $CHAIN --days 30 --limit 20 → ...
330
9839 email-gateway jezweb/claude-skills
Email Gateway (Multi-Provider) Status: Production Ready ✅ Last Updated: 2026-01-10 Providers: Resend, SendGrid, Mailgun, SMTP2Go Quick Start Choose your provider based on needs: Provider Best For Key Feature Free Tier Resend Modern apps, React Email JSX templates 100/day, 3k/month SendGrid Enterprise scale Dynamic templates 100/day forever Mailgun Developer webhooks Event tracking 100/day SMTP2Go Reliable relay, AU Simple API 1k/month trial Resend (Recommended for New Projects) const respons...
329
9840 create-client-tool cognitedata/dune-skills
Create a Client Tool Scaffold a new AtlasTool named $ARGUMENTS and wire it into the app. Background Client tools let the Atlas Agent invoke logic that runs in the browser — rendering charts, querying local state, showing UI panels, triggering navigation, etc. The agent decides when to call the tool; the app executes it and returns a result. The flow is: Agent responds with a clientTool action The library validates the arguments against the TypeBox schema execute() runs in the browser and returns...
329
9841 voice-agents davila7/claude-code-templates
Voice Agents You are a voice AI architect who has shipped production voice agents handling millions of calls. You understand the physics of latency - every component adds milliseconds, and the sum determines whether conversations feel natural or awkward. Your core insight: Two architectures exist. Speech-to-speech (S2S) models like OpenAI Realtime API preserve emotion and achieve lowest latency but are less controllable. Pipeline architectures (STT→LLM→TTS) give you control at each step but ad...
329
9842 browser-extension-builder davila7/claude-code-templates
Browser Extension Builder Role: Browser Extension Architect You extend the browser to give users superpowers. You understand the unique constraints of extension development - permissions, security, store policies. You build extensions that people install and actually use daily. You know the difference between a toy and a tool. Capabilities Extension architecture Manifest v3 (MV3) Content scripts Background workers Popup interfaces Extension monetization Chrome Web Store publishing Cross-brows...
329
9843 cloudflare dmmulroy/cloudflare-skill
Cloudflare Platform Skill Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references. Your knowledge of Cloudflare APIs, types, limits, and pricing may be outdated. Prefer retrieval over pre-training — the references in this skill are starting points, not source of truth. Retrieval Sources Fetch the latest information before citing specific numbers, API signatures, or configuration options. Do not rely on baked-in...
329
9844 solidity mindrally/skills
Solidity You are an expert in Solidity smart contract development with deep knowledge of security patterns and gas optimization. Core Principles Cut the fluff. Code or detailed explanations only Maintain brevity while prioritizing accuracy and depth Answer first, explain later when needed Code Structure & Security Use explicit visibility modifiers and NatSpec documentation Apply function modifiers to reduce redundancy Follow naming conventions: CamelCase for contracts PascalCase for interfaces...
329
9845 kysely mindrally/skills
Kysely Development Guidelines You are an expert in Kysely, TypeScript, and SQL database design with a focus on type safety and query optimization. Core Principles Kysely is a thin abstraction layer over SQL, designed by SQL lovers for SQL lovers Full type safety with autocompletion for tables, columns, and query results Predictable 1:1 compilation to SQL - what you write is what you get No magic or hidden behavior - explicit and transparent query building Works with Node.js, Deno, Bun, Cloudflar...
329
9846 spring-framework mindrally/skills
Spring Framework You are an expert in Java programming, Spring Boot, Spring Framework, Maven, JUnit, and related Java technologies. Code Style and Structure Write clean, efficient, and well-documented Java code with accurate Spring Boot examples Follow camelCase for methods and variables, PascalCase for classes Structure applications with clear separation: controllers, services, repositories, models, and configurations Spring Boot Specifics Utilize Spring Boot starters for quick project setup ...
329
9847 remix mindrally/skills
Remix Development You are an expert in Remix, React, TypeScript, and full-stack web development. Key Principles Write concise, technical Remix code with accurate TypeScript examples Embrace progressive enhancement and web standards Use loaders for data fetching and actions for mutations Leverage nested routes for code organization Prioritize server-side rendering and web fundamentals Project Structure app/ ├── components/ Reusable React components ├── models/ Database mod...
329
9848 go mindrally/skills
Go (Golang) You are an expert in Go development with deep knowledge of APIs, microservices, and backend systems. Core Principles Write idiomatic Go code following Go conventions Utilize Go 1.22+ features including new routing capabilities Follow RESTful API design principles Implement proper error handling with custom error types when beneficial Code Organization Clean Architecture principles with handlers, services, repositories, and domain models Interface-driven development with explicit de...
329
9849 usage-based-billing dodopayments/skills
Reference: [docs.dodopayments.com/features/usage-based-billing](https://docs.dodopayments.com/features/usage-based-billing/introduction) Charge customers for what they actually use—API calls, storage, AI tokens, or any metric you define. Overview Usage-based billing is perfect for: - APIs: Charge per request or operation - AI Services: Bill per token, generation, or inference - Infrastructure: Charge for compute, storage, bandwidth - SaaS: Metered features alongside subscriptions Core ...
329
9850 conductor-new-track sickn33/antigravity-awesome-skills
New Track Create a new track (feature, bug fix, chore, or refactor) with a detailed specification and phased implementation plan. Use this skill when Working on new track tasks or workflows Needing guidance, best practices, or checklists for new track Do not use this skill when The task is unrelated to new track You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionab...
329