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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,834
总 Skills
40.3M
总安装量
2,459
贡献者
# Skill 仓库 描述 安装量
14651 dotnet-csharp novotnyllc/dotnet-artisan
dotnet-csharp Overview C language patterns, coding standards, and .NET runtime features for idiomatic, performant code. This consolidated skill spans 25 topic areas. Load the appropriate companion file from references/ based on the routing table below. Always-Load Baseline These references define correctness and quality standards that apply to all C code — load them by default whenever producing or reviewing code, regardless of what the user asked for: references/coding-standards.md — naming con...
59
14652 databricks-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 ...
59
14653 jira odyssey4me/agent-skills
Jira Natural language interaction with Jira. Supports multiple backends. Backend Detection Run this check first to determine which backend to use: 1. Check if jira CLI is available: → Run: which jira → If found: USE CLI BACKEND 2. If no CLI, check for Atlassian MCP: → Look for mcp__atlassian__* tools → If available: USE MCP BACKEND 3. If neither available: → GUIDE USER TO SETUP Backend When to Use Reference CLI jira command available references/commands.md MCP Atlassian MCP tools available refer...
59
14654 helm-debugging laurigates/claude-plugins
Comprehensive guidance for diagnosing and fixing Helm deployment failures, template errors, and configuration issues. When to Use Use this skill automatically when: - User reports Helm deployment failures or errors - User mentions debugging, troubleshooting, or fixing Helm issues - Template rendering problems occur - Value validation or type errors - Resource conflicts or API errors - Image pull failures or pod crashes - User needs to inspect deployed resources Context Safety (CRITIC...
59
14655 godot-genre-roguelike thedivergentai/gd-agentic-skills
Genre: Roguelike Expert blueprint for roguelikes balancing challenge, progression, and replayability. NEVER Do NEVER make runs pure RNG — Skill should mitigate bad luck. Provide guaranteed item shops, reroll mechanics, or starting loadout choices. NEVER overpowered meta-upgrades — If meta-progression is too strong, game becomes "grind to win" not "learn to win". Keep modest (+10% damage max). NEVER lack variety in content — Procedural generation shuffles content. Need 50+ rooms, 20+ enemies, 10...
59
14656 gathering-migration autumnsgrove/groveengine
Gathering Migration 🌲🐻🐕 The drum echoes through the valleys. The Bear wakes from long slumber, gathering strength for the journey ahead. The Bloodhound sniffs the terrain, understanding every path and connection. Together they move mountains of data safely—nothing lost, nothing broken, everything finding its new home. When to Summon Complex data migrations requiring codebase exploration Moving data between different system architectures Schema changes affecting multiple relationships Migrations ...
59
14657 wechat-content-optimizer steelan9199/wechat-publisher
公众号内容优化专家 优化本地 Markdown 文件,让文章更适合微信公众号阅读。 适用场景 本地 Markdown 文件需要优化后发布到公众号 文章读起来太生硬,需要更口语化 段落太长,不适合手机阅读 段落顺序不合理,重要内容太靠后 开头不够吸引人,跳出率高 结尾没有引导,缺少互动 小标题太平淡,需要更有吸引力 工作流程 1. 接收用户请求 用户提供: Markdown 文件路径(必需) 特定优化需求(可选) 2. 读取并分析文件 执行脚本读取文件内容: node "<skill目录>/scripts/optimize.js" < markdown文件路径 > --config "<skill目录>/config.json" 脚本会输出文件内容,供你分析和优化。 3. 多维度内容优化 基于 references/optimization-guide.md 中的优化指南,从以下维度优化: 维度 优化要点 开头吸引力 前3秒抓住读者,用痛点/悬念/数据/场景切入 段落顺序 调整段落位置,重要内容前置,逻辑更顺畅 段落节奏 短段落(手机不超过4行)、多留白、易扫读 语言表达 口语化、亲切、...
59
14658 cloudflare-deploy davila7/claude-code-templates
Cloudflare Deploy Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references. Authentication (Required Before Deploy) Verify auth before wrangler deploy , wrangler pages deploy , or npm run deploy : npx wrangler whoami Shows account if authenticated Not authenticated? → references/wrangler/auth.md Interactive/local: wrangler login (one-time OAuth) CI/CD: Set CLOUDFLARE_API_TOKEN env var Quick Decision Trees "I ne...
59
14659 typescript-refactor pproenca/dot-skills
TypeScript Refactor Best Practices Comprehensive TypeScript refactoring and modernization guide designed for AI agents and LLMs. Contains 43 rules across 8 categories, prioritized by impact to guide automated refactoring, code review, and code generation. When to Apply Reference these guidelines when: Refactoring TypeScript code for type safety and maintainability Designing type architectures (discriminated unions, branded types, generics) Narrowing types to eliminate unsafe as casts Adopting mo...
59
14660 creating-effective-skills taisukeoe/agentic-ai-skills-creator
Creating Effective Skills Guide for creating agent skills that follow Claude's official best practices. Core Principles Concise is Key : The context window is shared. Only add what Claude doesn't already know. Default assumption: Claude is already very smart. Progressive Disclosure : Skills load in three levels: Metadata (~100 tokens) - always loaded SKILL.md body (<5k tokens) - when triggered Bundled resources - as needed Keep SKILL.md small : Target ~200 lines, maximum 500 lines. Move detailed...
59
14661 vercel-react-best-practices arize-ai/phoenix
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
59
14662 laravel:blade-components-and-layouts jpcaparas/superpowers-laravel
Encapsulate markup and behavior with components; prefer slots over includes. Commands ``` sail artisan make:component Alert or: php artisan make:component Alert // Use component <x-alert type="warning" :message="$msg" class="mb-4" /> // Layouts + stacks @extends('layouts.app') @push('scripts') <script>/* page script */</script> @endpush ``` Patterns - Keep components dumb: pass data in, emit markup out - Use `merge()` to honor passed classes/attributes in components ...
59
14663 umbraco-state-management umbraco/umbraco-cms-backoffice-skills
Umbraco State Management What is it? States in Umbraco are containers for reactive values that enable communication across component instances using the Observable pattern. An Umbraco State is a container for a value that you can create Observables from, which allows multiple observers to subscribe and automatically receive updates when the state changes. This pattern is particularly useful for sharing data between contexts and elements without tight coupling. Documentation Always fetch the late...
59
14664 code-formatting pollinations/pollinations
Code Formatting Format JS/TS/JSON files changed on the current branch using Biome. Quick Usage .claude/skills/code-formatting/scripts/format-branch.sh This formats all .js , .ts , .jsx , .tsx , .json , .jsonc files changed compared to main . Custom Base Branch .claude/skills/code-formatting/scripts/format-branch.sh develop What It Does Finds files changed on current branch vs base branch Filters to JS/TS/JSON files only Runs npx biome check --write on those files Uses same settings as the biome-...
59
14665 umbraco-manifest-picker umbraco/umbraco-cms-backoffice-skills
Umbraco Manifest Picker What is it? The <umb-input-manifest> component provides a picker UI for selecting registered extensions from the Umbraco extension registry. It allows users to pick from any extension type (workspaces, dashboards, property editors, etc.) and returns the selected manifest. This is useful for configuration UIs where users need to reference other extensions. Documentation Always fetch the latest docs before implementing: Extension Registry : https://docs.umbraco.com/umbraco-...
59
14666 sales-negotiation dengineproblem/agents-monorepo
Sales Negotiation Expert Expertise in negotiation strategy, procurement navigation, and deal closing techniques. Negotiation Fundamentals core_concepts : batna : definition : "Best Alternative To Negotiated Agreement" importance : "Your walk-away power" develop : - "Identify all alternatives" - "Evaluate each option" - "Strengthen best alternative" - "Know when to walk away" zopa : definition : "Zone of Possible Agreement" components : seller_walk_away : "Minimum acceptable price" buyer_walk_awa...
59
14667 crewai-multi-agent orchestra-research/ai-research-skills
CrewAI - Multi-Agent Orchestration Framework Build teams of autonomous AI agents that collaborate to solve complex tasks. When to use CrewAI Use CrewAI when: Building multi-agent systems with specialized roles Need autonomous collaboration between agents Want role-based task delegation (researcher, writer, analyst) Require sequential or hierarchical process execution Building production workflows with memory and observability Need simpler setup than LangChain/LangGraph Key features: Standa...
59
14668 user researcher daffy0208/ai-dev-standards
User Researcher Understand user needs through systematic research before building products. Core Principle Users are not you. Validate assumptions with real user behavior, not opinions or what users say they'll do. 5-Phase User Research Process Phase 1: Research Planning Goal : Define what you need to learn and how Activities : Define research objectives (2-4 key questions to answer) Identify target user segments and recruitment criteria Select research methods (interviews, surveys, observation)...
59
14669 parser-development biomejs/biome
Purpose Use this skill when creating or modifying Biome's parsers. Covers grammar authoring with ungrammar, lexer implementation, error recovery strategies, and list parsing patterns. Prerequisites Install required tools: just install-tools Understand the language syntax you're implementing Read crates/biome_parser/CONTRIBUTING.md for detailed concepts Common Workflows Create Grammar for New Language Create a .ungram file in xtask/codegen/ (e.g., html.ungram ): // html.ungram // Legend: // Nam...
59
14670 inertia-rails-pages inertia-rails/skills
Inertia Rails Pages Page components, layouts, navigation, and client-side APIs. Before building a page, ask: Does this page need a layout? → Use persistent layout (React: Page.layout = ... ; Vue: defineOptions({ layout }) ; Svelte: module script export) — wrapping in JSX/template remounts on every navigation, losing scroll position, audio playback, and component state Does UI state come from the URL? → Change BOTH controller (read params , pass as prop) AND component (derive from prop, no useSta...
59
14671 asciinema-player terrylica/cc-skills
asciinema-player Play terminal session recordings (.cast files) in a dedicated iTerm2 window with full playback controls. Opens a clean window (bypasses default arrangements) for distraction-free viewing. Platform: macOS only (requires iTerm2) Why iTerm2 Instead of Browser? Aspect Browser Player iTerm2 CLI Large files (>100MB) Crashes (memory limit) Streams from disk Memory usage 2-4GB for 700MB file Minimal Startup time Slow (download + parse) Instant Native feel Web-based True terminal Dec...
59
14672 axiom-uikit-bridging charleswiltgen/axiom
UIKit-SwiftUI Bridging Systematic guidance for bridging UIKit and SwiftUI. Most production iOS apps need both — this skill teaches the bridging patterns themselves, not the domain-specific views being bridged. Decision Framework digraph bridge { start [ label = "What are you bridging?" shape = diamond ] ; start -> "UIViewRepresentable" [ label = "UIView subclass → SwiftUI" ] ; start -> "UIViewControllerRepresentable" [ label = "UIViewController → SwiftUI" ] ; start -> "UIGestureRecognizerReprese...
59
14673 android-jetpack-compose-expert sickn33/antigravity-awesome-skills
Android Jetpack Compose Expert Overview A comprehensive guide for building production-quality Android applications using Jetpack Compose. This skill covers architectural patterns, state management with ViewModels, navigation type-safety, and performance optimization techniques. When to Use This Skill Use when starting a new Android project with Jetpack Compose. Use when migrating legacy XML layouts to Compose. Use when implementing complex UI state management and side effects. Use when optimizin...
59
14674 authenticated-web-scraper rysweet/amplihack
No SKILL.md available for this skill. View on GitHub
59
14675 vuetify-skilld harlan-zw/vue-ecosystem-skills
vuetifyjs/vuetify vuetify Vue Material Component Framework Version: 4.0.1 (Mar 2026) Tags: v1-stable: 1.5.24 (Mar 2020), v2-stable: 2.7.2 (Feb 2024), dev: 4.0.1 (Mar 2026), next: 4.0.1 (Mar 2026), latest: 4.0.2 (Mar 2026), v3-stable: 3.12.3 (Mar 2026) References: Docs — API reference, guides API Changes This section documents version-specific API changes — prioritize recent major/minor releases. BREAKING: VRow / VCol Grid — complete overhaul using CSS gap instead of negative margins. dense prop ...
59
14676 ci-cd-pipeline-builder eddiebe147/claude-settings
CI/CD Pipeline Builder Skill Overview This skill helps you build robust CI/CD pipelines for automated testing, building, and deployment. Covers GitHub Actions, Vercel integration, testing strategies, deployment patterns, and security best practices. CI/CD Philosophy Pipeline Principles Fast feedback: Fail early, inform quickly Reproducible: Same inputs = same outputs Secure: Secrets protected, dependencies verified Observable: Clear logs, status visibility Pipeline Stages Trigger → Lint → Test...
59
14677 chart-implementation sgcarstrends/sgcarstrends
Chart Implementation Skill This skill helps you create and customize data visualization charts in apps/web/. When to Use This Skill Creating new chart visualizations for car/COE data Updating existing charts with new features Implementing interactive chart features Optimizing chart performance Debugging chart rendering issues Adding responsive chart layouts Chart Library The project likely uses one of these popular React chart libraries. Check package.json: Recharts - Built on D3, great for ...
59
14678 umbraco-global-context umbraco/umbraco-cms-backoffice-skills
Umbraco Global Context What is it? Global contexts create a shared, type-safe layer of data and functions accessible throughout the backoffice. Unlike scoped contexts (like Workspace Contexts), global contexts persist for the entire backoffice session. Use them for sharing state between extensions, managing centralized services, or coordinating communication. Note: Prefer more specific context types when possible - Umbraco uses global contexts sparingly. Documentation Always fetch the latest doc...
59
14679 threejs secondsky/claude-skills
Three.js Development Build high-performance 3D web applications using Three.js - a cross-browser WebGL/WebGPU library. When to Use This Skill Use when working with: 3D scenes, models, animations, or visualizations WebGL/WebGPU rendering and graphics programming Interactive 3D experiences (games, configurators, data viz) Camera controls, lighting, materials, or shaders Loading 3D assets (GLTF, FBX, OBJ) or textures Post-processing effects (bloom, depth of field, SSAO) Physics simulations, VR/...
59
14680 umbraco-sorter umbraco/umbraco-cms-backoffice-skills
Umbraco Sorter What is it? The UmbSorterController provides drag-and-drop sorting functionality for lists of items in the Umbraco backoffice. It handles reordering items within a container, moving items between containers, and supports nested sorting scenarios. This is useful for block editors, content trees, and any UI that requires user-driven ordering. Documentation Always fetch the latest docs before implementing: Foundation : https://docs.umbraco.com/umbraco-cms/customizing/foundation Exten...
59
14681 vmware-aiops zw008/vmware-aiops
No SKILL.md available for this skill. View on GitHub
59
14682 ln-310-story-validator levnikolaevich/claude-code-skills
Validate and auto-fix Stories and Tasks against 2025 standards before execution. Purpose & Scope - Validate Story plus child Tasks against industry standards and project patterns - Calculate Penalty Points for violations, then auto-fix to reach 0 points - Delegate to ln-002-best-practices-researcher for creating documentation (guides, manuals, ADRs, research) - Support Plan Mode: show audit results, wait for approval, then fix - Approve Story after fixes (Backlog -> Todo) with tabular out...
59
14683 supadata vm0-ai/vm0-skills
Supadata API Use the Supadata API via direct curl calls to extract video transcripts and scrape web content for AI applications. Official docs: https://docs.supadata.ai/ When to Use Use this skill when you need to: Extract transcripts from YouTube, TikTok, Instagram, X (Twitter), Facebook videos Scrape web pages to markdown format for AI processing Get video/channel metadata from social platforms Crawl websites to extract content from multiple pages Prerequisites Sign up at Supadata Dashboa...
59
14684 research-synthesis oimiragieo/agent-studio
/research-synthesis If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Synthesize user research data into actionable insights. See the user-research skill for research methods, interview guides, and analysis frameworks. Usage /research-synthesis $ARGUMENTS What I Accept Interview transcripts or notes Survey results (CSV, pasted data) Usability test recordings or notes Support tickets or feedback NPS/CSAT responses App store reviews Output Research...
59
14685 skill-creator hotovo/aider-desk
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
59
14686 command-creator dagster-io/erk
Command Creator This skill guides the creation of Claude Code slash commands - reusable workflows that can be invoked with /command-name in Claude Code conversations. About Slash Commands Slash commands are markdown files stored in .claude/commands/ (project-level) or ~/.claude/commands/ (global/user-level) that get expanded into prompts when invoked. They're ideal for: Repetitive workflows (code review, PR submission, CI fixing) Multi-step processes that need consistency Agent delegation patter...
59
14687 interview-system-designer alirezarezvani/claude-skills
Interview System Designer Comprehensive interview system design, competency assessment, and hiring process optimization. Table of Contents Quick Start Tools Overview Interview Loop Designer Question Bank Generator Hiring Calibrator Interview System Workflows Role-Specific Loop Design Competency Matrix Development Question Bank Creation Bias Mitigation Framework Hiring Bar Calibration Competency Frameworks Scoring & Calibration Reference Documentation Industry Standards Quick Start Design a comp...
59
14688 code-review mgd34msu/goodvibes-plugin
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
59
14689 brave-search ratacat/claude-skills
Brave Search Headless web search and content extraction using Brave Search. No browser required. Setup Run once before first use: cd ~/Projects/agent-scripts/skills/brave-search npm ci Needs env: BRAVE_API_KEY . Search ./search.js "query" Basic search (5 results) ./search.js "query" -n 10 More results ./search.js "query" --content Include page content as markdown ./search.js "query" -n 3 --content Combined Extract Page Content ./content.js https://example.com/article Fetches a URL and extrac...
59
14690 multi-ai-consultant secondsky/claude-skills
Multi-AI Consultant Consult external AIs for second opinions when Claude Code is stuck or making critical decisions. What This Skill Does This skill enables future Claude Code sessions to consult other AIs when: Stuck on a bug after one failed attempt Making architectural decisions Security concerns need validation Fresh perspective needed Key innovation : Uses existing CLI tools ( gemini , codex ) instead of building MCP servers - much simpler and more maintainable. When to Use This Skill Autom...
59
14691 dojo-config dojoengine/book
Dojo Configuration Management Manage Dojo project configuration including Scarb.toml, deployment profiles, and world settings. When to Use This Skill "Configure Dojo for my project" "Update Scarb.toml dependencies" "Set up deployment profiles" "Configure world settings" What This Skill Does Manages configuration files: Scarb.toml - Package manifest and dependencies dojo_dev.toml - Local development profile dojo_<profile>.toml - Other environment profiles World configuration, namespaces, and perm...
59
14692 agentic-quality-engineering proffesor-for-testing/agentic-qe
Agentic Quality Engineering <default_to_action> When implementing agentic QE or coordinating agents: SPAWN appropriate agent(s) for the task using Task tool with agent type CONFIGURE agent coordination (hierarchical/mesh/sequential) EXECUTE with PACT principles: Proactive analysis, Autonomous operation, Collaborative feedback, Targeted risk focus VALIDATE results through quality gates before deployment LEARN from outcomes - store patterns in aqe/learning/* namespace Quick Agent Selection: Te...
59
14693 swain-update cristoslc/swain
Update Swain Update the local installation of swain skills to the latest version, then reconcile governance configuration. Step 1 — Detect current installation Check whether .claude/skills/ contains any swain-* directories: ls -d .claude/skills/swain-* 2 > /dev/null If no swain skill directories are found, inform the user this appears to be a fresh install rather than an update, then continue anyway — the steps below work for both cases. Step 2 — Backup local modifications Before overwriting ski...
59
14694 mod-actions civitai/civitai
Take moderator actions on Civitai users including banning, muting, removing content, and managing leaderboard eligibility. This skill uses the Civitai tRPC API with API key authentication, ensuring all actions go through the proper service layer with full side effects (session invalidation, search index updates, activity tracking, etc.). Setup - Copy `.env-example` to `.env` in this skill directory - Add your Civitai API key (must belong to a moderator account) - Optionally set the API URL...
59
14695 delayed-command paulrberg/agent-skills
Delayed Command Execution Wait for a specified duration, then execute a Bash command. Arguments duration : Time to wait before execution (e.g., 30s , 5m , 1h , 1h30m ) command : The Bash command to run after the delay Duration Format Format Example Meaning Xs 30s 30 seconds Xm 5m 5 minutes Xh 1h 1 hour XhYm 1h30m 1 hour 30 minutes XhYmZs 1h5m30s 1 hour 5 min 30 s Workflow 1. Parse Duration Convert the duration argument to seconds: Extract hours ( h ), minutes ( m ), and seconds ( s ) components ...
59
14696 tdd oimiragieo/agent-studio
Test-Driven Development Philosophy Core principle : Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. Good tests are integration-style: they exercise real code paths through public APIs. They describe what the system does, not how it does it. A good test reads like a specification - "user can checkout with valid cart" tells you exactly what capability exists. These tests survive refactors because they don't care about i...
59
14697 webreel vercel-labs/webreel
webreel webreel records scripted browser demos as MP4, GIF, or WebM with cursor animation, keystroke overlays, and sound effects. You define steps in a JSON config, and webreel drives headless Chrome, captures frames, and encodes with ffmpeg. Installation Install webreel as a project dependency so the version is pinned in the lockfile. This ensures deterministic recordings across machines and CI. npm install webreel If the project already has webreel in its dependencies, skip this step. Prerequi...
59
14698 wiki-researcher sickn33/antigravity-awesome-skills
Wiki Researcher You are an expert software engineer and systems analyst. Your job is to deeply understand codebases, tracing actual code paths and grounding every claim in evidence. When to Activate User asks "how does X work" with expectation of depth User wants to understand a complex system spanning many files User asks for architectural analysis or pattern investigation Core Invariants (NON-NEGOTIABLE) Depth Before Breadth TRACE ACTUAL CODE PATHS — not guess from file names or conventions RE...
59
14699 dust-mcp-server dust-tt/dust
@runbooks/NEW_MCP_SERVER.md
59
14700 umbraco-auth-provider umbraco/umbraco-cms-backoffice-skills
Umbraco Auth Provider What is it? An Auth Provider enables external login (OAuth/SSO) for the Umbraco backoffice. It provides the UI component (login button) that connects to a backend authentication provider. The backend must be configured separately in C - this extension type handles the frontend presentation and behavior. Common providers include Google, Microsoft, GitHub, and custom OAuth providers. Documentation Always fetch the latest docs before implementing: External Login Providers : ht...
59