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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,502
总 Skills
163.2M
总安装量
2,744
贡献者
# Skill 仓库 描述 安装量
23301 atomic-design-atoms thebushidocollective/han
Atomic Design: Atoms Master the creation of atomic components - the fundamental, indivisible building blocks of your design system. Atoms are the smallest functional units that cannot be broken down further without losing meaning. What Are Atoms? Atoms are the basic UI elements that serve as the foundation for everything else in your design system. They are: Indivisible: Cannot be broken down into smaller functional units Reusable: Used throughout the application in various contexts Stateles...
46
23302 spring-security teachingai/full-stack-skills
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
46
23303 vueuse-math-skilld harlan-zw/vue-ecosystem-skills
vueuse/vueuse @vueuse/math Math functions for VueUse Version: 14.2.1 (Feb 2026) Deps: @vueuse/shared@14.2.1 Tags: 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. DEPRECATED: and , or , not — v14 deprecated in favor of original names logicAnd , logicOr , logicNot source BREAKING: Requires Vue 3.5+ — v14 moved...
46
23304 form builder eddiebe147/claude-settings
Form Builder The Form Builder skill automates the creation of fillable forms, surveys, questionnaires, and interactive documents. It handles various form types including registration forms, feedback surveys, applications, intake forms, and assessment tools. The skill supports multiple output formats (PDF with fillable fields, HTML forms, Google Forms integration) with validation rules, conditional logic, and data collection capabilities. Generate professional forms with proper field types, valid...
46
23305 nextjs-static-shells joelhooks/joelclaw
Static-First Next.js 16 Patterns Build a static shell first , then cut small dynamic holes where personalization or request-specific behavior is required. Static shell = deterministic, cacheable, fast first paint Dynamic holes = isolated request/user behavior streamed with Suspense Client interactivity = provider islands, not global client sprawl Route Architecture: Entry + Static + Slots Pattern Entry component (server, request-aware) Reads params/search/auth/session/cookies Validates access, r...
46
23306 checkpoint-resume yonatangross/orchestkit
Checkpoint Resume Rate-limit-resilient pipeline orchestrator. Saves progress to .claude/pipeline-state.json after every phase so long sessions survive interruptions. Quick Reference Category Rule Impact Key Pattern Phase Ordering ${CLAUDE_PLUGIN_ROOT}/skills/checkpoint-resume/rules/ordering-priority.md CRITICAL GitHub issues/commits first, file-heavy phases last State Writes ${CLAUDE_PLUGIN_ROOT}/skills/checkpoint-resume/rules/state-write-timing.md CRITICAL Write after every phase, never batch M...
46
23307 frontend-design mitsuhiko/agent-stuff
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
46
23308 swift-patterns efremidze/swift-patterns-skill
swift-patterns Review, refactor, or build SwiftUI features with correct state management, modern API usage, optimal view composition, and performance-conscious patterns. Prioritize native APIs, Apple design guidance, and testable code structure. This skill focuses on facts and best practices without enforcing specific architectural patterns. Workflow Decision Tree 1) Review existing SwiftUI code → Read references/workflows-review.md for review methodology Check state management against prope...
46
23309 workflow-template-seeder heyvhuang/ship-faster
Workflow: Template Seeder (Skills → Templates) Goal: Turn a short template spec into a runnable, documented template under templates/ . This workflow is skills-first : Use skills as the primary execution engine Treat templates as “frozen outputs” (examples + regression references), not the mainline product Input (pass paths only) repo_root : Ship Faster repository root (where templates/ lives) run_dir : runs/template-seeder/active/<run_id>/ template_spec.md : One-page spec (what it is, target us...
46
23310 accessibility exceptionless/exceptionless
Accessibility (a11y) Comprehensive accessibility guidelines based on WCAG 2.2 and Lighthouse accessibility audits. Goal: make content usable by everyone, including people with disabilities. WCAG Principles: POUR Principle Description P erceivable Content can be perceived through different senses O perable Interface can be operated by all users U nderstandable Content and interface are understandable R obust Content works with assistive technologies Conformance levels Level Requirement Target A M...
46
23311 1k-pkg-upgrade-review onekeyhq/app-monorepo
Package Upgrade Review Evaluates npm/yarn package version upgrades by performing source-level diff analysis, tracing all call sites, and producing a structured compatibility report. Output language : Chinese (matching team conventions). Quick Reference Topic Guide Description Review workflow review-workflow.md Step-by-step review process Report template report-template.md Output format and risk guidelines Example report example-report.md Real case: @isaacs/brace-expansion 5.0.0 -> 5.0.1 When to ...
46
23312 refactoring s-hiraoku/synapse-a2a
Resources scripts/ validate-refactoring.sh references/ refactoring-patterns.md Refactoring Quality Skill This skill teaches you how to perform safe, systematic code refactoring using GoodVibes precision tools. Refactoring improves code structure and maintainability without changing external behavior, making future development faster and reducing bugs. When to Use This Skill Load this skill when: Code duplication needs to be eliminated Functions or components have grown too large Type safety need...
46
23313 api-hardening jamditis/claude-skills-journalism
API hardening Defense-in-depth patterns for protecting APIs from abuse, injection attacks, and data leakage. Rate limiting Why it matters Without rate limiting: Brute force attacks succeed APIs get DDoS'd by accident or intent One bad actor affects all users You get a surprise bill from your cloud provider Express.js with express-rate-limit const rateLimit = require('express-rate-limit'); const RedisStore = require('rate-limit-redis').default; const { createClient } = require('redis'); cons...
46
23314 adding-tauri-system-tray dchuk/claude-code-tauri-skills
Tauri System Tray Implementation This skill covers implementing system tray (notification area) functionality in Tauri v2 applications. Configuration Enable the tray-icon feature in src-tauri/Cargo.toml: [ dependencies ] tauri = { version = "2", features = ["tray-icon"] } Basic Tray Setup Create a tray icon in src-tauri/src/lib.rs: use tauri::tray::TrayIconBuilder; [cfg_attr(mobile, tauri::mobile_entry_point)] pub fn run() { tauri::Builder::default() .setup(|app| { ...
46
23315 maui-blazor-development ibutters/claudecodeplugins
.NET MAUI Blazor Hybrid Development Expert guidance for building cross-platform apps with .NET MAUI and Blazor. Implementation Workflow 1. Analysis Phase (Required) Before implementation, determine: App type: Pure MAUI Blazor or MAUI + Blazor Web App (shared UI) Platform targets: Android, iOS, Windows, macOS Native features needed: Sensors, camera, file system, notifications State management: Component state, MVVM, or hybrid approach Navigation pattern: Blazor-only, Shell, or mixed navigatio...
46
23316 axiom vm0-ai/vm0-skills
Axiom Axiom is a cloud-native observability platform for storing, querying, and analyzing log and event data at scale. Use the REST API to ingest data, run queries using APL (Axiom Processing Language), and manage datasets programmatically. Official docs: https://axiom.co/docs/restapi/introduction When to Use Use this skill when you need to: Send logs, metrics, or event data to Axiom Query and analyze data using APL (Axiom Processing Language) Manage datasets, monitors, and annotations Buil...
46
23317 ios-ui-refactor pproenca/dot-skills
Apple HIG SwiftUI iOS 26 / Swift 6.2 Best Practices A principal designer's lens for evaluating and refactoring SwiftUI interfaces to Apple-quality standards, grounded in Rams, Segall, and Edson. Contains 51 rules across 8 categories, each grounded in specific principles from three foundational design texts: Dieter Rams — Ten Principles for Good Design ("less, but better," "design should be honest") Ken Segall — Insanely Simple (simplicity as a core principle for intuitive, beautiful products) Jo...
46
23318 database-expert caomeiyouren/momei
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...
46
23319 email-triage terrylica/cc-skills
Email Triage You are an email triage system. Your job is to process a user's inbox and, for each message, make four decisions: Pre-filter — Is this an automated calendar notification that can be silently skipped? Respond? — Does the latest message require the user to personally write a reply? Important? — Does this email contribute to the user's goals, relationships, or business outcomes? Urgent? — Does this email require action soon or have a time-sensitive deadline? For emails that need a resp...
46
23320 rhythm-pacing dylantarre/animation-principles
Rhythm & Pacing Think like a composer scoring with motion. Animation is visual music. Beats, measures, crescendos, rests—all translate to movement and stillness across time. Core Mental Model Before animating any sequence, ask: What's the tempo, and where are the beats? Every good scene has rhythm. Fast-fast-slow. Action-rest-action. The pattern creates expectation; breaking the pattern creates surprise. Master the beat. The 12 Principles Through Music Timing — Tempo control. Frames per ac...
46
23321 azure-ai-formrecognizer-java sickn33/antigravity-awesome-skills
Azure Document Intelligence (Form Recognizer) SDK for Java Build document analysis applications using the Azure AI Document Intelligence SDK for Java. Installation < dependency > < groupId > com.azure </ groupId > < artifactId > azure-ai-formrecognizer </ artifactId > < version > 4.2.0-beta.1 </ version > </ dependency > Client Creation DocumentAnalysisClient import com . azure . ai . formrecognizer . documentanalysis . DocumentAnalysisClient ; import com . azure . ai . formrecognizer . document...
46
23322 linear-labels finesssee/linear-cli
Labels List labels linear-cli l list Project labels linear-cli l list --type issue Issue labels Create label linear-cli l create "Feature" --color "10B981" linear-cli l create "Bug" --color "EF4444" --id-only Delete label linear-cli l delete LABEL_ID linear-cli l delete LABEL_ID --force Agent-optimized linear-cli l list --output json --compact Flags Flag Purpose --id-only Return ID only --output json JSON output --force Skip confirmation
46
23323 skill-updater oimiragieo/agent-studio
Skill Updater Overview Use this skill to refresh an existing skill safely: research current best practices, compare against current implementation, generate a TDD patch backlog, apply updates, and verify ecosystem integration. When to Use Reflection flags stale or low-performing skill guidance EVOLVE determines capability exists but skill quality is outdated User asks to audit/refresh an existing skill Regression trends point to weak skill instructions, missing schemas, or stale command/hook wir...
46
23324 godot-genre-shooter thedivergentai/gd-agentic-skills
Genre: Shooter (FPS/TPS) Gunplay feel, responsive combat, and competitive balance define shooters. Available Scripts advanced_weapon_controller.gd Expert pattern for recoil, bloom, and dual hitscan/projectile systems with object pooling notes. Core Loop Engage → Aim → Fire → Kill Confirm → Acquire Next NEVER Do in Shooters NEVER use _process() for hit detection — Hitscan MUST use physics raycasts in _physics_process() or on-demand. Frame-rate dependent accuracy breaks competitive integrity. NEVE...
46
23325 audience segmenter eddiebe147/claude-settings
Audience Segmenter Divide your audience into meaningful segments that enable targeted, personalized marketing at scale. This skill helps you identify distinct customer groups based on behavior, demographics, psychographics, and value, then tailor your messaging and offers accordingly. One-size-fits-all marketing underperforms. This skill provides frameworks for discovering natural audience clusters, defining segment criteria, and developing differentiated strategies for each group. The result: h...
46
23326 react-hooks-patterns thebushidocollective/han
Master React Hooks to build modern, functional React components. This skill covers built-in hooks, custom hooks, and advanced patterns for state management and side effects. useState Hook ``` import { useState } from 'react'; function Counter() { const [count, setCount] = useState(0); const increment = () => setCount(count + 1); const decrement = () => setCount(prev => prev - 1); return ( <div> <p>Count: {count}</p> <button onClick={increment}>+</button> <...
46
23327 design-critique petekp/claude-code-setup
/design-critique If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Get structured design feedback across multiple dimensions. Usage /design-critique $ARGUMENTS Review the design: @$1 If a Figma URL is provided, pull the design from Figma. If a file is referenced, read it. Otherwise, ask the user to describe or share their design. What I Need From You The design : Figma URL, screenshot, or detailed description Context : What is this? Who is it for?...
46
23328 kanban duc01226/easyplatform
Provides comprehensive Kanban methodology capabilities for the Golden Armada AI Agent Fleet Platform. When to Use This Skill Activate this skill when working with: - Kanban board setup - WIP limit configuration - Flow metrics analysis - Continuous delivery workflows - Pull-based systems Kanban Board Structure ``` ┌────────────┬────────────┬────────────┬────────────┬────────────┐ │ BACKLOG │ TO DO │ IN PROGRESS│ REVIEW │ DONE │ │ (∞) │ (10) │ (5) │...
46
23329 web-artifacts-builder guanyang/antigravity-skills
Web Artifacts Builder To build powerful frontend claude.ai artifacts, follow these steps: Initialize the frontend repo using scripts/init-artifact.sh Develop your artifact by editing the generated code Bundle all code into a single HTML file using scripts/bundle-artifact.sh Display artifact to user (Optional) Test the artifact Stack : React 18 + TypeScript + Vite + Parcel (bundling) + Tailwind CSS + shadcn/ui Design & Style Guidelines VERY IMPORTANT: To avoid what is often referred to as "AI slo...
46
23330 publication-converter qodex-ai/ai-agent-skills
Markdown to EPUB Converter Skill This skill transforms markdown documents into professional EPUB ebook files. Perfect for converting research documents, blog posts, articles, or chat conversation summaries into portable, device-agnostic ebook formats. Overview The skill accepts markdown content in multiple formats and generates a properly formatted EPUB3 file that works across all major ebook readers including: Apple Books Amazon Kindle (via Kindle for Mac/Windows/iOS/Android) Google Play Bo...
46
23331 video-tool alejandro-ao/video-tool-cli
Video Tool CLI AI-powered video processing toolkit with ffmpeg operations, Whisper transcription, and content generation. Installation Status video-tool: !which video-tool > /dev/null && echo "INSTALLED" || echo "NOT INSTALLED - run installation below" uv: !which uv > /dev/null && echo "INSTALLED" || echo "NOT INSTALLED" If video-tool is not installed, run the installation commands below before proceeding. Installation Install uv first (if not installed) curl -LsSf https://astral.sh/uv/ins...
46
23332 nx-workspace tech-leads-club/agent-skills
Nx Workspace Exploration This skill provides read-only exploration of Nx workspaces. Use it to understand workspace structure, project configuration, available targets, and dependencies. Keep in mind that you might have to prefix commands with npx / pnpx / yarn if nx isn't installed globally. Check the lockfile to determine the package manager in use. Listing Projects Use nx show projects to list projects in the workspace. The project filtering syntax ( -p / --projects ) works across many Nx com...
46
23333 wms-testing-patterns proffesor-for-testing/agentic-qe
WMS Testing Patterns <default_to_action> When testing Warehouse Management Systems: VALIDATE inventory accuracy (receipt, putaway, cycle count, adjustments) TEST pick/pack/ship workflows end-to-end (wave release -> shipment confirm) VERIFY EDI message processing (856 ASN, 940 Order, 945 Confirmation, 943/944 Stock) ASSERT RF/barcode scanning flows (scan -> validate -> update -> confirm) EXERCISE allocation and replenishment logic (FIFO, FEFO, lot control) TEST WMS-ERP integration (inventory sync...
46
23334 context-optimization guanyang/antigravity-skills
Context Optimization Techniques Context optimization extends the effective capacity of limited context windows through strategic compression, masking, caching, and partitioning. The goal is not to magically increase context windows but to make better use of available capacity. Effective optimization can double or triple effective context capacity without requiring larger models or longer contexts. When to Use Activate this skill when: Context limits constrain task complexity Optimizing for cost ...
46
23335 alicloud-ai-audio-livetranslate cinience/alicloud-skills
Category: provider Model Studio Qwen LiveTranslate Validation mkdir -p output/alicloud-ai-audio-livetranslate python -m py_compile skills/ai/audio/alicloud-ai-audio-livetranslate/scripts/prepare_livetranslate_request.py && echo "py_compile_ok" > output/alicloud-ai-audio-livetranslate/validate.txt Pass criteria: command exits 0 and output/alicloud-ai-audio-livetranslate/validate.txt is generated. Output And Evidence Save translation session payloads and response summaries under output/alicloud-ai...
46
23336 fundraising strategist eddiebe147/claude-settings
Fundraising Strategist Plan fundraising rounds, target investors, and develop raise strategies When to Use This Skill Use this skill when you need to: Improve business operations and strategy Make data-driven business decisions Optimize processes and outcomes Not recommended for: Tasks requiring creative design work technical coding Quick Reference Action Command/Trigger Create fundraising strategist fundraising strategy Review and optimize review fundraising strategist Get best practices fundra...
46
23337 workflow-template-extractor heyvhuang/ship-faster
Workflow: Template Extractor (Real Project → Template) Goal: Turn a real project into a shareable, runnable template in templates/ with minimal manual cleanup. This is intended for “proven projects” you want to reuse as a baseline for future builds. Input (pass paths only) source_repo_root : Path to the real project target_repo_root : Ship Faster repository root (where templates/ lives) run_dir : runs/template-extractor/active/<run_id>/ extract_spec.md : What to keep/remove/generalize (brand, co...
46
23338 sentry-setup-ai-monitoring getsentry/agent-skills
All Skills > Feature Setup > AI Monitoring Setup Sentry AI Agent Monitoring Configure Sentry to track LLM calls, agent executions, tool usage, and token consumption. Invoke This Skill When User asks to "monitor AI/LLM calls" or "track OpenAI/Anthropic usage" User wants "AI observability" or "agent monitoring" User asks about token usage, model latency, or AI costs Important: The SDK versions, API names, and code samples below are examples. Always verify against docs.sentry.io before implementing...
46
23339 farming-expert personamanagmentlayer/pcl
Expert guidance for precision agriculture, farm management systems, crop monitoring, IoT sensors, and agricultural technology. Core Concepts Precision Agriculture - GPS-guided equipment - Variable rate technology - Crop monitoring and sensors - Soil analysis and mapping - Drone/satellite imagery - Automated irrigation systems Farm Management - Crop planning and rotation - Resource optimization - Yield prediction - Weather forecasting integration - Equipment maintenance - Financ...
46
23340 kinesis-stream-processor dengineproblem/agents-monorepo
AWS Kinesis Stream Processor Expert in building real-time data streaming applications with AWS Kinesis. Core Concepts Kinesis Components Component Purpose Use Case Data Streams Real-time data ingestion Custom processing, low latency Data Firehose Delivery to destinations S3, Redshift, Elasticsearch Data Analytics SQL-based processing Real-time analytics Video Streams Video streaming IoT, media processing Key Limits Kinesis Data Streams : per_shard : write : "1,000 records/sec OR 1 MB/sec" read :...
46
23341 review-merge-readiness heyvhuang/ship-faster
Requesting Code Review (Structured Review: Requirements Alignment + Production Readiness) Goal: Make code review a repeatable process, not random comments. Core principle: Review early, review often. When Review is Required Mandatory: After completing important features After each batch in workflow-execute-plans ends (default 3 tasks per batch) Before merging to main branch Optional but valuable: When stuck (get a fresh perspective) Before major refactoring (establish baseline first) After fixin...
46
23342 azure-expert questfortech-investments/claude-code-skills
Azure Expert Overview Transform into an Azure cloud expert with comprehensive knowledge of Azure services, architecture patterns, deployment strategies, and best practices. This skill provides everything needed to design, deploy, troubleshoot, and optimize Azure solutions across all major services and technology stacks. Core Capabilities 1. Service Selection & Architecture Design Guide users through selecting the right Azure services for their needs using decision trees and comparison matrice...
46
23343 agent-teams devxoul/agent-messenger
Agent Teams Skill Load with: base.md + code-review.md + security.md + session-management.md Purpose: Every project initialized with claude-bootstrap runs as a coordinated team of AI agents. This is the default workflow, not optional. Teams enforce a strict TDD pipeline where no step can be skipped. Requires: CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 environment variable. Core Principle Every feature follows an immutable pipeline enforced by task dependencies: ┌──────────────────────────────────────...
46
23344 supabase heyvhuang/ship-faster
Supabase Core Principles 1. Supabase changes frequently — verify against current docs before implementing. Do not rely on training data for Supabase features. Function signatures, config.toml settings, and API conventions change between versions. Before implementing, look up the relevant topic using the documentation access methods below. 2. Verify your work. After implementing any fix, run a test query to confirm the change works. A fix without verification is incomplete. 3. Recover from errors...
46
23345 react-native-unistyles-v3 jpudysz/react-native-unistyles
React Native Unistyles v3 Skill You are assisting with React Native Unistyles v3 styling. v3 is a zero-re-render styling library with a C++ core (Nitro Modules) and Babel plugin that processes StyleSheets at build time. It replaces React Native's StyleSheet with a reactive, theme-aware, responsive system. Prerequisites React Native 0.78+ with New Architecture mandatory (default from RN 0.83+) React 19+ (enforced at runtime) react-native-nitro-modules (native bridge dependency) react-native-edge-...
46
23346 integration-spec dengineproblem/agents-monorepo
Integration Specification Writer Expert in writing comprehensive integration specifications that serve as contracts between systems. Essential Components Every integration spec must include: Integration Overview : Purpose, scope, and high-level architecture Authentication & Authorization : Security mechanisms and token handling Endpoint Definitions : Complete API contract with request/response schemas Data Models : Structured definitions of all data objects Error Handling : Comprehensive error c...
46
23347 ast-grep ampcode/amp-contrib
ast-grep Code Search Overview This skill helps translate natural language queries into ast-grep rules for structural code search. ast-grep uses Abstract Syntax Tree (AST) patterns to match code based on its structure rather than just text, enabling powerful and precise code search across large codebases. When to Use This Skill Use this skill when users: Need to search for code patterns using structural matching (e.g., "find all async functions that don't have error handling") Want to locate ...
46
23348 marketing-operations lotosbin/claude-skills
No SKILL.md available for this skill. View on GitHub
46
23349 rag-implementation ovachiever/droid-tings
RAG Implementation Master Retrieval-Augmented Generation (RAG) to build LLM applications that provide accurate, grounded responses using external knowledge sources. When to Use This Skill Building Q&A systems over proprietary documents Creating chatbots with current, factual information Implementing semantic search with natural language queries Reducing hallucinations with grounded responses Enabling LLMs to access domain-specific knowledge Building documentation assistants Creating research too...
46
23350 incremental-commits epicenterhq/epicenter
Incremental Commits When a feature touches multiple files, implement in waves . Each wave is one logical concern, one commit. This creates a clean git history that tells a story. The Pattern Wave 1: Foundation (types, interfaces) ↓ Wave 2: Factories/Builders (functions that create instances) ↓ Wave 3: Contracts/APIs (public interfaces that use types) ↓ Wave 4: Infrastructure (utilities, converters, dependencies) ↓ Wave 5: Consumers (apps, UI, integrations) Not every change needs all waves. A sim...
46