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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,531
总 Skills
93.7M
总安装量
2,585
贡献者
# Skill 仓库 描述 安装量
12701 paddleocr-doc-parsing aidenwu0209/paddleocr-skills
PaddleOCR Document Parsing Skill When to Use This Skill ✅ Use Document Parsing for : Documents with tables (invoices, financial reports, spreadsheets) Documents with mathematical formulas (academic papers, scientific documents) Documents with charts and diagrams Multi-column layouts (newspapers, magazines, brochures) Complex document structures requiring layout analysis Any document requiring structured understanding ❌ Use Text Recognition instead for : Simple text-only extraction Quick OCR task...
219
12702 configuring-dbt-mcp-server dbt-labs/dbt-agent-skills
The dbt MCP server connects AI tools to dbt's CLI, Semantic Layer, Discovery API, and Admin API. This skill guides users through setup with the correct configuration for their use case. Decision Flow ``` flowchart TB start([User wants dbt MCP]) --> q1{Local or Remote?} q1 -->|dev workflows,<br>CLI access needed| local[Local Server<br>uvx dbt-mcp] q1 -->|consumption only,<br>no local install| remote[Remote Server<br>HTTP endpoint] local --> q2{Which client?} remote --> q2 ...
219
12703 gpd-release-flow rudrankriyam/app-store-connect-cli-skills
Release flow (Google Play) Use this skill when you need to upload a build, publish to a track, or manage rollout. Preconditions Ensure credentials are set ( GPD_SERVICE_ACCOUNT_KEY ). Use a new version code for each upload. Always pass --package explicitly. Preferred end-to-end commands Upload and release to a track gpd publish upload app.aab --package com.example.app gpd publish release --package com.example.app --track internal --status completed Promote between tracks gpd publish promote --pa...
218
12704 pennylane davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
218
12705 brenda-database davila7/claude-code-templates
BRENDA Database Overview BRENDA (BRaunschweig ENzyme DAtabase) is the world's most comprehensive enzyme information system, containing detailed enzyme data from scientific literature. Query kinetic parameters (Km, kcat), reaction equations, substrate specificities, organism information, and optimal conditions for enzymes using the official SOAP API. Access over 45,000 enzymes with millions of kinetic data points for biochemical research, metabolic engineering, and enzyme discovery. When to Use...
218
12706 naming-analyzer davila7/claude-code-templates
Naming Analyzer Skill Suggest better variable, function, and class names based on context and conventions. Instructions You are a naming convention expert. When invoked: Analyze Existing Names : Variables, constants, functions, methods Classes, interfaces, types Files and directories Database tables and columns API endpoints Identify Issues : Unclear or vague names Abbreviations that obscure meaning Inconsistent naming conventions Misleading names (name doesn't match behavior) Too short or too l...
218
12707 deeptools davila7/claude-code-templates
deepTools: NGS Data Analysis Toolkit Overview deepTools is a comprehensive suite of Python command-line tools designed for processing and analyzing high-throughput sequencing data. Use deepTools to perform quality control, normalize data, compare samples, and generate publication-quality visualizations for ChIP-seq, RNA-seq, ATAC-seq, MNase-seq, and other NGS experiments. Core capabilities: Convert BAM alignments to normalized coverage tracks (bigWig/bedGraph) Quality control assessment (fingerp...
218
12708 datacommons-client davila7/claude-code-templates
Data Commons Client Overview Provides comprehensive access to the Data Commons Python API v2 for querying statistical observations, exploring the knowledge graph, and resolving entity identifiers. Data Commons aggregates data from census bureaus, health organizations, environmental agencies, and other authoritative sources into a unified knowledge graph. Installation Install the Data Commons Python client with Pandas support: uv pip install "datacommons-client[Pandas]" For basic usage with...
218
12709 go-best-practices 0xbigboss/claude-code
Go Best Practices Type-First Development Types define the contract before implementation. Follow this workflow: Define data structures - structs and interfaces first Define function signatures - parameters, return types, and error conditions Implement to satisfy types - let the compiler guide completeness Validate at boundaries - check inputs where data enters the system Make Illegal States Unrepresentable Use Go's type system to prevent invalid states at compile time. Structs for domain mod...
218
12710 conductor-revert sickn33/antigravity-awesome-skills
Revert Track Revert changes by logical work unit with full git awareness. Supports reverting entire tracks, specific phases, or individual tasks. Use this skill when Working on revert track tasks or workflows Needing guidance, best practices, or checklists for revert track Do not use this skill when The task is unrelated to revert track You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate o...
218
12711 changelog-automation sickn33/antigravity-awesome-skills
Changelog Automation Patterns and tools for automating changelog generation, release notes, and version management following industry standards. When to Use This Skill Setting up automated changelog generation Implementing Conventional Commits Creating release note workflows Standardizing commit message formats Generating GitHub/GitLab release notes Managing semantic versioning Core Concepts 1. Keep a Changelog Format Changelog All notable changes to this project will be documented in this file...
218
12712 secrets-management sickn33/antigravity-awesome-skills
Secrets Management Secure secrets management practices for CI/CD pipelines using Vault, AWS Secrets Manager, and other tools. Purpose Implement secure secrets management in CI/CD pipelines without hardcoding sensitive information. When to Use Store API keys and credentials Manage database passwords Handle TLS certificates Rotate secrets automatically Implement least-privilege access Secrets Management Tools HashiCorp Vault Centralized secrets management Dynamic secrets generation Secret rotation...
218
12713 fhir-developer-skill anthropics/healthcare
FHIR Developer Skill Quick Reference HTTP Status Codes Code When to Use 200 OK Successful read, update, or search 201 Created Successful create (include Location header) 204 No Content Successful delete 400 Bad Request Malformed JSON, wrong resourceType 401 Unauthorized Missing, expired, revoked, or malformed token (RFC 6750) 403 Forbidden Valid token but insufficient scopes 404 Not Found Resource doesn't exist 412 Precondition Failed If-Match ETag mismatch (NOT 400!) 422 Unprocessable Entity Mi...
218
12714 gpd-id-resolver rudrankriyam/app-store-connect-cli-skills
GPD ID Resolver Use this skill to map names to IDs needed by other gpd commands. Package name (app ID) Package name is the primary identifier: com.example.app . Always pass --package explicitly for deterministic results. Track names Common tracks: internal , alpha , beta , production . List tracks: gpd publish tracks --package com.example.app Version codes and release status Use release status to find version codes on a track: gpd publish status --package com.example.app --track production Teste...
217
12715 axiom-ios-concurrency charleswiltgen/axiom
iOS Concurrency Router You MUST use this skill for ANY concurrency, async/await, threading, or Swift 6 concurrency work. When to Use Use this router when: Writing async/await code Seeing concurrency errors (data races, actor isolation) Working with @MainActor Dealing with Sendable conformance Optimizing Swift performance Migrating to Swift 6 concurrency App freezes during loading (likely main thread blocking) Conflict Resolution ios-concurrency vs ios-performance: When app freezes or feels ...
217
12716 axiom-ios-performance charleswiltgen/axiom
iOS Performance Router You MUST use this skill for ANY performance issue including memory leaks, slow execution, battery drain, or profiling. When to Use Use this router when: App feels slow or laggy Memory usage grows over time Battery drains quickly Device gets hot during use High energy usage in Battery Settings Diagnosing performance with Instruments Memory leaks or retain cycles App crashes with memory warnings Routing Logic Memory Issues Memory leaks (Swift) → /skill axiom-memory-debu...
217
12717 llm-application-dev skillcreatorai/ai-agent-skills
LLM Application Development Prompt Engineering Structured Prompts const systemPrompt = `You are a helpful assistant that answers questions about our product. RULES: - Only answer questions about our product - If you don't know, say "I don't know" - Keep responses concise (under 100 words) - Never make up information CONTEXT: {context}`; const userPrompt = `Question: {question}`; Few-Shot Examples const prompt = `Classify the sentiment of customer feedback. Examples: Input: "Love this produc...
217
12718 biologist-analyst rysweet/amplihack
Biologist Analyst Skill Purpose Analyze living systems, biological phenomena, and life sciences questions through the disciplinary lens of biology, applying established frameworks (evolutionary theory, molecular biology, ecology, systems biology), multiple levels of analysis (molecular, cellular, organismal, population, ecosystem), and evidence-based methods to understand how life works, how organisms adapt, and how biological systems interact. When to Use This Skill Evolutionary Analysis: Und...
217
12719 animation-micro-interaction-pack patricio0312rev/skills
Animation & Micro-interaction Pack Create polished, performant animations and micro-interactions. Animation Patterns Hover Effects: Scale, lift (translateY), glow (box-shadow), color shifts Entrance: Fade-in, slide-in, zoom-in with stagger for lists Exit: Fade-out, slide-out, scale-out Loading: Pulse, skeleton waves, progress bars Gestures: Ripple on click, drag feedback, swipe indicators Tailwind Animations /* tailwind.config.js */ animation: { 'fade-in': 'fadeIn 0.5s ease-out', 'slide-...
217
12720 xcode-build pzep1/xcode-build-skill
Xcode Build Direct Build and manage iOS/macOS projects using native Xcode CLI tools instead of MCP servers. When to Use This Skill Use this skill when: Building iOS or macOS apps with Xcode Running apps in iOS simulators Managing simulator instances (boot, shutdown, list) Taking screenshots of simulators Capturing app logs Running tests (unit or UI) Automating UI interactions (tap, type, swipe) Preference : Always use direct CLI commands ( xcodebuild , xcrun simctl ) instead of XcodeBuildMCP too...
217
12721 cellxgene-census davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
217
12722 pyopenms davila7/claude-code-templates
PyOpenMS Overview PyOpenMS provides Python bindings to the OpenMS library for computational mass spectrometry, enabling analysis of proteomics and metabolomics data. Use for handling mass spectrometry file formats, processing spectral data, detecting features, identifying peptides/proteins, and performing quantitative analysis. Installation Install using uv: uv pip install pyopenms Verify installation: Show more
217
12723 histolab davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
217
12724 opentargets-database davila7/claude-code-templates
Open Targets Database Skill Overview This skill provides access to the Open Targets Platform GraphQL API. It aggregates multi-modal evidence from genetics (GWAS/eQTL), pathways, animal models, and clinical trials to rank target-disease associations and identify druggable genes. Prerequisites uv : Read the uv skill and follow its Setup instructions to ensure uv is installed and on PATH. User Notification : If LICENSE_NOTIFICATION.txt does not already exist in this skill directory then (1) promine...
217
12725 arboreto davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
217
12726 professional-communication davila7/claude-code-templates
Professional Communication Overview This skill provides frameworks and guidance for effective professional communication in software development contexts. Whether you're writing an email to stakeholders, crafting a team chat message, or preparing meeting agendas, these principles help you communicate clearly and build professional credibility. Core principle: Effective communication isn't about proving how much you know - it's about ensuring your message is received and understood. When to Use T...
217
12727 git-pr-workflows-pr-enhance sickn33/antigravity-awesome-skills
Pull Request Enhancement You are a PR optimization expert specializing in creating high-quality pull requests that facilitate efficient code reviews. Generate comprehensive PR descriptions, automate review processes, and ensure PRs follow best practices for clarity, size, and reviewability. Use this skill when Working on pull request enhancement tasks or workflows Needing guidance, best practices, or checklists for pull request enhancement Do not use this skill when The task is unrelated to pull...
217
12728 gmail-automation sickn33/antigravity-awesome-skills
Gmail Lightweight Gmail integration with standalone OAuth authentication. No MCP server required. ⚠️ Requires Google Workspace account. Personal Gmail accounts are not supported. When to Use You need to search, read, or send Gmail messages from the command line without an MCP server. You are automating inbox workflows for a Google Workspace account. You want a lightweight Gmail integration backed by standalone OAuth scripts. First-Time Setup Authenticate with Google (opens browser): python scrip...
217
12729 tooluniverse-clinical-trial-design mims-harvard/tooluniverse
Clinical Trial Design Feasibility Assessment Systematically assess clinical trial feasibility by analyzing 6 research dimensions. Produces comprehensive feasibility reports with quantitative enrollment projections, endpoint recommendations, and regulatory pathway analysis. IMPORTANT : Always use English terms in tool calls (drug names, disease names, biomarker names), even if the user writes in another language. Only try original-language terms as a fallback if English returns no results. Respon...
217
12730 jsdoc-typescript-docs patricio0312rev/skills
JSDoc TypeScript Documentation Create comprehensive inline documentation for TypeScript codebases. Core Workflow Document functions: Parameters, returns, examples Document types: Interfaces, types, enums Add descriptions: Purpose and usage Include examples: Code samples Generate docs: TypeDoc output Integrate CI: Automated doc generation Function Documentation Basic Function / * Calculates the total price including tax. * * @param price - The base price before tax * @param taxRate - The ta...
217
12731 gpd-metadata-sync rudrankriyam/app-store-connect-cli-skills
GPD Metadata Sync Use this skill to keep local metadata in sync with Google Play. Store listing fields gpd publish listing get --package com.example.app gpd publish listing update --package com.example.app --locale en-US --title "My App" gpd publish details get --package com.example.app gpd publish details update --package com.example.app --contact-email support@example.com Images and assets gpd publish images list phoneScreenshots --package com.example.app --locale en-US gpd publish images uplo...
216
12732 ddd:software-architecture neolabhq/context-engineering-kit
Software Architecture Development Skill This skill provides guidance for quality focused software development and architecture. It is based on Clean Architecture and Domain Driven Design principles. Code Style Rules General Principles Early return pattern : Always use early returns when possible, over nested conditions for better readability Avoid code duplication through creation of reusable functions and modules Decompose long (more than 80 lines of code) components and functions into multiple...
216
12733 axiom-swiftui-performance charleswiltgen/axiom
SwiftUI Performance Optimization When to Use This Skill Use when: App feels less responsive (hitches, hangs, delayed scrolling) Animations pause or jump during execution Scrolling performance is poor Profiling reveals SwiftUI is the bottleneck View bodies are taking too long to run Views are updating more frequently than necessary Need to understand cause-and-effect of SwiftUI updates Example Prompts These are real questions developers ask that this skill is designed to answer: 1. "My app ha...
216
12734 browser iamzhihuix/happy-claude-skills
Browser Automation Automate browser interactions using the browse CLI with Claude. Setup check Before running any browser commands, verify the CLI is available: which browse || npm install -g @browserbasehq/browse-cli Environment Selection (Local vs Remote) The CLI automatically selects between local and remote browser environments based on available configuration: Local mode (default) Uses local Chrome — no API keys needed Best for: development, simple pages, trusted sites with no bot protectio...
216
12735 ena-database davila7/claude-code-templates
ENA Database Overview The European Nucleotide Archive (ENA) is a comprehensive public repository for nucleotide sequence data and associated metadata. Access and query DNA/RNA sequences, raw reads, genome assemblies, and functional annotations through REST APIs and FTP for genomics and bioinformatics pipelines. When to Use This Skill This skill should be used when: Retrieving nucleotide sequences or raw sequencing reads by accession Searching for samples, studies, or assemblies by metadata c...
216
12736 social-writer itechmeat/llm-code
Social Writer Create platform-optimized social media content that sounds human, drives engagement, and builds audience. Quick Navigation Topic Reference X Single Posts x-posts.md X Threads x-threads.md X Content Strategy x-strategy.md Hook Patterns hooks.md LinkedIn linkedin.md Threads & Instagram threads-instagram.md Facebook facebook.md AI Writing Avoidance ai-avoidance.md Style Guide style-guide.md Technical Blog Styles technical-styles.md Platform Quick Reference Platform Limit Best Length...
216
12737 feature-prioritization-assistant pmprompt/claude-plugin-product-management
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve Feature Prioritization Assistant When to Use Building your product roadmap Need to choose between multiple feature...
216
12738 humanize-ai-text alphaonedev/openclaw-graph
humanize-ai-text Purpose This skill humanizes AI-generated text by reducing detectable patterns, enhancing natural phrasing, and adjusting tone to make it indistinguishable from human writing. It processes input text through algorithms that analyze and rewrite content for subtlety and realism, primarily for content creators avoiding AI detection tools. When to Use Use this skill when you need to refine AI-produced text for blogs, articles, or social media to evade detection by tools like Origina...
216
12739 abund-ai abund-ai/abund.ai
Abund.ai The first social network built exclusively for AI agents. Humans observe. You participate. Base URL: https://api.abund.ai/api/v1 🌐 100% Open Source Abund.ai is fully open source. You can shape the platform! Resource Link GitHub Repo github.com/abund-ai/abund.ai Feature Requests Post to c/feature-requests community Contribute Code Submit PRs to get your features built Skill Files File URL SKILL.md (this file) https://abund.ai/skill.md HEARTBEAT.md https://abund.ai/heartbeat.md skill.json...
215
12740 gpd-ppp-pricing rudrankriyam/app-store-connect-cli-skills
PPP Pricing (Per-Region Pricing) Use this skill to set different prices per region for subscriptions and one-time products. Preconditions Ensure credentials are set ( GPD_SERVICE_ACCOUNT_KEY ). Use --package explicitly. Know target region codes and price micros. Subscription base plan pricing Migrate prices for a base plan gpd monetization baseplans migrate-prices --package com.example.app sub123 plan456 --region-code US --price-micros 9990000 Batch migrate prices gpd monetization baseplans batc...
215
12741 reproduce-bug everyinc/compound-engineering-plugin
Bug Reproduction Framework Given a Linear ticket context ($ARGUMENTS), systematically reproduce the bug with a failing regression test. Step 1: Parse Signals Extract the following from the provided ticket context: Error message / stack trace (if provided) Reproduction steps (if provided) Workflow JSON (if attached) Affected area (node, execution engine, editor, API, config, etc.) Version where it broke / last working version Step 2: Route to Test Strategy Based on the affected area, pick the tes...
215
12742 wordpress-block-editor-fse bobmatnyc/claude-mpm-skills
WordPress Block Editor & Full Site Editing Overview Full Site Editing (FSE) is production-ready (since WP 6.2) and treats everything as blocks—headers, footers, templates, not just content. Block themes use HTML templates + theme.json instead of PHP files + style.css. Key Components: theme.json: Centralized colors, typography, spacing, layout HTML Templates: Block-based files (index.html, single.html) Template Parts: Reusable components (header.html, footer.html) Block Patterns: Pre-designed ...
215
12743 xlsx aiskillstore/marketplace
Requirements for Outputs All Excel files Professional Font Use a consistent, professional font (e.g., Arial, Times New Roman) for all deliverables unless otherwise instructed by the user Zero Formula Errors Every Excel model MUST be delivered with ZERO formula errors (REF!, DIV/0!, VALUE!, N/A, NAME?) Preserve Existing Templates (when updating templates) Study and EXACTLY match existing format, style, and conventions when modifying files Never impose standardized formatting on files with establi...
215
12744 quant-factor-screener geeksfino/finskills
量化因子筛选器 扮演量化权益分析师。使用基于学术因子研究的系统化多因子框架筛选A股——对价值、动量、质量、低波动、规模和成长因子进行评分和排名。 工作流程 第一步:确定参数 与用户确认: 输入 选项 默认 选股池 沪深300 / 中证500 / 中证1000 / 全A / 自定义 中证800 因子 全部6个或特定因子 全部 因子权重 等权或自定义 等权 行业约束 行业中性或不约束 行业中性 结果数量 前N只 前20只 宏观研判 当前因子择时评估 自动判断 排除项 行业、概念、特定个股 无 第二步:计算因子得分 对选股池中每只股票计算各因子得分。详细定义参见 references/factor-methodology.md 。 因子 主要指标 默认权重 价值 盈利收益率、PB倒数、FCF收益率、EV/EBITDA 1/6 动量 12-1月价格动量、盈利预期修正动量 1/6 质量 ROE、盈利稳定性、低杠杆、应计质量 1/6 低波动 已实现波动率(1年)、Beta、下行偏差 1/6 规模 市值(越小得分越高) 1/6 成长 营收增速、盈利增速、利润率扩张 1/6 对每个因子: 计算每只股票...
215
12745 plugin structure davila7/claude-code-templates
Plugin Structure for Claude Code Overview Claude Code plugins follow a standardized directory structure with automatic component discovery. Understanding this structure enables creating well-organized, maintainable plugins that integrate seamlessly with Claude Code. Key concepts: Conventional directory layout for automatic discovery Manifest-driven configuration in .claude-plugin/plugin.json Component-based organization (commands, agents, skills, hooks) Portable path references using ${CLAUDE_PL...
215
12746 cosmic-database davila7/claude-code-templates
COSMIC Database Overview COSMIC (Catalogue of Somatic Mutations in Cancer) is the world's largest and most comprehensive database for exploring somatic mutations in human cancer. Access COSMIC's extensive collection of cancer genomics data, including millions of mutations across thousands of cancer types, curated gene lists, mutational signatures, and clinical annotations programmatically. When to Use This Skill This skill should be used when: Downloading cancer mutation data from COSMIC Acc...
215
12747 hypogenic davila7/claude-code-templates
Hypogenic Overview Hypogenic provides automated hypothesis generation and testing using large language models to accelerate scientific discovery. The framework supports three approaches: HypoGeniC (data-driven hypothesis generation), HypoRefine (synergistic literature and data integration), and Union methods (mechanistic combination of literature and data-driven hypotheses). Quick Start Get started with Hypogenic in minutes: Install the package uv pip install hypogenic Clone example datasets g...
215
12748 capa-officer davila7/claude-code-templates
CAPA Officer Corrective and Preventive Action (CAPA) management within Quality Management Systems, focusing on systematic root cause analysis, action implementation, and effectiveness verification. Table of Contents CAPA Investigation Workflow Root Cause Analysis Corrective Action Planning Effectiveness Verification CAPA Metrics and Reporting Reference Documentation Tools CAPA Investigation Workflow Conduct systematic CAPA investigation from initiation through closure: Document trigger event wit...
215
12749 gitops-workflow sickn33/antigravity-awesome-skills
GitOps Workflow Complete guide to implementing GitOps workflows with ArgoCD and Flux for automated Kubernetes deployments. Purpose Implement declarative, Git-based continuous delivery for Kubernetes using ArgoCD or Flux CD, following OpenGitOps principles. When to Use This Skill Set up GitOps for Kubernetes clusters Automate application deployments from Git Implement progressive delivery strategies Manage multi-cluster deployments Configure automated sync policies Set up secret management in Git...
215
12750 nextjs-server-client-components wsimmonds/claude-nextjs-skills
Next.js Server Components vs Client Components Overview Provide comprehensive guidance for choosing between Server Components and Client Components in Next.js App Router, including cookie/header access, searchParams handling, pathname routing, and React's 'use' API for promise unwrapping. TypeScript: NEVER Use any Type CRITICAL RULE: This codebase has @typescript-eslint/no-explicit-any enabled. Using any will cause build failures. ❌ WRONG: function handleSubmit(e: any) { ... } const data: a...
215