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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
19851 storage-basicmemory zenobi-us/dotfiles
Core principle: All project artifacts must be stored in basicmemory under a [ProjectId], with explicit linking and status tracking to maintain single source of truth across concurrent projects. [!NOTE] Before starting anything, ensure you have identified the correct [ProjectId] for the project you are working on. Requirements: - use basicmemory mcp tools to read and write [Project Artifacts]. - Recognise types of [Project Artifacts]: [Spec], [Research], [Descision], [Epic], [Story], [Task],...
44
19852 distribution-analyzer dengineproblem/agents-monorepo
Distribution Analyzer Expert Эксперт по анализу статистических распределений. Core Principles Exploratory Data Analysis Начинайте с визуализации (histograms, Q-Q plots) Descriptive statistics (mean, median, std, skewness, kurtosis) Выявление outliers и аномалий Multiple Testing Kolmogorov-Smirnov test Anderson-Darling test Shapiro-Wilk test Chi-square goodness-of-fit Model Selection AIC/BIC criteria Cross-validation Residual analysis Distribution Families Continuous Distributions Normal (Gaussia...
44
19853 format numbers tryghost/ghost
Format Numbers When editing .tsx files, ensure all user-facing numbers are formatted using the formatNumber utility from @tryghost/shade . Import import { formatNumber } from '@tryghost/shade' ; When to use formatNumber Use formatNumber() when rendering any numeric value that is displayed to the user, including: Member counts, visitor counts, subscriber counts Email engagement metrics (opens, clicks, bounces) Revenue amounts (combine with centsToDollars() for monetary values) Post analytics (vie...
44
19854 resource allocator eddiebe147/claude-settings
Resource Allocator The Resource Allocator skill helps managers and team leads optimize how people, budget, and tools are allocated across projects and initiatives. It emphasizes realistic capacity planning, skill matching, workload balancing, and strategic resource investment to maximize team effectiveness and prevent burnout. This skill excels at analyzing team capacity, mapping skills to project needs, identifying resource constraints and bottlenecks, balancing competing priorities, and creati...
44
19855 codex-worker moonshotai/kimi-cli
codex-worker Orchestrate multiple Codex CLI ( codex ) agents running in parallel, each in its own git worktree and tmux session. When to use: Whenever you identify that a task can be split into independent subtasks — don't wait for the user to ask for parallelism. Examples: User says "triage all open issues updated in the last 7 days" → fetch the issue list, then spawn one codex worker per issue. User says "refactor these 5 modules" → one worker per module. User says "fix lint errors across pack...
44
19856 ruby-refactor pproenca/dot-skills
Community Ruby Refactoring Best Practices Comprehensive refactoring guide for Ruby applications, maintained by the community. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Refactoring Ruby code to reduce complexity and improve design Extracting methods, classes, or value objects from large units Simplifying complex conditionals and deep nesting Reducing coupling between classes and m...
44
19857 account-delete dengineproblem/agents-monorepo
Account Delete Удаление рекламного аккаунта и всех связанных файлов конфигурации. Что удаляется .claude/ads-agent/config/ ├── ad_accounts.md ← удаляется секция аккаунта ├── briefs/{account}.md ← удаляется файл └── naming/{account}_naming.md ← удаляется файл (если есть) Workflow (4 шага) Шаг 1: Выбор аккаунта Какой аккаунт удалить? Покажи список из .claude/ads-agent/config/ad_accounts.md : Доступные аккаунты: | | Название | Account ID | Статус | |---|----------|------------|-------...
44
19858 edge-pipeline-orchestrator tradermonty/claude-trading-skills
Edge Pipeline Orchestrator Coordinate all edge research stages into a single automated pipeline run. When to Use Run the full edge pipeline from tickets (or OHLCV) to exported strategies Resume a partially completed pipeline from the drafts stage Review and revise existing strategy drafts with feedback loop Dry-run the pipeline to preview results without exporting Workflow Load pipeline configuration from CLI arguments Run auto_detect stage if --from-ohlcv is provided (generates tickets from raw...
44
19859 compliance-report-builder dengineproblem/agents-monorepo
Compliance Report Builder Эксперт по регуляторной compliance документации и отчётности. Основные принципы Evidence-Based Documentation Контроли должны быть связаны с конкретными артефактами Audit trail с timestamps и ответственными Количественные метрики для preventive и detective мер Risk-Oriented Approach Приоритизация high-risk областей Mapping контролей к threat vectors Документирование residual risk Regulatory Alignment Привязка требований к конкретным статьям регуляций Guidance для неодноз...
44
19860 universal-patterns dylantarre/animation-principles
Universal Animation Patterns Apply Disney's 12 principles as baseline defaults for any animation. Core Timing Scale Category Duration Use For Instant 100-150ms Hovers, toggles, micro-states Fast 150-250ms Feedback, small transitions Standard 250-400ms Modals, reveals, state changes Slow 400-600ms Page transitions, sequences Deliberate 600-1000ms Dramatic reveals, celebrations Universal Easing Library :root { /* Standard easings */ --ease-out: cubic-bezier(0, 0, 0.2, 1); /* Entrances...
44
19861 health-wellness travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
44
19862 obsidian-bases guanyang/antigravity-skills
Obsidian Bases Skill This skill enables skills-compatible agents to create and edit valid Obsidian Bases (.base files) including views, filters, formulas, and all related configurations. Overview Obsidian Bases are YAML-based files that define dynamic views of notes in an Obsidian vault. A Base file can contain multiple views, global filters, formulas, property configurations, and custom summaries. File Format Base files use the .base extension and contain valid YAML. They can also be embed...
44
19863 video-processing guia-matthieu/clawfu-skills
This skill provides guidance for video processing tasks involving frame-level analysis, event detection, and motion tracking using computer vision libraries like OpenCV. It emphasizes verification-first approaches and guards against common pitfalls in video analysis workflows. Core Approach: Verify Before Implementing Before writing detection algorithms, establish ground truth understanding of the video content: - Extract and inspect sample frames - Save key frames as images to visually veri...
44
19864 json-canvas guanyang/antigravity-skills
JSON Canvas Skill This skill enables skills-compatible agents to create and edit valid JSON Canvas files (.canvas) used in Obsidian and other applications. Overview JSON Canvas is an open file format for infinite canvas data. Canvas files use the .canvas extension and contain valid JSON following the JSON Canvas Spec 1.0. File Structure A canvas file contains two top-level arrays: { "nodes": [], "edges": [] } nodes (optional): Array of node objects edges (optional): Array of edge obje...
44
19865 writing-plans guanyang/antigravity-skills
Writing Plans Overview Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, code, testing, docs they might need to check, how to test it. Give them the whole plan as bite-sized tasks. DRY. YAGNI. TDD. Frequent commits. Assume they are a skilled developer, but know almost nothing about our toolset or problem domain. Assume they don't know good test design ...
44
19866 woocommerce-email-editor woocommerce/woocommerce
No SKILL.md available for this skill. View on GitHub
44
19867 create-auth-skill panaversity/agentfactory
Create Auth Skill Guide for adding authentication to TypeScript/JavaScript applications using Better Auth. For code examples and syntax, see better-auth.com/docs. Decision Tree Is this a new/empty project? ├─ YES → New project setup │ 1. Identify framework │ 2. Choose database │ 3. Install better-auth │ 4. Create auth.ts + auth-client.ts │ 5. Set up route handler │ 6. Run CLI migrate/generate │ 7. Add features via plugins │ └─ NO → Does project have existing auth? ├─ YES → M...
44
19868 capacitor-accessibility cap-go/capacitor-skills
Accessibility in Capacitor Apps Build inclusive apps that work for everyone. When to Use This Skill User needs accessibility User wants screen reader support User asks about WCAG User needs focus management Quick Checklist Semantic HTML Alt text for images Touch targets 44x44pt Color contrast 4.5:1 Focus indicators Screen reader labels Keyboard navigation Screen Reader Support Labels and Hints // Accessible button < button aria-label = " Delete item " aria-describedby = " delete-hint " > < Trash...
44
19869 slidev-layouts yoanbernabeu/slidev-skills
This skill covers all built-in Slidev layouts and teaches you how to use them effectively for different types of content. You'll also learn how to create custom layouts. When to Use This Skill - Choosing the right layout for your content - Creating visually structured slides - Using multi-column layouts - Adding background images - Building custom layouts Using Layouts Specify a layout in the slide's frontmatter: ``` --- layout: center --- Centered Content ``` Built-in Layouts ...
44
19870 enterprise-integration-testing proffesor-for-testing/agentic-qe
Enterprise Integration Testing <default_to_action> When testing enterprise integrations or SAP-connected systems: MAP the end-to-end flow (web -> API -> middleware -> backend -> response) IDENTIFY integration points and protocols (REST, SOAP, RFC, IDoc, OData, EDI) SELECT the right agent for each integration type TEST each integration boundary with contract and data validation VALIDATE cross-system data consistency (SAP <-> WMS <-> middleware) EXERCISE enterprise error handling (compensation, re...
44
19871 retrospective facilitator eddiebe147/claude-settings
Retrospective Facilitator The Retrospective Facilitator skill helps teams conduct effective retrospectives that drive continuous improvement. It provides structured formats, facilitation techniques, and follow-through mechanisms to ensure retrospectives generate actionable insights rather than just venting sessions. This skill excels at creating psychological safety, guiding productive discussions, synthesizing patterns from team feedback, facilitating prioritization of improvements, and ensurin...
44
19872 gitlab-ci teachingai/full-stack-skills
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
44
19873 typescript-sdk comet-ml/opik
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...
44
19874 amazon-competitor-analyzer browser-act/skills
Amazon Competitor Analyzer This skill scrapes Amazon product data from user-provided ASINs using browseract.com's browser automation API and performs deep competitive analysis. When to Use This Skill Competitive research: Input multiple ASINs to understand market landscape Pricing strategy analysis: Compare price bands across similar products Specification benchmarking: Deep dive into technical specs and feature differences Review insights: Analyze review quality, quantity, and sentiment pattern...
44
19875 network-security-scanner jeremylongshore/claude-code-plugins-plus-skills
Network Security Scanner Purpose This skill provides automated assistance for network security scanner tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "network security scanner" in your request Ask about network security scanner 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...
44
19876 debugging-tauri-apps dchuk/claude-code-tauri-skills
Debugging Tauri Applications This skill covers debugging Tauri v2 applications including console debugging, WebView inspection, IDE configurations, and CrabNebula DevTools. Development-Only Code Use conditional compilation to exclude debug code from production builds: // Only runs during `tauri dev` [cfg(dev)] { // Development-only code } // Runtime check if cfg!(dev) { // tauri dev code } else { // tauri build code } // Programmatic check let is_dev: bool = tauri::is_dev(); /...
44
19877 airtable-automation davepoon/buildwithclaude
Airtable Automation Automate Airtable bases with views, automations, integrations, and cross-platform workflows. Based on n8n's Airtable integration templates. Overview This skill covers: Database design and views Built-in automations n8n integration workflows Formula and rollup design Reporting and dashboards Database Design Base Structure Template base : "Project Management" tables : Projects : fields : - Name : single_line_text (primary) - Status : single_select [ Planning , Active , On Hold ...
44
19878 sync-skills vinta/hal-9000
Instructions IMPORTANT : Only use this skill in /usr/local/hal-9000 . Otherwise, abort. Discover skills Glob skills/*/SKILL.md in /usr/local/hal-9000 only Extract name from each YAML frontmatter Rewrite each description into one short sentence (~10 words max) saying what it does — no "Use when" triggers, no verbatim frontmatter copy Update README.md (the Agent Skills section) Format: - [name](skills/name): description Use the rewritten description from step 1 Add new skills, remove deleted skil...
44
19879 customer-journey-map dengineproblem/agents-monorepo
Purpose Create a comprehensive customer journey map that visualizes how customers interact with your brand across all stages—from awareness to loyalty—documenting their actions, touchpoints, emotions, KPIs, business goals, and teams involved at each stage. Use this to identify pain points, align cross-functional teams, and systematically improve the customer experience to achieve business objectives. This is not a user flow diagram—it's a strategic artifact that combines customer empathy with bu...
44
19880 anygen-deep-research anygenio/anygen-skills
Deep Research Report Generator - AnyGen You MUST strictly follow every instruction in this document. Do not skip, reorder, or improvise any step. Generate long-form research reports covering market overview, trends, competitors, and synthesis using AnyGen OpenAPI. Output: online task URL for viewing. When to Use User needs a deep research report (market, industry, competitive analysis, strategy) User has files to upload as reference material for research Security & Permissions What this skill do...
44
19881 unsloth-training scientiacapital/skills
GRPO - RL with reward functions (no labeled outputs needed) SFT - Supervised fine-tuning with input/output pairs Vision - VLM fine-tuning (Qwen3-VL, Gemma3, Llama 3.2 Vision) Key capabilities: FP8 Training - 60% less VRAM, 1.4x faster (RTX 40+, H100) 3x Packing - Automatic 2-5x speedup for mixed-length data Docker - Official unsloth/unsloth image Mobile - QAT → ExecuTorch → iOS/Android (~40 tok/s) Export - GGUF, Ollama, vLLM, LM Studio, SGLang <quick_start> GRPO with FP8 (60% less VRAM): imp...
44
19882 altinity-expert-clickhouse-merges altinity/skills
Merge Performance and Part Management Diagnose merge performance, backlog issues, and part management problems. Quick Diagnostics (Run First) Execute these standard queries before ad-hoc exploration. 1. Current Merge Activity select database, table, round(elapsed, 1) as elapsed_sec, round(progress * 100, 1) as progress_pct, num_parts, formatReadableSize(total_size_bytes_compressed) as size, result_part_name, is_mutation from system.merges order by elapsed desc...
44
19883 neon-auth neondatabase/ai-rules
Add authentication to your application. When to Use This Skill - Adding authentication to a new or existing project - Implementing sign-in, sign-up, and session management - Configuring social authentication (Google, GitHub) Package: `@neondatabase/auth` (auth only, smaller bundle) Need database queries too? Use the `neon-js` skill instead for `@neondatabase/neon-js` with unified auth + data API. Code Generation Rules When generating TypeScript/JavaScript code, follow these rules: Com...
44
19884 zeptomail vm0-ai/vm0-skills
Zoho ZeptoMail Use the ZeptoMail API via curl to send transactional emails like password resets, OTPs, welcome emails, and order confirmations. Official docs: https://www.zoho.com/zeptomail/help/api-home.html When to Use Use this skill when you need to: Send transactional emails (password resets, OTPs, confirmations) Send templated emails with dynamic merge fields Batch send to multiple recipients (up to 500) Track email opens and clicks Send emails with attachments or inline images Note: ...
44
19885 spec-to-backlog atlassian/atlassian-mcp-server
Spec to Backlog Overview Transform Confluence specification documents into structured Jira backlogs automatically. This skill reads requirement documents from Confluence, intelligently breaks them down into logical implementation tasks, creates an Epic first to organize the work, then generates individual Jira tickets linked to that Epic—eliminating tedious manual copy-pasting. Core Workflow CRITICAL: Always follow this exact sequence: Fetch Confluence Page → Get the specification content Ask fo...
44
19886 lyric-writer bitwize-music-studio/claude-ai-music-skills
Your Task Input : $ARGUMENTS When invoked with a track file path: Read the track file Scan existing lyrics for issues (rhyme, prosody, POV, pronunciation) Report all violations with proposed fixes When invoked with a concept: Write lyrics following all quality standards below Run automatic review before presenting Supporting Files examples.md - Before/after transformations demonstrating key principles craft-reference.md - Rhyme techniques, section length tables, lyric density rules documentary-s...
44
19887 uview-vue2 teachingai/full-stack-skills
Use this skill whenever the user wants to: - Build uni-app applications with uView UI components - Use uView UI components (Button, Input, Form, Table, Modal, etc.) - Use uView UI tools ($u.toast, $u.http, etc.) - Customize uView UI theme - Integrate uView UI with uni-app - Create responsive layouts with uView UI - Use uView UI form components - Display data with uView UI components - Handle navigation with uView UI - Use uView UI utilities and helpers How to use this skill This ski...
44
19888 mf-config-check module-federation/core
Step 1 : Call the mf-context Skill (pass $ARGUMENTS ) to collect MFContext. Step 2 : Serialize MFContext to JSON and pass it to the check script via the --context argument: node scripts/config-exposes-check.js --context '<MFContext-JSON>' Process each item in the output results array: CONFIG-PLUGIN · warning — incorrect or missing MF plugin Based on the detected bundler and installed packages, the recommended plugin is: Webpack only: @module-federation/enhanced or @module-federation/enhanced/web...
44
19889 chrome-devtools tech-leads-club/agent-skills
Chrome DevTools Agent Overview A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling. When to Use Use this skill when: Browser Automation : Navigating pages, clicking elements, filling forms, and handling dialogs. Visual Inspection : Taking screenshots or text snapshots of web pages. Debugging : Inspecting console messag...
44
19890 calendar aviz85/claude-skills-library
Calendar 📅 Calendar and scheduling management. Features Create events Schedule meetings Set reminders View availability Recurring events Calendar sync Supported Providers Google Calendar Apple Calendar Outlook Calendar Usage Examples "Schedule meeting tomorrow at 2pm" "Show my calendar for this week" "Find free time for a 1-hour meeting"
44
19891 entrance-animations dylantarre/animation-principles
Entrance Animations Apply Disney's 12 principles when bringing elements into view. Principle Application Squash & Stretch: Scale from 95% to 100% on entry. Elements feel elastic, not rigid. Anticipation: Start slightly below/smaller than final position. A -10px offset before sliding up creates expectation. Staging: Enter from the direction of user attention. New list items from the top, modals from center, sidebars from their edge. Straight Ahead vs Pose-to-Pose: Use pose-to-pose. Define c...
44
19892 sap-btp-connectivity secondsky/sap-skills
SAP BTP Connectivity provides secure access from SAP BTP applications to remote services across cloud, on-premise, and VPC environments. Core Components | Destination Service | Manages connection metadata, authentication, routing | Connectivity Service | Enables Kubernetes workloads via Cloud Connector | Cloud Connector | Reverse proxy for secure on-premise tunneling | Connectivity Proxy | Kubernetes component for on-premise access | Transparent Proxy | Kubernetes component for u...
44
19893 exit-animations dylantarre/animation-principles
Exit Animations Apply Disney's 12 principles when removing elements from view. Principle Application Squash & Stretch: Scale down to 95-98% on exit. Element compresses slightly as it departs. Anticipation: Brief pause or micro-movement before departure. A 50ms hesitation acknowledges the exit. Staging: Exit toward logical destinations. Deleted items fall down, dismissed modals shrink to origin, sidebars return to their edge. Straight Ahead vs Pose-to-Pose: Pose-to-pose with clear visible→i...
44
19894 ml-api-endpoint dengineproblem/agents-monorepo
ML API Endpoint Expert Expert in designing and deploying machine learning API endpoints. Core Principles API Design Stateless Design : Each request contains all necessary information Consistent Response Format : Standardize success/error structures Versioning Strategy : Plan for model updates Input Validation : Rigorous validation before inference FastAPI Implementation Basic ML Endpoint from fastapi import FastAPI , HTTPException from pydantic import BaseModel , validator import joblib import n...
44
19895 altinity-expert-clickhouse-dictionaries altinity/skills
Dictionary Diagnostics Analyze external dictionaries: configuration, memory usage, reload status, and performance. Quick Diagnostics 1. Dictionary Overview select database, name, status, origin, type, formatReadableSize(bytes_allocated) as memory, element_count as elements, loading_duration, last_successful_update_time, last_exception from system.dictionaries order by bytes_allocated desc 2. Dictionary Health Check select database, name, sta...
44
19896 code-injection-detector jeremylongshore/claude-code-plugins-plus-skills
Code Injection Detector Purpose This skill provides automated assistance for code injection detector tasks within the Security Fundamentals domain. When to Use This skill activates automatically when you: Mention "code injection detector" in your request Ask about code injection detector patterns or best practices Need help with essential security skills covering authentication, input validation, secure coding practices, and basic vulnerability detection. Capabilities Provides step-by-step g...
44
19897 tui-component-design colonyops/hive
TUI Component Design Patterns Best practices for building maintainable, testable TUI components using Bubbletea v2 and the Charm ecosystem, based on the hive diff viewer implementation. Component Organization Single Responsibility Per File Each component should be in its own file with clear boundaries: internal/tui/diff/ ├── model.go Top-level compositor that orchestrates sub-components ├── diffviewer.go Diff content display with scrolling and selection ├── filetree.go F...
44
19898 looker-expert personamanagmentlayer/pcl
You are an expert in Looker with deep knowledge of LookML, explores, dimensions, measures, dashboards, PDTs (Persistent Derived Tables), and semantic data modeling. You design maintainable, performant Looker models that enable self-service analytics. Core Expertise LookML Basics View Definition: ``` views/orders.view.lkml view: orders { sql_table_name: public.orders ;; drill_fields: [id] Primary key dimension: id { primary_key: yes type: number sql: ${TABLE}.id ;; ...
44
19899 workflow-multi-cli-plan catlog22/claude-code-workflow
Multi-CLI Collaborative Planning Auto Mode When workflowPreferences.autoYes is true: Auto-approve plan, use recommended solution and execution method (Agent, Skip review). Context Source : ACE semantic search + Multi-CLI analysis Output Directory : .workflow/.multi-cli-plan/{session-id}/ Default Max Rounds : 3 (convergence may complete earlier) CLI Tools : @cli-discuss-agent (analysis), @cli-lite-planning-agent (plan generation) Execution : Auto-hands off to workflow-lite-execute after plan appr...
44
19900 application-quality-assurance qodex-ai/ai-agent-skills
Web Application Testing To test local web applications, write native Python Playwright scripts. Helper Scripts Available: scripts/with_server.py - Manages server lifecycle (supports multiple servers) Always run scripts with --help first to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts...
44