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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,390
总 Skills
87.2M
总安装量
2,570
贡献者
# Skill 仓库 描述 安装量
24301 vvvv-spreads tebjan/vvvv-skills
vvvv Spreads What Are Spreads Spread<T> is vvvv's immutable collection type, conceptually similar to ImmutableArray<T> . It is the primary way to pass collections between nodes. Key properties: Immutable — never modify in place, always create new spreads Value semantics — two spreads with same elements are considered equal Cyclic indexing — in visual patches, indexing wraps around (not in C API) Never null — use Spread<T>.Empty instead of null Creating Spreads SpreadBuilder (Primary Method) var ...
34
24302 configuring-tauri-csp dchuk/claude-code-tauri-skills
Tauri Content Security Policy (CSP) Configuration This skill covers Content Security Policy configuration for Tauri v2 desktop applications. Why CSP Matters in Tauri CSP is a security mechanism that mitigates common web vulnerabilities in Tauri applications: XSS Prevention : Restricts which scripts can execute, blocking injected malicious code Resource Control : Limits where the WebView can load assets from (scripts, styles, images, fonts) Trust Boundaries : Strengthens the isolation between fro...
34
24303 doc-project molechowski/claude-skills
Project Documentation Sync Update all project documentation files in one pass by delegating to specialized skills. Workflow 1. Analyze codebase → 2. CLAUDE.md + AGENTS.md → 3. README.md → 4. SKILLS.md → 5. CHANGELOG.md → 6. Summary 1. Analyze Codebase Before updating any docs, gather project state: Project type signals ls package.json go.mod pyproject.toml Cargo.toml Dockerfile *.tf 2 > /dev/null Current doc state ls CLAUDE.md AGENTS.md README.md SKILLS.md 2 > /dev/null Recent changes since d...
34
24304 dna-assembly letta-ai/skills
DNA Assembly Overview This skill provides procedural knowledge for DNA assembly tasks, particularly Golden Gate assembly using Type IIS restriction enzymes. It addresses common pitfalls in primer design and provides verification strategies to ensure correct assembly designs. Critical Requirements for Type IIS Restriction Enzyme Primers Complete Primer Structure When designing primers for Type IIS enzymes (BsaI, BsmBI, etc.), the complete structure must include ALL components: [clamp ≥1bp]-[recog...
34
24305 agent-memory openhands/skills
No SKILL.md available for this skill. View on GitHub
34
24306 ios-chaos-monkey pproenca/dot-skills
iOS Chaos Monkey — Crash-Hunter Best Practices Adversarial crash-hunting guide for iOS and Swift applications. Contains 47 rules across 8 categories, prioritized by crash severity. Every rule follows TDD: dangerous code first, a failing test that proves the bug, then the fix that makes the test pass. Clinic Architecture Contract (iOS 26 / Swift 6.2) All guidance in this skill assumes the clinic modular MVVM-C architecture: Feature modules import Domain + DesignSystem only (never Data , never sib...
34
24307 fastapi tiangolo/fastapi
FastAPI Official FastAPI skill to write code with best practices, keeping up to date with new versions and features. Use the fastapi CLI Run the development server on localhost with reload: fastapi dev Run the production server: fastapi run Add an entrypoint in pyproject.toml FastAPI CLI will read the entrypoint in pyproject.toml to know where the FastAPI app is declared. [ tool.fastapi ] entrypoint = "my_app.main:app" Use fastapi with a path When adding the entrypoint to pyproject.toml is not p...
34
24308 data-science eyadsibai/ltk
Data Science Data analysis, SQL, and insights generation. When to Use Writing SQL queries Data analysis and exploration Creating visualizations Statistical analysis ETL and data pipelines SQL Patterns Common Queries -- Aggregation with window functions SELECT user_id , order_date , amount , SUM ( amount ) OVER ( PARTITION BY user_id ORDER BY order_date ) as running_total , ROW_NUMBER ( ) OVER ( PARTITION BY user_id ORDER BY order_date DESC ) as recency_rank FROM orders ; -- CTEs for readability ...
34
24309 lazycat-advanced-routing whoamihappyhacking/lazycat-skills
懒猫微服高级路由与网络配置指南 你是一个专业的懒猫微服网络配置专家。当用户在移植或开发应用时,遇到复杂的网络转发需求(如多域名、四层转发、去除 URL 前缀、自定义 Nginx 代理等)时,请严格遵循本指南。 核心路由机制 (Core Routing Mechanisms) 懒猫微服提供了三种层级的路由控制能力,请根据用户的需求选择最合适的方案: 1. 基础 HTTP/HTTPS 路由 ( application.routes ) 适用于绝大多数标准的 HTTP 代理场景。 规则格式: URL_PATH=UPSTREAM 特点: 默认会 去掉 URL_PATH 前缀。例如 - /api/=http://backend:80 ,访问 /api/v1 时,后端实际收到的是 /v1 。 支持三种上游协议: http(s)://$hostname/$path (最常用,转发给容器。域名格式需为 $service_name.$appid.lzcapp ) file:///$dir_path (直接托管静态文件) exec://$port,$exec_file_path (启动一个可执行文件并代理...
34
24310 http-header-security-audit jeremylongshore/claude-code-plugins-plus-skills
Http Header Security Audit Purpose This skill provides automated assistance for http header security audit tasks within the Security Fundamentals domain. When to Use This skill activates automatically when you: Mention "http header security audit" in your request Ask about http header security audit patterns or best practices Need help with essential security skills covering authentication, input validation, secure coding practices, and basic vulnerability detection. Capabilities Provides step-b...
34
24311 agent-browser api/git
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...
34
24312 architect htlin222/dotfiles
Architecture Design Design system architecture and make strategic technical decisions. Core Principle Good architecture enables change while maintaining simplicity. Name han-core:architect - Design system architecture and high-level technical strategy Synopsis /architect [arguments] Architecture vs Planning Architecture Design (this skill): Strategic: "How should the system be structured?" Component interactions and boundaries Technology and pattern choices Long-term implications System-level de...
34
24313 vercel-react-native-skills guanyang/antigravity-skills
React Native Skills Comprehensive best practices for React Native and Expo applications. Contains rules across multiple categories covering performance, animations, UI patterns, and platform-specific optimizations. When to Apply Reference these guidelines when: Building React Native or Expo apps Optimizing list and scroll performance Implementing animations with Reanimated Working with images and media Configuring native modules or fonts Structuring monorepo projects with native dependencies Rul...
34
24314 bitbucket openhands/skills
You have access to an environment variable, BITBUCKET_TOKEN , which allows you to interact with the Bitbucket API. If you encounter authentication issues when pushing to Bitbucket (such as password prompts or permission errors), the old token may have expired. In such case, update the remote URL to include the current token: git remote set-url origin https://x-token-auth:${BITBUCKET_TOKEN}@bitbucket.org/username/repo.git Here are some instructions for pushing, but ONLY do this if the user asks y...
34
24315 laravel:controller-tests jpcaparas/superpowers-laravel
Controller Tests Feature tests for endpoints it ( 'rejects empty email' , function ( ) { $this -> post ( '/register' , [ 'email' => '' ] ) -> assertSessionHasErrors ( 'email' ) ; } ) ; Better tests Move validation to Form Requests; assert errors from the request class Extract business logic into Actions; unit test them directly Use factories for realistic data; avoid heavy mocking
34
24316 debug htlin222/dotfiles
/debug If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Run a structured debugging session to find and fix issues systematically. Usage /debug $ARGUMENTS How It Works ┌─────────────────────────────────────────────────────────────────┐ │ DEBUG │ ├─────────────────────────────────────────────────────────────────┤ │ Step 1: REPRODUCE │ │ ✓ U...
34
24317 pnpm-dependency-analysis equinor/fusion-framework
pnpm Dependency Analysis Skill (Fusion Framework) Helps answer: Where is PACKAGE used (direct & transitive)? What real versions are resolved across workspaces? Which workspaces depend on each other (forward/reverse graph)? What's the blast radius / risk level for an upgrade or patch? All commands run from the root of the repository. Replace PACKAGE with the real name (e.g., lodash , zod , @tanstack/react-query , eslint ). 1. Core: Where is this package used? Direct usages only (fastest & cleanes...
34
24318 data-engineer htlin222/dotfiles
You are a data engineer specializing in scalable data pipelines, modern data architecture, and analytics infrastructure. Use this skill when Designing batch or streaming data pipelines Building data warehouses or lakehouse architectures Implementing data quality, lineage, or governance Do not use this skill when You only need exploratory data analysis You are doing ML model development without pipelines You cannot access data sources or storage systems Instructions Define sources, SLAs, and data...
34
24319 tailwind oakoss/agent-skills
No SKILL.md available for this skill. View on GitHub
34
24320 laravel:debugging-prompts jpcaparas/superpowers-laravel
Debugging with AI requires complete information. Missing context means generic suggestions that don't solve your specific problem. Error Messages and Stack Traces Incomplete "Getting an error in the payment controller" Complete "Getting error when processing payment: Error: ``` Illuminate\Database\QueryException: SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`app`.`payments`, CONSTRAINT `payments_order_id_forei...
34
24321 ring:regulatory-templates-gate3 lerianstudio/ring
Regulatory Templates - Gate 3: Template File Generation Overview This sub-skill executes Gate 3 of the regulatory template workflow: generating the complete .tpl template file with all validated mappings and transformations from Gates 1-2. Parent skill: regulatory-templates Prerequisites: Gate 1 PASSED (field mappings complete) Gate 2 PASSED (validations confirmed) Context object with Gates 1-2 results Output: Generated .tpl template file ready for use Foundational Principle Template generation ...
34
24322 security principles exceptionless/exceptionless
Security Principles Secrets Management Secrets are injected via Kubernetes ConfigMaps and environment variables — never commit secrets to the repository. Configuration files — Use appsettings.yml for non-secret config Environment variables — Secrets injected at runtime via EX_* prefix Kubernetes — ConfigMaps mount configuration, Secrets mount credentials // AppOptions binds to configuration (including env vars) public class AppOptions { public string ? StripeApiKey { get ; set ; } public AuthOpt...
34
24323 go-table-driven-tests tigrisdata/skills
Go Table-Driven Tests Use this skill when writing or modifying Go table-driven tests. It ensures tests follow established patterns. Core Principles One test function, many cases - Define test cases in a slice and iterate with t.Run() Explicit naming - Each case has a name field that becomes the subtest name Structured inputs - Use struct fields for inputs, expected outputs, and configuration Helper functions - Use t.Helper() in test helpers for proper line reporting Environment guards - Skip int...
34
24324 data-normalization-tool jeremylongshore/claude-code-plugins-plus-skills
Data Normalization Tool Purpose This skill provides automated assistance for data normalization tool tasks within the ML Training domain. When to Use This skill activates automatically when you: Mention "data normalization tool" in your request Ask about data normalization tool patterns or best practices Need help with machine learning training skills covering data preparation, model training, hyperparameter tuning, and experiment tracking. Capabilities Provides step-by-step guidance for data no...
34
24325 overfull-hbox letta-ai/skills
Overfull Hbox Fix with Constrained Synonyms This skill provides guidance for fixing LaTeX overfull hbox warnings by replacing words with shorter synonyms, while strictly adhering to a predefined list of allowed replacements. Problem Overview Overfull hbox warnings occur when LaTeX cannot fit text within the specified line width. The solution involves replacing words with shorter synonyms, but with a critical constraint: only words explicitly listed in a synonyms file may be replaced, and they ma...
34
24326 zotero shoei05/claude-code-zotero-skill
Zotero API Skill Zotero のローカル HTTP サーバー( localhost:23119 )および REST API( api.zotero.org )経由で文献管理操作を行う。 前提条件 ローカル API(Zotero 起動中のみ) Zotero が起動中で、以下の設定が有効であること: Zotero > 環境設定 > 詳細 > 「Allow other applications on this computer to communicate with Zotero」にチェック 接続確認: curl -s http://localhost:23119/connector/ping REST API(クラウド操作) 環境変数が設定されていること: ZOTERO_API_KEY : API キー( https://www.zotero.org/settings/keys で作成) ZOTERO_USER_ID : ユーザー ID 接続確認: curl -s -H "Zotero-API-Key: $ZOTERO_API_KEY " "https://api.zot...
34
24327 openai-responses ovachiever/droid-tings
OpenAI Responses API Status: Production Ready Last Updated: 2026-01-21 API Launch: March 2025 Dependencies: openai@6.16.0 (Node.js) or fetch API (Cloudflare Workers) What Is the Responses API? OpenAI's unified interface for agentic applications, launched March 2025. Provides stateful conversations with preserved reasoning state across turns. Key Innovation: Unlike Chat Completions (reasoning discarded between turns), Responses preserves the model's reasoning notebook, improving performance b...
34
24328 audio-router bbeierle12/skill-mcp-claude
Audio Router Routes to 3 specialized skills based on audio requirements. Routing Protocol Classify — Identify audio task from user request Match — Apply signal matching rules below Combine — Audio-visual projects need 2-3 skills together Load — Read matched SKILL.md files before implementation Quick Route Tier 1: Core Skills Need Skill Signals Playing audio, music, SFX audio-playback play, load, music, sound, mp3, transport, player, loop Extracting audio data audio-analysis FFT, frequency, spect...
34
24329 gplay-iap-setup tamtom/gplay-cli-skills
In-App Purchase Setup for Google Play Use this skill when you need to set up monetization for your Android app. Two APIs: Legacy vs New Monetization Google Play has two APIs for one-time products: Legacy ( gplay iap ) New Monetization ( gplay onetimeproducts ) API inappproducts monetization.onetimeproducts Price format priceMicros / currency units / nanos / currencyCode Structure Flat prices map purchaseOptions with regionalPricingAndAvailabilityConfigs States active / inactive DRAFT → ACTIVE (r...
34
24330 cli-web-scrape molechowski/claude-skills
Scrapling CLI Web scraping CLI with browser impersonation, anti-bot bypass, and CSS extraction. Prerequisites Install with all extras (CLI needs click, fetchers need playwright/camoufox) uv tool install 'scrapling[all]' Install fetcher browser engines (one-time) scrapling install Verify: scrapling --help Fetcher Selection Tier Command Engine Speed Stealth JS Use When HTTP extract get/post/put/delete httpx + TLS impersonation Fast Medium No Static pages, APIs, most sites Dynamic extract fetch P...
34
24331 typescript-sdk inkeep/skills
TypeScript SDK Architecture Layered, non-blocking by default Data buffered and flushed async to backend Node >= 18, ESM + CJS builds Layer Flow Public API → OpikClient → Domain (Trace/Span) → BatchQueues → REST Client → Backend Critical Gotchas When changing dependencies or minimum versions, update and verify version references in README.md and integration README files in the same PR. Flush Before Exit // ✅ REQUIRED - especially in CLI/tests await client . flush ( ) ; // or globally: await flush...
34
24332 caching-strategy-optimizer patricio0312rev/skills
Caching Strategy Optimizer Dramatically speed up CI pipelines with intelligent caching. Cache Key Strategy Package Manager Caches NPM - Hash package-lock.json - uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-npm-${{ hashFiles('/package-lock.json') }} restore-keys: | ${{ runner.os }}-npm- pnpm - More aggressive caching - uses: pnpm/action-setup@v2 with: version: 8 - uses: actions/cache@v3 with: path: | ~/.pnpm-store node_modules ...
34
24333 scroll-driven-animations yonatangross/orchestkit
CSS Scroll-Driven Animations API provides performant, declarative scroll-linked animations without JavaScript. Supported in Chrome 115+, Edge 115+, Safari 18.4+. Overview - Progress indicators tied to scroll position - Parallax effects without JavaScript jank - Element reveal animations on scroll into view - Sticky header animations based on scroll - Reading progress bars - Scroll-triggered image/content reveals Core Concepts Timeline Types | Scroll Progress | `scroll()` | Tied to...
34
24334 ssh-remote-connection artwist-polyakov/polyakov-claude-skills
SSH Remote Connection Universal skill for connecting to remote servers via SSH. Usage Interactive shell scripts/connect.sh Run command directly scripts/connect.sh "docker compose logs backend --tail 50" Setup For Claude Code (local) Copy config template: cp config/.env.example config/.env Fill in config/.env with actual values Make script executable: chmod +x scripts/connect.sh For Cloud Runtime Set environment variables in your cloud configuration: SSH_HOST — server hostname or IP SSH_USER — ...
34
24335 frontend htlin222/dotfiles
Frontend Development Overview Modern frontend development patterns, frameworks, and best practices for building performant web applications. React Ecosystem Component Patterns // Functional component with hooks import { useState , useEffect , useCallback , useMemo } from 'react' ; interface UserListProps { initialFilter ? : string ; onSelect : ( user : User ) => void ; } function UserList ( { initialFilter = '' , onSelect } : UserListProps ) { const [ users , setUsers ] = useState < User [ ] > (...
34
24336 api-client-generator jeremylongshore/claude-code-plugins-plus-skills
Api Client Generator Purpose This skill provides automated assistance for api client generator tasks within the API Integration domain. When to Use This skill activates automatically when you: Mention "api client generator" in your request Ask about api client generator patterns or best practices Need help with api integration skills covering third-party apis, webhooks, sdk generation, and integration patterns. Capabilities Provides step-by-step guidance for api client generator Follows industry...
34
24337 multithreaded-task-migration dotnet/msbuild
Migrating MSBuild Tasks to Multithreaded API MSBuild's multithreaded execution model requires tasks to avoid global process state (working directory, environment variables). Thread-safe tasks declare this capability via MSBuildMultiThreadableTask and use TaskEnvironment from IMultiThreadableTask for safe alternatives. Migration Steps Step 1: Update Task Class Declaration a. Ensure the task implementing class is decorated with the MSBuildMultiThreadableTask attribute. b. Implement IMultiThreadabl...
34
24338 agentic-browser inference-sh/skills
Agentic Browser Browser automation for AI agents via inference.sh . Uses Playwright under the hood with a simple @e ref system for element interaction. Quick Start Install CLI curl -fsSL https://cli.inference.sh | sh && infsh login Open a page and get interactive elements infsh app run agentic-browser --function open --input '{"url": "https://example.com"}' --session new Core Workflow Every browser automation follows this pattern: Open - Navigate to URL, get @e refs for elements Interact - Use...
34
24339 holmesgpt-skill julianobarbosa/claude-code-skills
HolmesGPT Skill AI-powered troubleshooting for Kubernetes and cloud-native environments. Overview HolmesGPT is a CNCF Sandbox project that connects AI models with live observability data to investigate infrastructure problems, find root causes, and suggest remediations. It operates with read-only access and respects RBAC permissions, making it safe for production environments. Quick Reference Topic Reference Installation references/installation.md Configuration references/configuration.md Data S...
34
24340 qt-translation-assistant re2zero/deepin-skills
Qt Translation Assistant Skill Iron Laws Never modify original TS files without backup - Always preserve original content Validate AI translation quality - Verify translations are accurate and contextually appropriate Maintain translation consistency - Use consistent terminology across all translations Respect file encoding - Preserve UTF-8 encoding and special characters Minimal changes principle - Only modify translation content, preserve XML structure Red Flags User requests translation of no...
34
24341 service-layer-extractor patricio0312rev/skills
Service Layer Extractor Extract business logic from controllers into a testable service layer. Architecture Layers routes/ → Define endpoints, parse requests controllers/ → Validate input, call services, format responses services/ → Business logic, orchestration repositories/ → Database queries models/ → Data structures Before: Fat Controller // ❌ Business logic mixed with HTTP concerns router . post ( "/users" , async ( req , res ) => { try { // Validation if ( !...
34
24342 internal-comms teachingai/full-stack-skills
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
34
24343 sql-query-optimizer jeremylongshore/claude-code-plugins-plus-skills
SQL Query Optimizer Optimize SQL queries for maximum performance. EXPLAIN Analysis -- Original slow query EXPLAIN ANALYZE SELECT u.*, COUNT(o.id) as order_count FROM users u LEFT JOIN orders o ON o.user_id = u.id WHERE u.created_at > '2024-01-01' GROUP BY u.id ORDER BY order_count DESC LIMIT 10; -- Output analysis: /* Sort (cost=15234.32..15234.34 rows=10 width=120) (actual time=245.123..245.125 rows=10 loops=1) Sort Key: (count(o.id)) DESC -> HashAggregate (cost=15000.00..15100.00 row...
34
24344 typescript-advanced-types ovachiever/droid-tings
TypeScript Advanced Types Comprehensive guidance for mastering TypeScript's advanced type system including generics, conditional types, mapped types, template literal types, and utility types for building robust, type-safe applications. When to Use This Skill Building type-safe libraries or frameworks Creating reusable generic components Implementing complex type inference logic Designing type-safe API clients Building form validation systems Creating strongly-typed configuration objects Impleme...
34
24345 terraform-module-builder patricio0312rev/skills
Terraform Module Builder Build reusable, production-ready Terraform modules for cloud infrastructure. Core Workflow Define module structure : Organize files properly Declare variables : Input parameters with validation Create resources : Infrastructure definitions Configure outputs : Export useful values Setup state : Remote backend configuration Document : README and examples Module Structure modules/ └── vpc/ ├── main.tf Primary resources ├── variables.tf Input variables ├── o...
34
24346 project-retrospective jamditis/claude-skills-journalism
Project retrospective writer Create LESSONS.md files that capture institutional knowledge, especially failures. Think like a journalist writing about your own project—be specific, be honest, name the actual mistakes. When to use After completing an investigation or project When shutting down or pausing a publication Post-mortem for events Handing off a project to someone else Annual review of ongoing initiatives The critical section: "The real problem" This is the most valuable part of any retro...
34
24347 security-benchmark-runner jeremylongshore/claude-code-plugins-plus-skills
Security Benchmark Runner Purpose This skill provides automated assistance for security benchmark runner tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "security benchmark runner" in your request Ask about security benchmark runner patterns or best practices Need help with advanced security skills covering penetration testing, compliance frameworks, threat modeling, and enterprise security. Capabilities Provides step-by-step guidance f...
34
24348 apify-ecommerce sickn33/antigravity-awesome-skills
E-commerce Data Extraction Extract product data, prices, reviews, and seller information from any e-commerce platform using Apify's E-commerce Scraping Tool. Prerequisites .env file with APIFY_TOKEN (at ~/.claude/.env ) Node.js 20.6+ (for native --env-file support) Workflow Selection User Need Workflow Best For Track prices, compare products Workflow 1: Products & Pricing Price monitoring, MAP compliance, competitor analysis. Add AI summary for insights. Analyze reviews (sentiment or quality) Wo...
34
24349 qemu-alpine-ssh letta-ai/skills
QEMU Alpine SSH Setup Overview This skill provides procedural guidance for setting up QEMU virtual machines running Alpine Linux with SSH access configured. It covers VM startup, network port forwarding, Alpine system configuration, and SSH server setup. Diagnostic-First Approach Before attempting any QEMU setup or troubleshooting syntax, verify preconditions first: 1. Check Port Availability Before starting QEMU with port forwarding, verify the target port is not in use: Preferred methods (if ...
34
24350 aria-attribute-helper jeremylongshore/claude-code-plugins-plus-skills
Aria Attribute Helper Purpose This skill provides automated assistance for aria attribute helper tasks within the Frontend Development domain. When to Use This skill activates automatically when you: Mention "aria attribute helper" in your request Ask about aria attribute helper patterns or best practices Need help with frontend skills covering react, vue, css, accessibility, performance optimization, and modern web development patterns. Capabilities Provides step-by-step guidance for aria attri...
34