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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
7901 zod bobmatnyc/claude-mpm-skills
Zod Best Practices Comprehensive schema validation guide for Zod in TypeScript applications. Contains 43 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new Zod schemas Choosing between parse() and safeParse() Implementing type inference with z.infer Handling validation errors for user feedback Composing complex object schemas Using refinements and transforms Optimizing bundle size and val...
420
7902 vuetify0 vuetifyjs/0
Vuetify0 - Headless Composables & Components Transform Vue 3 apps with unstyled, logic-focused building blocks for design systems. Quick Start pnpm install @vuetify/v0 No global plugin required. Import only what you need: import { createSelection } from '@vuetify/v0/composables' import { Tabs } from '@vuetify/v0/components' Core Decision Tree Before writing custom logic , check if v0 already provides it: Need Use Guide Single item selection createSingle Single selection patterns Multi-item selec...
420
7903 agentic-gateway alchemyplatform/skills
Alchemy Agentic Gateway Notice: This repository is experimental and subject to change without notice. By using the features and skills in this repository, you agree to Alchemy's Terms of Service and Privacy Policy . A skill that lets agents easily access Alchemy's developer platform. The gateway authenticates callers with SIWE (Sign-In With Ethereum) tokens and handles payments via the x402 protocol using USDC on Base Mainnet and Base Sepolia. Non-Bypass Rule When this skill is selected because ...
420
7904 context7-auto-research sickn33/antigravity-awesome-skills
context7-auto-research Overview Automatically fetch latest library/framework documentation for Claude Code via Context7 API When to Use When you need up-to-date documentation for libraries and frameworks When asking about React, Next.js, Prisma, or any other popular library Installation npx skills add -g BenedictKing/context7-auto-research Step-by-Step Guide Install the skill using the command above Configure API key (optional, see GitHub repo for details) Use naturally in Claude Code conversati...
420
7905 obsidian-clipper-template-creator sickn33/antigravity-awesome-skills
Obsidian Web Clipper Template Creator This skill helps you create importable JSON templates for the Obsidian Web Clipper. Workflow Identify User Intent: specific site (YouTube), specific type (Recipe), or general clipping? Check Existing Bases: The user likely has a "Base" schema defined in Templates/Bases/. Action: Read Templates/Bases/*.base to find a matching category (e.g., Recipes.base). Action: Use the properties defined in the Base to structure the Clipper template properties. See refer...
420
7906 devops-cicd miles990/claude-software-skills
DevOps & CI/CD Overview Practices for automating build, test, and deployment pipelines. CI/CD Pipeline Pipeline Stages ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ Commit │ → │ Build │ → │ Test │ → │ Deploy │ → │ Release │ │ │ │ │ │ │ │ Staging │ │ Prod │ └──────────┘ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │ │ │ │ │ │ ┌────┴────┐ ┌─...
420
7907 simplify-and-harden pskoett/pskoett-ai-skills
Agent Skill: Simplify & Harden Install npx skills add pskoett/pskoett-ai-skills/simplify-and-harden For CI-only execution, use: npx skills add pskoett/pskoett-ai-skills/simplify-and-harden-ci Metadata Field Value Skill ID simplify-and-harden Version 0.1.0 Trigger Post-completion hook Author Peter Skøtt Pedersen Category Code Quality / Security Priority Recommended Rationale and Philosophy When a coding agent completes a task, it holds peak contextual understanding of the problem, the solution, a...
420
7908 add-feature opusgamelabs/game-creator
Add Feature Add a new feature to your game. Just describe what you want in plain English — for example, "add a double-jump power-up" or "add a high score leaderboard" — and the feature will be built following your game's existing patterns. Instructions The user wants to add: $ARGUMENTS Step 1: Understand the codebase Read package.json to identify the engine (Three.js or Phaser) Read src/core/Constants.js for existing configuration Read src/core/EventBus.js for existing events Read src/core/GameS...
420
7909 add-audio opusgamelabs/game-creator
Performance Notes Take your time to do this thoroughly Quality is more important than speed Do not skip validation steps Add Audio Add procedural music and sound effects to an existing game. BGM uses a Web Audio API step sequencer for looping patterns. SFX use the Web Audio API directly for true one-shot playback. No audio files or npm packages needed — everything is synthesized in the browser. Instructions Analyze the game at $ARGUMENTS (or the current directory if no path given). First, load t...
420
7910 promql grafana/skills
PromQL Query Patterns PromQL is a functional query language for time series data. Every query returns either an instant vector (one value per label set at a point in time), a range vector (a sliding window of samples), or a scalar . Golden rule: rate() and increase() always require a range vector. The range must be at least 4x the scrape interval to avoid gaps. For a 60s scrape interval, use [5m] minimum. Rate and counter queries Rate (per-second average over a window): rate ( http_requests_tota...
420
7911 betting machina-sports/sports-skills
Betting Analysis Quick Start sports-skills betting convert_odds --odds = -150 --from_format = american sports-skills betting devig --odds = -150,+130 --format = american sports-skills betting find_edge --fair_prob = 0.58 --market_prob = 0.52 sports-skills betting evaluate_bet --book_odds = -150,+130 --market_prob = 0.52 sports-skills betting find_arbitrage --market_probs = 0.48 ,0.49 sports-skills betting parlay_analysis --legs = 0.58 ,0.62,0.55 --parlay_odds = 600 sports-skills betting line_mov...
420
7912 clawgod-claude-code-patch aradotso/trending-skills
No SKILL.md available for this skill. View on GitHub
420
7913 alayarenderer-generative-world aradotso/trending-skills
AlayaRenderer — Generative World Renderer Skill by ara.so — Daily 2026 Skills collection. AlayaRenderer is a two-stage framework for high-quality video rendering: Inverse Renderer (RGB → G-buffers): Extracts albedo, normal, depth, roughness, and metallic maps from RGB video using a fine-tuned Cosmos-Transfer1-DiffusionRenderer 7B model. Game Editing (G-buffers + Text → Stylized RGB): Synthesizes photorealistic, stylized RGB video from G-buffer inputs using a fine-tuned Wan2.1 1.3B model via Diff...
420
7914 code-quality miles990/claude-software-skills
Code Quality Guide Core Principle Production database. Correctness paramount. Crash > corrupt. Correctness Rules No workarounds or quick hacks. Handle all errors, check invariants Assert often. Never silently fail or swallow edge cases Crash on invalid state if it risks data integrity. Don't continue in undefined state Consider edge cases. On long enough timeline, all possible bugs will happen Rust Patterns Make illegal states unrepresentable Exhaustive pattern matching Prefer enums over strings...
420
7915 tiptap jezweb/claude-skills
Tiptap Integration Skill Instructions for coding agents integrating the Tiptap rich text editor Reference Repositories Clone the tiptap and tiptap-docs repositories so you can search the source code and documentation. https://github.com/ueberdosis/tiptap https://github.com/ueberdosis/tiptap-docs If the workspace already has a reference folder with other repositories, clone them there. Otherwise, clone the repositories in a new .reference folder. The reference folder should be git-ignored. Before...
419
7916 session-compression bobmatnyc/claude-mpm-skills
AI Session Compression Techniques Summary Compress long AI conversations to fit context windows while preserving critical information. Session compression enables production AI applications to manage multi-turn conversations efficiently by reducing token usage by 70-95% through summarization, embedding-based retrieval, and intelligent context management. Achieve 3-20x compression ratios with minimal performance degradation. Key Benefits: Cost Reduction: 80-90% token cost savings through hier...
419
7917 plan-interview pskoett/pskoett-ai-skills
Plan Interview Skill Install npx skills add pskoett/pskoett-ai-skills/skills/plan-interview Purpose Run a structured requirements interview before planning implementation. This ensures alignment between you and the user by gathering explicit requirements rather than making assumptions. When Invoked User calls /plan-interview <task description> . Skip this skill if the task is purely research/exploration (not implementation). Interview Process Phase 1: Upfront Interview (Before Exploration) Inter...
419
7918 huggingface-vision-trainer huggingface/skills
Vision Model Training on Hugging Face Jobs Train object detection, image classification, and SAM/SAM2 segmentation models on managed cloud GPUs. No local GPU setup required—results are automatically saved to the Hugging Face Hub. When to Use This Skill Use this skill when users want to: Fine-tune object detection models (D-FINE, RT-DETR v2, DETR, YOLOS) on cloud GPUs or local Fine-tune image classification models (timm: MobileNetV3, MobileViT, ResNet, ViT/DINOv3, or any Transformers classifier) ...
419
7919 test-scenario owl-listener/designer-skills
Test Scenario You are an expert in writing usability test scenarios that reveal genuine user behavior. What You Do You write test scenarios with realistic tasks, clear success criteria, and structured observation guides. Scenario Structure Context Setting Brief, realistic backstory that gives the participant a reason to act without leading them. Task Specific goal to accomplish. Action-oriented, not question-based. Avoids UI terminology that hints at the answer. Success Criteria Task completion ...
419
7920 meeting-minutes-taker daymade/claude-code-skills
Meeting Minutes Taker Transform raw meeting transcripts into comprehensive, evidence-based meeting minutes through iterative review. Quick Start Pre-processing (Optional but Recommended): Document conversion: Use markdown-tools skill to convert .docx/.pdf to Markdown first (preserves tables/images) Transcript cleanup: Use transcript-fixer skill to fix ASR/STT errors if transcript quality is poor Context file: Prepare context.md with team directory for accurate speaker identification Core Wo...
419
7921 capability-evolver evomap/evolver
🧬 Capability Evolver "Evolution is not optional. Adapt or die." The Capability Evolver is a meta-skill that allows OpenClaw agents to inspect their own runtime history, identify failures or inefficiencies, and autonomously write new code or update their own memory to improve performance. Features Auto-Log Analysis : Automatically scans memory and history files for errors and patterns. Self-Repair : Detects crashes and suggests patches. GEP Protocol: Standardized evolution with reusable assets. O...
419
7922 golang saisudhir14/golang-agent-skill
Go Best Practices Battle-tested patterns from Google, Uber, and the Go team. These are practices proven in large-scale production systems, updated for modern Go (1.25). Core Principles Readable code prioritizes these attributes in order: Clarity: purpose and rationale are obvious to the reader Simplicity: accomplishes the goal in the simplest way Concision: high signal to noise ratio Maintainability: easy to modify correctly Consistency: matches surrounding codebase Error Handling Return Err...
419
7923 ux-designer aj-geddes/claude-code-bmad-skills
UX Designer You are a senior UX Designer with deep expertise in user-centered design, research methodologies, information architecture, and interaction design. You help teams create intuitive, accessible, and delightful user experiences. When to Apply Use this skill when: Planning or conducting user research Creating wireframes, mockups, or prototypes Designing user flows and task flows Building personas or user journey maps Writing UX microcopy and interface text Reviewing designs for usability...
419
7924 game-qa opusgamelabs/game-creator
Game QA with Playwright You are an expert QA engineer for browser games. You use Playwright to write automated tests that verify visual correctness, gameplay behavior, performance, and accessibility. Reference Files For detailed reference, see companion files in this directory: visual-regression.md — Screenshot comparison tests, masking dynamic elements, performance/FPS tests, accessibility tests, deterministic testing patterns clock-control.md — Playwright Clock API patterns for frame-precise t...
419
7925 huashu-md-html alchaincyf/huashu-md-html
huashu-md-html 你不再需要亲手编辑产物。md 是源代码,html / docx 是产物。这个 skill 把多端的最优解打通成一条流水线。 四个能力(决策树) 用户说什么 走哪个能力 用什么工具 「把这个PDF/DOCX/PPTX/XLSX/EPUB/图片/音频转成md」「import文档」 能力1:万物→md scripts/any_to_md.py (封装 markitdown) 「把这篇md做成网页/出色html/可发布的html」「md转html」 能力2:md→精美html scripts/md_to_html.py (封装 pandoc + 4模板) 「这个本地html转回md」「博客文章URL转md」「提取网页正文」 能力3:html→md scripts/html_to_md.py (封装 html-to-markdown + trafilatura) 「把这些md做成出版社可审校的word」「给出版社/编辑的稿件」「投稿用的docx」「纸质书定稿」 能力4:md→精美docx scripts/md_to_docx.py (封装 python-docx +...
419
7926 knip brianlovin/agent-config
Knip Code Cleanup Run knip to find and remove unused files, dependencies, and exports from this codebase. Setup Check if knip is available: Run npx knip --version to test If it fails or is very slow, check if knip is in package.json devDependencies If not installed locally, install with npm install -D knip (or pnpm/yarn equivalent based on lockfile present) If no knip.json or knip.jsonc config exists and knip reports many false positives, consider creating a minimal config based on the fram...
419
7927 photo-composition-critic erichowens/some_claude_skills
Photo Composition Critic Expert photography critic with deep grounding in graduate-level visual aesthetics, computational aesthetics research, and professional image analysis. When to Use This Skill Use for: Evaluating image composition quality Aesthetic scoring with ML models (NIMA, LAION) Photo critique with actionable feedback Analyzing color harmony and visual balance Comparing multiple crop options Understanding photography theory Do NOT use for: Generating images → use Stability AI d...
419
7928 static-code-analysis aj-geddes/useful-ai-prompts
Use automated tools to analyze code without executing it, catching bugs, security issues, and style violations early. When to Use - Enforcing coding standards - Security vulnerability detection - Bug prevention - Code review automation - CI/CD pipelines - Pre-commit hooks - Refactoring assistance Implementation Examples 1. ESLint Configuration ``` // .eslintrc.js module.exports = { extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:secur...
419
7929 information-architecture aj-geddes/useful-ai-prompts
This skill defines the structural skeleton of a product or site. It sits between the design brief and the build. Run this after the brief is written and before tasks are created. Example prompts "Plan the IA for this app before I start building" "Map out the navigation and page structure" "I need to organize the content for a documentation site" "Define user flows for the onboarding experience" Process Look for an existing design brief at .design/*/DESIGN_BRIEF.md . If multiple subfolders exist,...
419
7930 dividend-growth-pullback-screener tradermonty/claude-trading-skills
Dividend Growth Pullback Screener Overview This skill screens for dividend growth stocks that exhibit strong fundamental characteristics but are experiencing temporary technical weakness. It targets stocks with exceptional dividend growth rates (12%+ CAGR) that have pulled back to RSI oversold levels (≤40), creating potential entry opportunities for long-term dividend growth investors. Investment Thesis: High-quality dividend growth stocks (often yielding 1-2.5%) compound wealth through dividend...
419
7931 presentational-container-pattern patternsdev/skills
Container/Presentational Pattern In React, one way to enforce separation of concerns is by using the Container/Presentational pattern . With this pattern, we can separate the view from the application logic. When to Use Use this when you want a clear separation between data-fetching logic and UI rendering This is helpful for making presentational components reusable and easy to test When NOT to Use For small components where the separation into two files adds overhead without meaningful benefit ...
419
7932 git:analyze-issue neolabhq/context-engineering-kit
Please analyze GitHub issue $ARGUMENTS and create a technical specification. Follow these steps: Check if the issue is already loaded: Look for the issue file in ./specs/issues/ folder File naming pattern: <number-padded-to-3-digits>-<kebab-case-title>.md If not found, fetch the issue details from GitHub (see step 2) Fetch the issue details (if not already loaded): Read .claude/commands/load-issues.md to understand how to fetch issue details Save the issue file following the load-issues.md forma...
418
7933 hugging-face-model-trainer huggingface/skills
TRL Training on Hugging Face Jobs Overview Train language models using TRL (Transformer Reinforcement Learning) on fully managed Hugging Face infrastructure. No local GPU setup required—models train on cloud GPUs and results are automatically saved to the Hugging Face Hub. TRL provides multiple training methods: SFT (Supervised Fine-Tuning) - Standard instruction tuning DPO (Direct Preference Optimization) - Alignment from preference data GRPO (Group Relative Policy Optimization) - Online RL ...
418
7934 docs-search adobe/skills
Searching AEM Documentation Overview This skill helps you efficiently search the complete aem.live documentation (docs and blog posts) without wasting context on irrelevant pages. Use the provided search script to find relevant documentation pages, then fetch and read the full content of the most relevant results. When to Use This Skill Use this skill when: You need information about an aem.live feature or concept You've already looked at the project codebase for context You've tried a basic web...
418
7935 gemini-interactions-api google/skills
Gemini Interactions API Skill The Interactions API is a unified interface for interacting with Gemini models and agents. It is an improved alternative to generateContent designed for agentic applications. Key capabilities include: Server-side state: Offload conversation history to the server via previous_interaction_id Background execution: Run long-running tasks (like Deep Research) asynchronously Streaming: Receive incremental responses via Server-Sent Events Tool orchestration: Function calli...
418
7936 saas-valuation-compression himself65/finance-skills
SaaS Valuation Compression Analyzer What This Skill Does For a given SaaS company, research its funding history and compute ARR-based valuation multiples at each round. Then explain the compression (or expansion) using a structured framework that covers macro rates, growth trajectory, narrative shifts, and comparables. Always render the output as an inline visualization (using the Visualizer tool) plus a concise prose explanation. Do not just return a wall of numbers. Step-by-Step Workflow 1. Ga...
418
7937 beautifulsoup-parsing mindrally/skills
BeautifulSoup HTML Parsing You are an expert in BeautifulSoup, Python HTML/XML parsing, DOM navigation, and building efficient data extraction pipelines for web scraping. Core Expertise BeautifulSoup API and parsing methods CSS selectors and find methods DOM traversal and navigation HTML/XML parsing with different parsers Integration with requests library Handling malformed HTML gracefully Data extraction patterns and best practices Memory-efficient processing Key Principles Write concise, tec...
418
7938 code-documentation-doc-generate sickn33/antigravity-awesome-skills
Automated Documentation Generation You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI-powered analysis and industry best practices. Use this skill when Generating API, architecture, or user documentation from code Building documentation pipelines or automation Standardizing docs across a repository Do not use this skill when The project has no codebas...
418
7939 contract-review anthropics/knowledge-work-plugins
Contract Review Skill Overview I help you review contracts by identifying potential risks, checking for missing elements, and providing specific recommendations. I have knowledge of common risk patterns and jurisdiction-specific rules. What I can do: Identify 15+ common contract risks Check if your contract is complete Explain complex legal language in plain terms Suggest specific changes to protect your interests Support US, EU, China, and UK jurisdictions What I cannot do: Provide legal advice...
418
7940 kotlin-tooling-agp9-migration kotlin/kotlin-agent-skills
KMP AGP 9.0 Migration Android Gradle Plugin 9.0 makes the Android application and library plugins incompatible with the Kotlin Multiplatform plugin in the same module. This skill guides you through the migration. Step 0: Analyze the Project Before making any changes, understand the project structure: Read settings.gradle.kts (or .gradle ) to find all modules For each module, read its build.gradle.kts to identify which plugins are applied Check if the project uses a Gradle version catalog ( gradl...
418
7941 scenario-analyzer tradermonty/claude-trading-skills
Headline Scenario Analyzer Overview このスキルは、ニュースヘッドラインを起点として中長期(18ヶ月)の投資シナリオを分析します。 2つの専門エージェント( scenario-analyst と strategy-reviewer )を順次呼び出し、 多角的な分析と批判的レビューを統合した包括的なレポートを生成します。 When to Use This Skill 以下の場合にこのスキルを使用してください: ニュースヘッドラインから中長期の投資影響を分析したい 18ヶ月後のシナリオを複数構築したい セクター・銘柄への影響を1次/2次/3次で整理したい セカンドオピニオンを含む包括的な分析が必要 日本語でのレポート出力が必要 使用例: /headline-scenario-analyzer "Fed raises interest rates by 50bp, signals more hikes ahead" /headline-scenario-analyzer "China announces new tariffs on US semicondu...
418
7942 market-research-analysis manojbajaj95/claude-gtm-plugin
Market Research & Analysis Expert market research skill — from market sizing and competitive analysis through consumer research and professional consulting-grade reports with LaTeX formatting and visual generation. Quick Start Choose your workflow: Market Sizing — TAM/SAM/SOM calculations Competitive Analysis — Landscape mapping and positioning Consumer Research — Surveys, interviews, behavior analysis Professional Report — 50+ page consulting-style report with LaTeX + visuals Market Sizing (TAM...
418
7943 qdrant-deployment-options qdrant/skills
Which Qdrant Deployment Do I Need? Start with what you need: managed ops or full control? Network latency acceptable or not? Production or prototyping? The answer narrows to one of four options. Getting Started or Prototyping Use when: building a prototype, running tests, CI/CD pipelines, or learning Qdrant. Use local mode (Python only): zero-dependency, in-memory or disk-persisted, no server needed Local mode Local mode data format is NOT compatible with server. Do not use for production or ben...
417
7944 asc-id-resolver rorkai/app-store-connect-cli-skills
asc id resolver Use this skill to map names to IDs needed by other commands. App ID By bundle ID or name: asc apps list --bundle-id "com.example.app" asc apps list --name "My App" Fetch everything: asc apps --paginate Set default: ASC_APP_ID=... Build ID Latest build: asc builds latest --app "APP_ID" --version "1.2.3" --platform IOS Recent builds: asc builds list --app "APP_ID" --sort -uploadedDate --limit 5 Version ID asc versions list --app "APP_ID" --paginate TestFlight IDs Groups: asc beta-g...
417
7945 agent-performance-monitor ruvnet/ruflo
name: Performance Monitor type: agent category: optimization description: Real-time metrics collection, bottleneck analysis, SLA monitoring and anomaly detection Performance Monitor Agent Agent Profile Name : Performance Monitor Type : Performance Optimization Agent Specialization : Real-time metrics collection and bottleneck analysis Performance Focus : SLA monitoring, resource tracking, and anomaly detection Core Capabilities 1. Real-Time Metrics Collection // Advanced metrics collection syste...
417
7946 agent-data-ml-model ruvnet/ruflo
name: "ml-developer" description: "Specialized agent for machine learning model development, training, and deployment" color: "purple" type: "data" version: "1.0.0" created: "2025-07-25" author: "Claude Code" metadata: specialization: "ML model creation, data preprocessing, model evaluation, deployment" complexity: "complex" autonomous: false Requires approval for model deployment triggers: keywords: - "machine learning" - "ml model" - "train model" - "predict" - "classification" - "regression...
417
7947 ucp vercel-labs/agentic-commerce-skills
UCP Skill — Universal Commerce Protocol Implementation Core Principles Edge runtime is NOT USED — Only Node.js (default) or Bun (opt-in) runtimes Interactive error handling — When ambiguous, ask the user how to proceed Config-driven — All decisions persist in ucp.config.json Spec-grounded — All implementations reference the canonical UCP specification Next.js conventions — Follow App Router patterns for code organization Deep analysis — Use AST parsing and data flow tracing for gap detection Spe...
417
7948 context7-auto-research benedictking/context7-auto-research
context7-auto-research Overview Automatically fetch latest library/framework documentation for Claude Code via Context7 API When to Use When you need up-to-date documentation for libraries and frameworks When asking about React, Next.js, Prisma, or any other popular library Installation npx skills add -g BenedictKing/context7-auto-research Step-by-Step Guide Install the skill using the command above Configure API key (optional, see GitHub repo for details) Use naturally in Claude Code conversati...
417
7949 compound-pattern patternsdev/skills
Compound Pattern Table of Contents When to Use When NOT to Use Instructions Details Source In our application, we often have components that belong to each other. They're dependent on each other through the shared state, and share logic together. You often see this with components like select , dropdown components, or menu items. The compound component pattern allows you to create components that all work together to perform a task. When to Use Use this when building components like dropdowns, t...
417
7950 asc-workflow rorkai/app-store-connect-cli-skills
asc workflow Use this skill when you need lane-style automation inside the CLI using: asc workflow run asc workflow validate asc workflow list This feature is best for deterministic automation that lives in your repo, is reviewable in PRs, and can run the same way locally and in CI. Command discovery Always use --help to confirm flags and subcommands: asc workflow --help asc workflow run --help asc workflow validate --help asc workflow list --help End-to-end flow Author .asc/workflow.json Valida...
417