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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
16851 performance-benchmark-specialist manutej/luxor-claude-marketplace
Performance Benchmark Specialist Comprehensive performance benchmarking expertise for shell-based tools, focusing on rigorous measurement, statistical analysis, and actionable performance optimization using patterns from the unix-goto project. When to Use This Skill Use this skill when: Creating performance benchmarks for shell scripts Measuring and validating performance targets Implementing statistical analysis for benchmark results Designing benchmark workspaces and test environments Gene...
55
16852 skill-composer-studio onewave-ai/claude-skills
Skill Composer Studio CHAIN multiple existing skills into custom multi-step workflows. Programmable skill combinations with automatic handoffs. Create composite skills from building blocks with conditional logic. Instructions You are a master workflow orchestrator and skill integrator. When user describes a multi-step workflow, map it to a sequence of existing skills with automatic handoffs between steps. Output from step N becomes input for step N+1. Support conditional logic (if-then-else base...
55
16853 mamba-architecture orchestra-research/ai-research-skills
Mamba - Selective State Space Models Quick start Mamba is a state-space model architecture achieving O(n) linear complexity for sequence modeling. Installation: Install causal-conv1d (optional, for efficiency) pip install causal-conv1d>=1.4.0 Install Mamba pip install mamba-ssm Or both together pip install mamba-ssm[causal-conv1d] Prerequisites: Linux, NVIDIA GPU, PyTorch 1.12+, CUDA 11.6+ Basic usage (Mamba block): import torch from mamba_ssm import Mamba batch, length, dim = 2, 64,...
55
16854 search-console openclaudia/openclaudia-skills
Google Search Console Pull search performance data, index coverage, and Core Web Vitals from Google Search Console API. Prerequisites Requires Google OAuth credentials: GOOGLE_CLIENT_ID GOOGLE_CLIENT_SECRET A valid OAuth access token with https://www.googleapis.com/auth/webmasters.readonly scope Set credentials in .env , .env.local , or ~/.claude/.env.global . Getting an Access Token Step 1: Authorization URL (user visits in browser) echo "https://accounts.google.com/o/oauth2/v2/auth?client_id=...
55
16855 react-performance s-hiraoku/synapse-a2a
React Performance Optimization Master react performance optimization for building high-performance, scalable React applications with industry best practices. React.memo and Component Memoization React.memo prevents unnecessary re-renders by memoizing component output: import { memo } from 'react' ; interface Props { name : string ; onClick : ( ) => void ; } // Basic memoization const ExpensiveComponent = memo ( function ExpensiveComponent ( { name , onClick } : Props ) { console . log ( 'Renderi...
55
16856 nanogpt orchestra-research/ai-research-skills
nanoGPT - Minimalist GPT Training Quick start nanoGPT is a simplified GPT implementation designed for learning and experimentation. Installation: pip install torch numpy transformers datasets tiktoken wandb tqdm Train on Shakespeare (CPU-friendly): Prepare data python data/shakespeare_char/prepare.py Train (5 minutes on CPU) python train.py config/train_shakespeare_char.py Generate text python sample.py --out_dir=out-shakespeare-char Output: ROMEO: What say'st thou? Shall I speak, ...
55
16857 bevy-ecs-expert sickn33/antigravity-awesome-skills
Bevy ECS Expert Overview A guide to building high-performance game logic using Bevy's data-oriented ECS architecture. Learn how to structure systems, optimize queries, manage resources, and leverage parallel execution. When to Use This Skill Use when developing games with the Bevy engine in Rust. Use when designing game systems that need to run in parallel. Use when optimizing game performance by minimizing cache misses. Use when refactoring object-oriented logic into data-oriented ECS patterns....
55
16858 zcl marcohefti/zero-context-lab
ZCL Orchestrator (Codex Skill) This skill is for the orchestrator (you), not the spawned mission agent. Native Runtime Boundary (Current) ZCL has first-class native runtime execution in zcl suite run and campaign flows via runner.type=codex_app_server . Runtime selection is strategy-based and deterministic via ordered fallback chains ( --runtime-strategies , ZCL_RUNTIME_STRATEGIES ). Process runner mode remains supported as explicit fallback ( --session-isolation process ). Native runtime strate...
55
16859 torchforge-rl-training orchestra-research/ai-research-skills
torchforge: PyTorch-Native Agentic RL Library torchforge is Meta's PyTorch-native RL library that separates infrastructure concerns from algorithm concerns. It enables rapid RL research by letting you focus on algorithms while handling distributed training, inference, and weight sync automatically. When to Use torchforge Choose torchforge when you need: Clean separation between RL algorithms and infrastructure PyTorch-native abstractions (no Ray dependency) Easy algorithm experimentation (GRPO, ...
55
16860 ios-unit-test dengineproblem/agents-monorepo
iOS Unit Testing Expert Expert in iOS testing with XCTest framework and best practices. Core Testing Principles Test Structure and Organization Follow the Arrange-Act-Assert (AAA) pattern Use descriptive test method names explaining scenario and expected outcome Group related tests using nested test classes or test suites Maintain test independence - each test should run in isolation XCTest Framework Fundamentals import XCTest @testable import YourApp class UserServiceTests : XCTestCase { // Sys...
55
16861 nodejs-development manutej/luxor-claude-marketplace
Node.js Development Guidelines You are an expert in Node.js development with TypeScript, covering various frameworks and patterns. Payload CMS with Next.js Project Setup project/ ├── src/ │ ├── app/ Next.js app directory │ ├── collections/ Payload collections │ ├── blocks/ Custom blocks │ ├── fields/ Custom fields │ └── access/ Access control functions ├── payload.config.ts Payload configuration └── next.config.js Next.js con...
55
16862 prospect-investigation qodex-ai/ai-agent-skills
Lead Research Assistant This skill helps you identify and qualify potential leads for your business by analyzing your product/service, understanding your ideal customer profile, and providing actionable outreach strategies. When to Use This Skill Finding potential customers or clients for your product/service Building a list of companies to reach out to for partnerships Identifying target accounts for sales outreach Researching companies that match your ideal customer profile Preparing for bus...
55
16863 vercel-composition-patterns vercel-labs/vercel-skills
React Composition Patterns Composition patterns for building flexible, maintainable React components. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale. When to Apply Reference these guidelines when: Refactoring components with many boolean props Building reusable component libraries Designing flexible component APIs Reviewing component architecture W...
55
16864 agent-browser code-yeongyu/oh-my-opencode
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
55
16865 issues-workflow terrylica/cc-skills
GitHub Issues-First Workflow Default : Use GitHub Issues exclusively for all content, hierarchy, and tracking. Optional : Link to Projects v2 for cross-repo visualization only. Critical Principle: Issues Are Everything GitHub Issues = Content + Hierarchy + Status + History. GitHub Projects v2 = Visualization layer only (no content, no history). With sub-issues (GA April 2025), Issues now handle hierarchy natively. Projects v2 is reduced to an optional visualization dashboard. Issues vs Projects ...
55
16866 performance-audit mgd34msu/goodvibes-plugin
Resources scripts/ validate-performance-audit.sh references/ performance-patterns.md Performance Audit This skill guides you through performing comprehensive performance audits on web applications to identify bottlenecks, optimization opportunities, and performance regressions. Use this when preparing for production deployments, investigating performance issues, or conducting periodic performance reviews. When to Use This Skill Conducting pre-deployment performance reviews Investigating slow pag...
55
16867 design-master huangserva/skill-prompt-generator
No SKILL.md available for this skill. View on GitHub
55
16868 runway vm0-ai/vm0-skills
Runway API Use the Runway API via direct curl calls to generate AI videos from images, text, or video inputs. Official docs: https://docs.dev.runwayml.com/ When to Use Use this skill when you need to: Generate video from images (image-to-video) Generate video from text prompts (text-to-video) Transform existing videos (video-to-video) Generate images from text (text-to-image) Upscale video resolution (4X upscale) Generate sound effects or speech Prerequisites Sign up at Runway Developer Portal P...
55
16869 cass dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
CASS - Coding Agent Session Search Unified, high-performance CLI/TUI to index and search your local coding agent history. Aggregates sessions from 11 agents : Codex, Claude Code, Gemini CLI, Cline, OpenCode, Amp, Cursor, ChatGPT, Aider, Pi-Agent, and Factory (Droid). CRITICAL: Robot Mode Required for AI Agents NEVER run bare cass - it launches an interactive TUI that blocks your session! WRONG - blocks terminal cass CORRECT - JSON output for agents cass search "query" --robot cass search "quer...
55
16870 resend vm0-ai/vm0-skills
Resend Quick Send — Node.js import { Resend } from 'resend' ; const resend = new Resend ( process . env . RESEND_API_KEY ) ; const { data , error } = await resend . emails . send ( { from : 'Acme <onboarding@resend.dev>' , to : [ 'delivered@resend.dev' ] , subject : 'Hello World' , html : '<p>Email body here</p>' , } , { idempotencyKey : ` welcome-email/ ${ userId } ` } ) ; if ( error ) { console . error ( 'Failed:' , error . message ) ; return ; } console . log ( 'Sent:' , data . id ) ; Key got...
55
16871 godot-performance-optimization thedivergentai/gd-agentic-skills
Performance Optimization Profiler-driven analysis, object pooling, and visibility culling define optimized game performance. Available Scripts custom_performance_monitor.gd Manager for adding and updating custom performance monitors in the Godot debugger. multimesh_foliage_manager.gd Expert MultiMesh pattern for rendering thousands of foliage instances efficiently. NEVER Do in Performance Optimization NEVER optimize without profiling first — "I think physics is slow" without data? Premature opti...
55
16872 vueuse-integrations-skilld harlan-zw/vue-ecosystem-skills
vueuse/vueuse @vueuse/integrations Integration wrappers for utility libraries Version: 14.2.1 (Feb 2026) Deps: @vueuse/core@14.2.1, @vueuse/shared@14.2.1 Tags: next: 5.0.0 (Jun 2021), alpha: 14.0.0-alpha.3 (Sep 2025), beta: 14.0.0-beta.1 (Sep 2025), latest: 14.2.1 (Feb 2026) References: Docs — API reference, guides API Changes This section documents version-specific API changes — prioritize recent major/minor releases. BREAKING: Requires Vue 3.5+ — v14.x now requires Vue 3.5.0 as a peer dependen...
55
16873 paddleocr-doc-parsing paddlepaddle/paddleocr
PaddleOCR Document Parsing Skill When to Use This Skill ✅ Use Document Parsing for : Documents with tables (invoices, financial reports, spreadsheets) Documents with mathematical formulas (academic papers, scientific documents) Documents with charts and diagrams Multi-column layouts (newspapers, magazines, brochures) Complex document structures requiring layout analysis Any document requiring structured understanding ❌ Use Text Recognition instead for : Simple text-only extraction Quick OCR task...
55
16874 drizzle-migrations erichowens/some_claude_skills
Drizzle ORM Database Migrations (TypeScript) Migration-first database development workflow using Drizzle ORM for TypeScript/JavaScript projects. When to Use This Skill Use this skill when: Working with Drizzle ORM in TypeScript/JavaScript projects Need to create or modify database schema Want migration-first development workflow Setting up new database tables or columns Need to ensure schema consistency across environments Core Principle: Migration-First Development Critical Rule: Schema ch...
55
16875 readme oimiragieo/agent-studio
/readme — Gold-Standard README Generation Purpose: Generate a README that converts skimmers into users and satisfies deep readers — then validate it with a council. YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Quick Start /readme Interview + generate + validate (new README) /readme --rewrite Rewrite existing README with same patterns /readme --validate Council-validate an existing README without rewriting The Patterns These are non-negotiable. Every README this skill produces foll...
55
16876 web-search rtgs2017/nagaagent
Web Search & Extraction Search the web and extract content via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Search the web belt app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}' Available Apps Tavily App App ID Description Search Assistant tavily/search-assistant AI-powered search with answers Extract tavily/extract Extract content from URLs Exa App App ID Description Search exa/search Smart web search with AI...
55
16877 database-expert travisjneuman/.claude
Database Expert database algorithm rules When reviewing or writing code, apply these guidelines: You are an expert in database algorithms. Optimize algorithms for performance and scalability. Use appropriate data structures and indexing strategies. database interaction best practices When reviewing or writing code, apply these guidelines: When interacting with databases: Use prepared statements to prevent SQL injection. Handle database errors gracefully. Consider using an ORM for complex queries...
55
16878 gamedev-expert oimiragieo/agent-studio
Gamedev Expert When reviewing or writing code, apply these guidelines: Use exceptions for exceptional cases, not for control flow. Implement proper error logging and user-friendly messages. dragonruby general ruby rules When reviewing or writing code, apply these guidelines: Write concise, idiomatic Ruby code with accurate examples. Follow Ruby and DragonRuby conventions and best practices. Use object-oriented and functional programming patterns as appropriate. Prefer iteration and modularizatio...
55
16879 response-rater oimiragieo/agent-studio
Response Rater Skill Step 1: Define Rating Rubric Use appropriate rubric for the content type: For Plans : Dimension Weight Description Completeness 20% All required sections present Feasibility 20% Plan is realistic and achievable Risk Mitigation 20% Risks identified with mitigations Agent Coverage 20% Appropriate agents assigned Integration 20% Fits with existing systems For Responses : Dimension Weight Description Correctness 25% Technically accurate Completeness 25% Addresses all requirement...
55
16880 miles-rl-training orchestra-research/ai-research-skills
No SKILL.md available for this skill. [View on GitHub ](https://github.com/davila7/claude-code-templates)
55
16881 architecture-review getsentry/warden
Architecture Review Analyze, audit, and improve project structure. Key Principles Measure before changing — Map structure and identify concrete issues before proposing changes Clear boundaries — Layers (UI, logic, data) separated with consistent dependency direction Colocation — Related code together; easy to find, change, and delete features Incremental migration — Refactor in phases, validate each step with tests Quick Assessment No circular dependencies Consistent directory naming and groupin...
55
16882 workflow epicenterhq/epicenter
CRITICAL : Always Use Correct workflow Documentation Your knowledge of workflow is outdated. The workflow documentation outlined below matches the installed version of the Workflow DevKit. Follow these instructions before starting on any workflow -related tasks: Search the bundled documentation in node_modules/workflow/docs/ : Find docs : glob "node_modules/workflow/docs//*.mdx" Search content : grep "your query" node_modules/workflow/docs/ Documentation structure in node_modules/workflow/docs/ ...
55
16883 fabric-onelake-2025 josiahsiegel/claude-plugin-marketplace
🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentation files unless ...
55
16884 openclaw paulrberg/agent-skills
OpenClaw CLI Overview OpenClaw is a multi-channel messaging and agent platform. The CLI provides commands for gateway management, agent orchestration, channel operations (WhatsApp, Telegram), device pairing, and automated messaging workflows. Quick Reference Check CLI version and help openclaw --version openclaw --help openclaw --log-level < level > Override log level (silent|fatal|error|warn|info|debug|trace) openclaw --no-color Disable ANSI colors Setup and configuration openclaw setup In...
55
16885 framer framer/dalton
Before doing anything, run this command to get the full, up-to-date skill instructions: npx -y framer-dalton@latest skill
55
16886 logging-observability cosmix/loom
You are a senior .NET architect specializing in observability. When implementing logging and monitoring in Razor Pages applications, follow these patterns to ensure production-grade observability, troubleshooting capabilities, and integration with monitoring systems. Target .NET 8+ with nullable reference types enabled. Rationale Effective observability is critical for production applications. Poor logging makes debugging impossible, and lack of correlation IDs makes tracing requests across serv...
55
16887 sugarcrm membranedev/application-skills
SugarCRM SugarCRM is a customer relationship management (CRM) platform. It helps sales, marketing, and customer service teams manage customer interactions and data throughout the customer lifecycle. Businesses of all sizes use it to improve sales performance, marketing effectiveness, and customer satisfaction. Official docs: https://support.sugarcrm.com/Documentation/ SugarCRM Overview Account Contact Lead Opportunity Task Meeting Call Note Working with SugarCRM This skill uses the Membrane CLI ...
55
16888 ai-sdk-setup andrelandgraf/fullstackrecipes
AI SDK & Simple Chat To set up AI SDK & Simple Chat, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/ai-sdk-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/ai-sdk-setup
55
16889 debug-cli antinomyhq/forge
CLI Debug Skill This skill provides a systematic workflow for debugging and verifying changes to the forge CLI application. Core Principles Always get latest docs first : Run --help to see current commands and options Use -p for testing : Test forge by giving it tasks with the -p flag Never commit : This is for debugging only - don't commit changes Clone conversations : When debugging conversation bugs, clone the source conversation before reproducing Workflow 1. Build the Application Always bui...
55
16890 seedance netease-youdao/lobsterai
No SKILL.md available for this skill. View on GitHub
55
16891 fastapi-pro rmyndharis/antigravity-skills
Use this skill when Working on fastapi pro tasks or workflows Needing guidance, best practices, or checklists for fastapi pro Do not use this skill when The task is unrelated to fastapi pro 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 actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a FastAPI ...
55
16892 trending-skills geekjourneyx/trending-skills
Trending Skills Fetch skills.sh trending rankings and skill details. Quick Start View rankings 今天技能排行榜 Top 10 skills 技能榜单 Query Types Type Examples Description Rankings 今天技能排行榜 Top 10 Current rankings Detail xxx是什么 xxx介绍 Skill details (requires extra packages) Workflow - [ ] Step 1: Parse query type - [ ] Step 2: Fetch data from skills.sh - [ ] Step 3: Format and display results Step 1: Parse Query Type User Input Query Type Action 今天技能排行榜 rankings Show top N skills Top 10 skills rankings Show ...
55
16893 pdforge vm0-ai/vm0-skills
PDForge API (PDF Noodle) Use the PDForge API via direct curl calls to generate PDFs from templates or raw HTML. Official docs: https://docs.pdforge.com/ Note: PDForge has been rebranded to PDF Noodle. Both api.pdforge.com and api.pdfnoodle.com work. When to Use Use this skill when you need to: Generate PDFs from reusable templates with dynamic data Convert HTML to PDF directly Create invoices, reports, or documents programmatically Export PNG images instead of PDFs Batch generate documents...
55
16894 b2c-page-designer salesforcecommercecloud/b2c-developer-tooling
Page Designer Skill This skill guides you through creating custom Page Designer page types and component types for Salesforce B2C Commerce. Overview Page Designer allows merchants to create and manage content pages through a visual editor. Developers create: Page Types - Define page structures with regions Component Types - Reusable content blocks with configurable attributes File Structure Page Designer files are in the cartridge's experience directory: /my-cartridge /cartridge /experience /pag...
55
16895 moai-lang-r modu-ai/moai-adk
Quick Reference (30 seconds) R 4.4+ Development Specialist - tidyverse, ggplot2, Shiny, renv, and modern R patterns. Auto-Triggers: Files with .R extension, .Rmd, .qmd, DESCRIPTION, renv.lock, Shiny or ggplot2 discussions Core Capabilities: R 4.4 Features: Native pipe operator, lambda syntax with backslash, improved error messages Data Manipulation: dplyr, tidyr, purrr, stringr, forcats Visualization: ggplot2, plotly, scales, patchwork Web Applications: Shiny, reactivity, modules, bslib Test...
55
16896 tauri-mcp-testing xiaolai/vmark
Tauri MCP E2E Testing CRITICAL: For E2E testing of Tauri applications, ALWAYS use tauri_* MCP tools. NEVER use Chrome DevTools MCP - that's for browser pages only. Quick Reference Task MCP Tool Connect to app tauri_driver_session Take screenshot tauri_webview_screenshot Find elements tauri_webview_find_element Click/scroll/swipe tauri_webview_interact Type text tauri_webview_keyboard Wait for element tauri_webview_wait_for Execute JS tauri_webview_execute_js Get CSS styles tauri_webview_get_styl...
55
16897 self-improvement hanzoskill/self-improving-agent
Self-Improvement Skill Log learnings and errors to markdown files for continuous improvement. Coding agents can later process these into fixes, and important learnings get promoted to project memory. Quick Reference Situation Action Command/operation fails Log to .learnings/ERRORS.md User corrects you Log to .learnings/LEARNINGS.md with category correction User wants missing feature Log to .learnings/FEATURE_REQUESTS.md API/external tool fails Log to .learnings/ERRORS.md with integration details...
55
16898 coderabbit itechmeat/llm-code
CodeRabbit AI-powered code review for pull requests and local changes. Quick Navigation Task Reference Install & run CLI cli-usage.md Configure .coderabbit.yaml configuration.md Supported tools (40+ linters) tools.md Git platform setup platforms.md PR commands (@coderabbitai) pr-commands.md Claude/Cursor/Codex workflow agent-integration.md Triage findings triage.md Fix single issue fix.md Reporting & metrics end-to-end-workflow.mdreporting--metrics End-to-end workflow end-to-end-workflow.md Wi...
55
16899 multitask rysweet/amplihack
Multitask Skill Purpose Execute multiple independent development tasks in parallel. Each workstream runs in an isolated /tmp clone with its own Recipe Runner process following code-enforced workflow steps. Key Advantage : Uses Recipe Runner YAML recipes instead of prompt-based markdown workflows. Python controls step execution, making it impossible to skip steps. Quick Start Inline Tasks /multitask - 123 (feat/add-auth): Implement user authentication - 124 (feat/add-logging): Add structured logg...
55
16900 don-norman-principles-audit mastepanoski/claude-skills
Don Norman Principles UX Audit This skill enables AI agents to perform a human-centered evaluation of usability and intuitiveness for apps, websites, or digital interfaces using Don Norman's 7 fundamental design principles from The Design of Everyday Things . The principles emphasize discoverability, natural perception, and cognitive load reduction. Use this skill to detect intuitive frustrations (like digital "Norman doors"), improve user experience, and propose redesigns. Combine with "Nielsen...
55