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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,437
总 Skills
161.5M
总安装量
2,741
贡献者
# Skill 仓库 描述 安装量
22601 docs-sync laurigates/claude-plugins
Docs Sync Overview Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements. Workflow Confirm scope and base branch Identify the current branch and default branch (usually main ). Prefer analyzing the current branch to keep work aligned with in-flight changes. If the current branch is not main , analyze only the diff vs main to scope doc updates. Avoid switching branches if it wo...
49
22602 speech-to-text connorads/dotfiles
ElevenLabs Speech-to-Text Transcribe audio to text with Scribe v2 - supports 90+ languages, speaker diarization, and word-level timestamps. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs import ElevenLabs client = ElevenLabs ( ) with open ( "audio.mp3" , "rb" ) as audio_file : result = client . speech_to_text . convert ( file = audio_file , model_id = "scribe_v2" ) print ( result . text ) JavaScript import { ElevenLabsClient } ...
49
22603 domain-separation groeimetai/snow-flow
Domain Separation for ServiceNow Domain Separation enables multi-tenancy by partitioning data and processes between domains. Domain Architecture TOP (Global) ├── Domain A (Customer 1) │ ├── Sub-domain A1 │ └── Sub-domain A2 └── Domain B (Customer 2) └── Sub-domain B1 Key Tables Table Purpose domain Domain definitions sys_user_has_domain User domain membership domain_path Domain hierarchy paths sys_db_object Table domain settings Domain Configuration (ES5) Create Do...
49
22604 golang-style fredrikaverpil/dotfiles
Go Coding Conventions Follow these conventions strictly when writing Go code. Happy Path Coding Structure code so the successful path flows straight down. Handle errors immediately, then continue with main logic. // Correct: happy path flows down. func ProcessUser(id string) (*User, error) { user, err := db.GetUser(id) if err != nil { return nil, fmt.Errorf("get user %s: %w", id, err) } if err := user.Validate(); err != nil { return nil, fmt.Errorf("validate ...
49
22605 siliconflow-api-skills wwwzhouhui/skills_collection
SiliconFlow API Skills Comprehensive assistance with SiliconFlow API development, generated from official documentation. When to Use This Skill This skill should be triggered when: Working with SiliconFlow API Asking about SiliconFlow features or APIs Implementing SiliconFlow solutions Debugging SiliconFlow code Learning SiliconFlow best practices Quick Reference Common Patterns Quick reference patterns will be added as you use the skill. Reference Files This skill includes comprehensive ...
49
22606 django framework pluginagentmarketplace/custom-plugin-python
Django Framework Overview Master Django, the high-level Python web framework that encourages rapid development and clean, pragmatic design. Learn to build secure, scalable web applications with Django's batteries-included approach. Learning Objectives Build full-stack web applications using Django MVC pattern Design and implement database models with Django ORM Implement user authentication and authorization Create RESTful APIs with Django REST Framework Deploy Django applications to production ...
49
22607 alicloud-ai-audio-cosyvoice-voice-clone cinience/alicloud-skills
Category: provider Model Studio CosyVoice Voice Clone Use the CosyVoice voice enrollment API to create cloned voices from public reference audio. Critical model names Use model="voice-enrollment" and one of these target_model values: cosyvoice-v3.5-plus cosyvoice-v3.5-flash cosyvoice-v3-plus cosyvoice-v3-flash cosyvoice-v2 Recommended default in this repo: target_model="cosyvoice-v3.5-plus" Region and compatibility cosyvoice-v3.5-plus and cosyvoice-v3.5-flash are available only in China mainland...
49
22608 cloudflare hoodini/ai-agents-skills
Cloudflare Platform Skill Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references. Your knowledge of Cloudflare APIs, types, limits, and pricing may be outdated. Prefer retrieval over pre-training — the references in this skill are starting points, not source of truth. Retrieval Sources Fetch the latest information before citing specific numbers, API signatures, or configuration options. Do not rely on baked-in...
49
22609 observability-monitoring manutej/luxor-claude-marketplace
Observability & Monitoring Complete observability stack with structured logging, error tracking, and web analytics. Cookbook - Complete These Recipes in Order Pino Logging Setup Configure structured logging with Pino. Outputs human-readable colorized logs in development and structured JSON in production for log aggregation services. curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/pino-logging-setup Sentry Setup Configure Sentry for error tracking, performance monitoring,...
49
22610 weightloss-analyzer huifer/wellally-health
分析减肥数据,计算代谢率,追踪能量缺口,管理减肥阶段。 功能 1. 身体成分分析 BMI计算与分类 - BMI = 体重(kg) / 身高(m)² - 分类标准(WHO亚洲标准): 偏瘦:BMI < 18.5 - 正常:18.5 ≤ BMI < 24 - 超重:24 ≤ BMI < 28 - 肥胖:BMI ≥ 28 体脂率评估 - 男性:15-20%(正常),20-25%(偏高),>25%(肥胖) - 女性:20-25%(正常),25-30%(偏高),>30%(肥胖) 围度分析 - 腰围评估 男性:< 90cm(正常),≥ 90cm(腹部肥胖) - 女性:< 85cm(正常),≥ 85cm(腹部肥胖) - 腰臀比 男性:< 0.9(正常),≥ 0.9(腹部肥胖) - 女性:< 0.85(正常),≥ 0.85(腹部肥胖) 理想体重计算 - BMI法:理想体重 = 身高(m)² × 22 - Broca法修正:理想体重 = (身高cm - 100) × 0.9 2. 代谢率计算 Harris-Benedict公式(1919原始版) -...
49
22611 content-brief nicepkg/ai-workflow
No SKILL.md available for this skill. View on GitHub
49
22612 dma-attack-techniques gmh5225/awesome-game-security
DMA Attack Techniques Overview This skill covers Direct Memory Access (DMA) attack resources from the awesome-game-security collection, focusing on FPGA-based PCIe attacks, pcileech usage, and hardware-level memory access techniques. DMA Fundamentals What is DMA Attack? DMA attacks exploit the ability of PCIe devices to directly access system memory without CPU involvement. An attacker can: - Read arbitrary physical memory - Write to physical memory - Bypass software-based protections - Remain...
49
22613 frontend architecture exceptionless/exceptionless
Frontend Architecture Located in src/Exceptionless.Web/ClientApp . The Svelte SPA is the primary client. Directory Structure src/ ├── lib/ │ ├── features/ Feature slices (vertical organization) │ │ ├── auth/ │ │ │ ├── api.svelte.ts │ │ │ ├── models/ │ │ │ ├── schemas.ts │ │ │ └── components/ │ │ ├── organizations/ │ │ ├── projects/ │ │ ├── events/ │ │ └── shared/ Cross-feature shared code │ ├── components/ App-wide shar...
49
22614 sustainability-esg travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
49
22615 task-management commontoolsinc/labs
Task Management Tasks are tracked in a simple TASKS.md file that both you and the user can edit. File Location Always use TASKS.md in the current working directory. If it exists, read/write to it If it doesn't exist, create it with the template below Dashboard Setup (First Run) A visual dashboard is available for managing tasks and memory. On first interaction with tasks: Check if dashboard.html exists in the current working directory If not, copy it from ${CLAUDE_PLUGIN_ROOT}/skills/dashboard.h...
49
22616 tool-ui-ux-pro-max heyvhuang/ship-faster
No SKILL.md available for this skill. View on GitHub
49
22617 doc-tasks vladm3105/aidoc-flow-framework
doc-tasks Purpose Create Task Breakdown (TASKS) - Layer 11 artifact in the SDD workflow that decomposes SPEC into actionable, AI-structured TODO tasks for implementation. Layer: 11 Upstream: BRD (Layer 1), PRD (Layer 2), EARS (Layer 3), BDD (Layer 4), ADR (Layer 5), SYS (Layer 6), REQ (Layer 7), IMPL (Layer 8), CTR (Layer 9), SPEC (Layer 10) Downstream Artifacts: Code (Layer 12) Prerequisites Upstream Artifact Verification (CRITICAL) Before creating this document, you MUST: List existing ...
49
22618 spreadsheet builder eddiebe147/claude-settings
Spreadsheet Builder The Spreadsheet Builder skill enables creation of professional Excel (.xlsx) and CSV files with advanced formatting, formulas, charts, and data analysis features. Using libraries like exceljs and xlsx , this skill handles everything from simple data exports to complex financial models and dashboards. Generate data reports, financial statements, inventory lists, analysis dashboards, and any tabular data visualization. Support for multiple sheets, cell styling, conditional form...
49
22619 pre-ship-review terrylica/cc-skills
Pre-Ship Review Structured quality review before shipping code at any checkpoint: PRs, releases, milestones. Catches the failures that occur at integration boundaries -- where contracts, examples, constants, and tests must all agree. Core thesis : AI-generated code excels at isolated components but fails systematically at boundaries between components. This skill systematically checks those boundaries. When to Use This Skill Use before any significant code shipment: Pull requests with multiple n...
49
22620 aviz-skills-installer aviz85/claude-skills-library
AVIZ Skills Installer A conversational guide to installing skills from the AVIZ Skills Library. Important: Fetch Real-Time Data DO NOT use hardcoded skill lists. Always fetch current data from these sources: Skills List & Setup Guides: https://aviz.github.io/claude-skills-library/ GitHub Repository: https://github.com/aviz85/claude-skills-library Individual Skill Pages: https://aviz.github.io/claude-skills-library/skills/{skill-name}.html Use WebFetch or WebSearch to get the latest availabl...
49
22621 secure-auth jamditis/claude-skills-journalism
Secure authentication Production-ready authentication patterns. These aren't the simplest implementations—they're the ones that won't get you sued. Authentication architecture decision Sessions vs JWTs Use sessions when: Server-rendered application Need immediate logout/revocation Single domain Simpler to implement correctly Use JWTs when: Multiple services need to verify auth Stateless architecture required Mobile app + API Third-party integrations Common mistake: Using JWTs because a tu...
49
22622 systematic-debugging guanyang/antigravity-skills
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
49
22623 typescript conventions exceptionless/exceptionless
All single-line control statements need braces: ``` // ✅ Good: Always use braces if (condition) { doSomething(); } for (const item of items) { process(item); } // ❌ Bad: No braces if (condition) doSomething(); ``` Interface Naming Follow HTTP verb prefixes for API-related types: ``` // Request/Response interfaces interface PostOrganizationRequest { name: string; billing_email: string; } interface GetOrganizationParams { id: string; } interface PatchUserRequest { ...
48
22624 laravel-architecture fusengine/agents
High-level architectural guidance for Laravel applications. Core Concepts [philosophy.md](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-architecture/references/philosophy.md) - Foundational principles: - Declarative code above all else - Strict separation of concerns - Type safety first - All core architectural principles [patterns.md](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-architecture/references/patterns.md) - Pattern overview: - Acti...
48
22625 openharmony-cpp openharmonyinsight/openharmony-skills
OpenHarmony C++ Coding Skills Core Mandates (Common Pitfalls) These rules are strictly enforced in OpenHarmony and often differ from general C++ projects. 1. Strict Naming & Formatting Extensions: Always use .cpp and .h . Files: Filenames must match class names (Unix-like, e.g., my_class.cpp ). Variables: Global vars must start with g_ (e.g., g_config ). Class members must end with _ (e.g., value_ ). Braces: K&R Style is mandatory (opening brace on the same line). Details: See naming_formatting....
48
22626 busirocket-tailwindcss-v4 busirocket/agents-skills
Setup and styling patterns for Tailwind CSS v4 projects. When to Use Use this skill when: - Setting up Tailwind CSS v4 in a project - Writing component styles with Tailwind utilities - Deciding when to extract custom CSS vs using utilities - Avoiding style drift and maintaining consistency Non-Negotiables (MUST) - Import Tailwind via a single global CSS entry: `@import 'tailwindcss';` - Keep that global CSS imported from the root layout. - Prefer Tailwind utilities in `className` for...
48
22627 book-writing-workspace aktsmm/agent-skills
Book Writing Workspace Set up a professional book writing workspace with AI-assisted workflow support. When to use Creating a new book or technical writing project Setting up Markdown → Re:VIEW → PDF workflow Establishing multi-chapter document structure with AI agent support Setup Workflow Step 1: Gather Project Information Ask the user for project configuration: 📚 Book Writing Workspace Setup Please provide the following information: 1. Project Name (folder name, e.g., "my-book-project")...
48
22628 release-gate xiaolai/vmark
Release Gate Overview Run the full VMark gate ( pnpm check:all ) and summarize outcomes. Workflow Confirm current branch and dirty state ( git status -sb ). Run the full gate: pnpm check:all Or run individual steps: pnpm lint && pnpm test && pnpm build If failures occur, capture the first error block and stop. Report: Which steps ran (lint/test/build) Pass/fail status Key errors and next actions Notes Prefer the full gate over partial commands unless asked. Do not run interactive dev servers.
48
22629 test-focus laurigates/claude-plugins
Context Project files: ! find . -maxdepth 1 \( -name 'pyproject.toml' -o -name 'package.json' -o -name 'Cargo.toml' -o -name 'go.mod' \) Playwright config: ! find . -maxdepth 1 -name 'playwright.config.*' Vitest config: ! find . -maxdepth 1 \( -name 'vitest.config.*' -o -name 'vite.config.*' \) Jest config: ! find . -maxdepth 1 -name 'jest.config.*' Pytest config: ! grep -l "pytest" pyproject.toml setup.cfg Package.json exists: ! find . -maxdepth 1 -name 'package.json' -type f Parameters $1 (req...
48
22630 configure-justfile laurigates/claude-plugins
/configure:justfile Check and configure project Justfile against project standards. When to Use This Skill Use this skill when... Use another approach when... Setting up a new Justfile for a project Project already uses Make exclusively and migration is not desired — use /configure:makefile Auditing existing Justfile for missing standard recipes Writing complex custom recipes — use justfile-expert skill Migrating from Makefile to Justfile Project has no task runner needs (single-file scripts) En...
48
22631 test-automation vladm3105/aidoc-flow-framework
test-automation Description: Automated test generation, BDD execution, coverage analysis, and contract testing Category: Quality Assurance & Testing Complexity: High (multi-framework integration + coverage analysis) Purpose Transform SDD artifacts (BDD scenarios, requirements, contracts) into executable test suites with comprehensive coverage tracking. Ensures code implementation matches specifications and contracts. Capabilities 1. BDD Scenario Generation Parse BDD documents (Given-When-T...
48
22632 collaborative-ideation qodex-ai/ai-agent-skills
Brainstorming Ideas Into Designs Overview Help turn ideas into fully formed designs and specs through natural collaborative dialogue. Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design in small sections (200-300 words), checking after each section whether it looks right so far. The Process Understanding the idea: Check out the current project state first (files, docs, recent co...
48
22633 github-proxy volcengine/openviking
GitHub 国内代理加速 Skill 使用 githubproxy.cc 代理服务,为国内访问 GitHub 提供加速支持。 代理服务 当前使用的代理服务: 主要服务 : githubproxy.cc (测试有效,加速约 3 倍) 备用服务 : ghfast.top 使用方法 1. Git Clone 加速 将 GitHub 仓库链接前加上 https://githubproxy.cc/ 前缀: 原始链接 git clone https://github.com/username/repo.git 加速链接 git clone https://githubproxy.cc/https://github.com/username/repo.git 2. 文件下载加速 支持以下类型的 GitHub 资源加速: Raw 文件 : https://raw.githubusercontent.com/... Release 文件 : 项目发布的附件 Archive 压缩包 : 仓库打包下载 Gist 文件 : gist.github.com 或 gist.githubusercontent...
48
22634 ink-component-patterns thebushidocollective/han
You are an expert in building terminal UIs with Ink, React for the terminal. Core Principles - Use functional components with TypeScript for type safety - Leverage Ink's built-in components (Box, Text, Newline, Spacer) - Keep components focused and composable - Use proper prop types and interfaces - Handle terminal resizing gracefully Component Structure Basic Component ``` import { Box, Text } from 'ink'; import React from 'react'; interface MyComponentProps { title: string; it...
48
22635 nestjs-testing thebushidocollective/han
Master testing in NestJS for building reliable applications with comprehensive unit, integration, and end-to-end tests. Unit Testing Setup Creating and configuring test modules with TestingModule. ``` import { Test, TestingModule } from '@nestjs/testing'; import { UserService } from './user.service'; import { getRepositoryToken } from '@nestjs/typeorm'; import { User } from './entities/user.entity'; describe('UserService', () => { let service: UserService; let module: TestingModule; ...
48
22636 godot-adapt-mobile-to-desktop thedivergentai/gd-agentic-skills
Adapt: Mobile to Desktop Expert guidance for scaling mobile games to desktop platforms. NEVER Do NEVER keep touch-only controls — Add mouse/keyboard alternatives. Touch controls on desktop feel awkward and limit precision. NEVER lock to mobile resolution — Desktop can handle 1920x1080+ and higher frame rates. Upscale UI, increase render distance. NEVER hide graphics settings — Desktop players expect quality options (resolution, VSync, shadows, anti-aliasing). NEVER use mobile-sized UI — Touch ta...
48
22637 cloudformation itsmostafa/aws-agent-skills
AWS CloudFormation AWS CloudFormation provisions and manages AWS resources using templates. Define infrastructure as code, version control it, and deploy consistently across environments. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Templates JSON or YAML files defining AWS resources. Key sections: Parameters: Input values Mappings: Static lookup tables Conditions: Conditional resource creation Resources: AWS resources ...
48
22638 performance profiler eddiebe147/claude-settings
Performance Profiler Identify and eliminate performance bottlenecks. From CPU profiling to database query optimization, systematically improve application speed and efficiency. Core Workflows Workflow 1: Application Profiling Baseline - Establish current performance metrics Profiling - Run CPU, memory, and I/O profilers Hotspot Analysis - Identify slow code paths Optimization - Implement targeted improvements Verification - Measure improvement Workflow 2: Database Optimization Query Analysis - I...
48
22639 port-c-module redisearch/redisearch
Port Module Skill Guide for porting a C module to Rust. Arguments The module name to port should be provided as an argument (e.g., /port-module triemap ). Module to port: $ARGUMENTS Usage Use this skill when starting to port a C module to Rust. Instructions 1. Analyze the C Code First, understand the C module you're porting (look for $ARGUMENTS.c and $ARGUMENTS.h in src/ ): Read the .c and .h files in src/ Identify what is exposed by the header file: Does the rest of the codebase have access to ...
48
22640 carousel designer eddiebe147/claude-settings
Carousel Designer Design educational carousel posts for Instagram and LinkedIn that inform and engage When to Use This Skill Use this skill when you need to: Create visual assets and layouts Improve user experience Develop design systems Not recommended for: Tasks requiring copywriting data analysis Quick Reference Action Command/Trigger Create carousel designer carousel post Review and optimize review carousel designer Get best practices carousel designer best practices Core Workflows Workflow ...
48
22641 solidity-coding 0xlayerghost/solidity-agent-kit
Solidity Coding Standards Language Rule Always respond in the same language the user is using. If the user asks in Chinese, respond in Chinese. If in English, respond in English. Coding Principles Pragma : Use pragma solidity ^0.8.19; — keep consistent across all files in the project Dependencies : OpenZeppelin Contracts 4.9.x, manage imports via remappings.txt Error Handling : Prefer custom errors over require strings — saves gas and is more expressive Define: error InsufficientBalance(uint256 ...
48
22642 dependency-auditor ovachiever/droid-tings
Dependency Auditor Skill Type: POWERFUL Category: Engineering Domain: Dependency Management & Security Overview The Dependency Auditor is a comprehensive toolkit for analyzing, auditing, and managing dependencies across multi-language software projects. This skill provides deep visibility into your project's dependency ecosystem, enabling teams to identify vulnerabilities, ensure license compliance, optimize dependency trees, and plan safe upgrades. In modern software development, dependencies f...
48
22643 technical-analyst nicepkg/ai-workflow
Technical Analyst Overview This skill enables comprehensive technical analysis of weekly price charts. Analyze chart images to identify trends, support and resistance levels, moving average relationships, volume patterns, and develop probabilistic scenarios for future price movement. All analysis is conducted objectively using only chart data, without influence from news, fundamentals, or market sentiment. Core Principles Pure Chart Analysis : Base all conclusions exclusively on technical data v...
48
22644 safe-calculator cisco-ai-defense/skill-scanner
Safe Calculator Safely evaluates mathematical expressions. Usage Provide a mathematical expression and get the result.
48
22645 go grafana/loki
Go (Golang) You are an expert in Go development with deep knowledge of APIs, microservices, and backend systems. Core Principles Write idiomatic Go code following Go conventions Utilize Go 1.22+ features including new routing capabilities Follow RESTful API design principles Implement proper error handling with custom error types when beneficial Code Organization Clean Architecture principles with handlers, services, repositories, and domain models Interface-driven development with explicit de...
48
22646 woocommerce-code-review secondsky/claude-skills
No SKILL.md available for this skill. View on GitHub
48
22647 blueprint-promote laurigates/claude-plugins
Copy a generated rule to the custom rules layer for preservation. Purpose : Copy generated content from .claude/rules/ to preserve modifications Mark as acknowledged in manifest to prevent overwrite warnings Generated rules in .claude/rules/ are the standard location (v3.0) Usage : /blueprint:promote [name] Examples : /blueprint:promote testing-strategies - Acknowledge a rule's modifications Steps : Parse argument : Extract name from arguments If no name provided, list available generated rules ...
48
22648 erpnext-impl-controllers openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Controllers - Implementation This skill helps you determine HOW to implement server-side DocType logic. For exact syntax, see erpnext-syntax-controllers . Version : v14/v15/v16 compatible Main Decision: Controller vs Server Script? ┌───────────────────────────────────────────────────────────────────┐ │ WHAT DO YOU NEED? │ ├───────────────────────────────────────────────────────────────────┤ │ ...
48
22649 pdf project-n-e-k-o/n.e.k.o
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
48
22650 transition-sequences dylantarre/animation-principles
Transition Sequence Animations Apply Disney's 12 principles to choreographed multi-step motion. Principle Application Squash & Stretch: Each element in sequence can compress/expand independently for organic feel. Anticipation: Sequence starts with a setup phase. Brief pause or gather before motion begins. Staging: Direct attention through the sequence. Most important element animates first or last. Straight Ahead vs Pose-to-Pose: Plan keyframes for each step. Map the entire sequence before...
48