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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
6551 industry-research rkreddyp/investrecipes
A comprehensive skill for conducting deep industry research across multiple sectors including consumer, technology, healthcare, and finance industries. Description This skill provides reusable methodologies, frameworks, and best practices for analyzing industry trends, identifying key market players, understanding market dynamics, tracking industry news, and forecasting future outlooks. Core Research Areas 1. Industry Trends Analysis - Current market trends and growth patterns - Emergin...
132
6552 sql-optimization-patterns sickn33/antigravity-awesome-skills
SQL Optimization Patterns Transform slow database queries into lightning-fast operations through systematic optimization, proper indexing, and query plan analysis. When to Use This Skill Debugging slow-running queries Designing performant database schemas Optimizing application response times Reducing database load and costs Improving scalability for growing datasets Analyzing EXPLAIN query plans Implementing efficient indexes Resolving N+1 query problems Core Concepts 1. Query Execution Plans...
132
6553 symfony:symfony-cache makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:symfony-cache<div
132
6554 competitive-analysis anthropics/financial-services-plugins
Competitive Analysis Help the user understand competitive dynamics using frameworks from 49 product leaders who have navigated competition at companies from startups to Netflix and Google. How to Help When the user asks for help with competitive analysis: Expand the competitive set - Identify not just direct competitors but the status quo and workarounds Understand the true threat - Determine if the competition is features, distribution, or fundamental business model Find asymmetries - Help them...
132
6555 proxmox-admin bastos/skills
Proxmox VE Administration Overview Proxmox VE is a server virtualization platform built on Debian. It manages KVM virtual machines and LXC containers through a web UI or CLI tools. This skill covers CLI-based administration using qm (VMs), pct (containers), and supporting utilities. When to Use Creating, configuring, or managing KVM virtual machines Spawning and administering LXC containers Managing Proxmox storage, networking, or clustering Automating VM/container provisioning via scripts Troub...
132
6556 tooluniverse-antibody-engineering mims-harvard/tooluniverse
Antibody Engineering & Optimization AI-guided antibody optimization pipeline from preclinical lead to clinical candidate. Covers sequence humanization, structure modeling, affinity optimization, developability assessment, immunogenicity prediction, and manufacturing feasibility. KEY PRINCIPLES : Report-first approach - Create optimization report before analysis Evidence-graded humanization - Score based on germline alignment and framework retention Developability-focused - Assess aggregation, st...
132
6557 tdd:fix-tests neolabhq/context-engineering-kit
Fix Tests User Arguments User can provide to focus on specific tests or modules: $ARGUMENTS If nothing is provided, focus on all tests. Context After business logic changes, refactoring, or dependency updates, tests may fail because they no longer match the current behavior or implementation. This command orchestrates automated fixing of all failing tests using specialized agents. Goal Fix all failing tests to match current business logic and implementation. Important Constraints Focus on fixing...
132
6558 growth-funnel kostja94/marketing-skills
Strategies: Growth Funnel (AARRR) Guides growth using the AARRR framework (Pirate Metrics)—five stages of the customer lifecycle. Created by Dave McClure (500 Startups) to focus on actionable metrics over vanity metrics. Use this skill when diagnosing growth bottlenecks, prioritizing improvements, or aligning product, marketing, and customer success. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On s...
131
6559 neon-drizzle neondatabase/ai-rules
Comprehensive Drizzle ORM setup for Neon databases with guided workflows. When to Use This Skill - Setting up Drizzle in a new project (Next.js, Vite, Express, etc.) - Integrating Drizzle into an existing application - Creating or modifying database schemas - Troubleshooting migration issues Code Generation Rules When generating TypeScript/JavaScript code: - BEFORE generating import statements, check tsconfig.json for path aliases (compilerOptions.paths) - If path aliases exist (e.g.,...
131
6560 git-hooks-setup aj-geddes/useful-ai-prompts
Git Hooks Setup Overview Configure Git hooks to enforce code quality standards, run automated checks, and prevent problematic commits from being pushed to shared repositories. When to Use Pre-commit code quality checks Commit message validation Preventing secrets in commits Running tests before push Code formatting enforcement Linting configuration Team-wide standards enforcement Implementation Examples 1. Husky Installation and Configuration !/bin/bash setup-husky.sh Install Husky npm inst...
131
6561 dask davila7/claude-code-templates
Dask Overview Dask is a Python library for parallel and distributed computing that enables three critical capabilities: Larger-than-memory execution on single machines for data exceeding available RAM Parallel processing for improved computational speed across multiple cores Distributed computation supporting terabyte-scale datasets across multiple machines Dask scales from laptops (processing ~100 GiB) to clusters (processing ~100 TiB) while maintaining familiar Python APIs. When to Use Thi...
131
6562 memory-recall volcengine/openviking
You are a memory retrieval sub-agent for OpenViking memory. Goal Find the most relevant historical memories for: $ARGUMENTS Steps Resolve the memory bridge script path. PROJECT_DIR = " ${CLAUDE_PROJECT_DIR :- $PWD} " STATE_FILE = " $PROJECT_DIR /.openviking/memory/session_state.json" BRIDGE = " ${CLAUDE_PLUGIN_ROOT :- } /scripts/ov_memory.py" if [ ! -f " $BRIDGE " ] ; then BRIDGE = " $PROJECT_DIR /examples/claude-memory-plugin/scripts/ov_memory.py" fi Run memory recall search. python3 " $BRIDGE ...
131
6563 write-plan buiducnhat/agent-skills
Write Plan Overview Produce a complete, self-contained implementation plan that can be executed by execute-plan with minimal ambiguity. This skill is for planning only: Do not implement code Do not modify production files (except plan artifacts) Artifact Conventions Use one consistent artifact structure for every plan: Plan directory: docs/plans/YYMMDD-HHmm-<plan-slug>/ Main summary: docs/plans/YYMMDD-HHmm-<plan-slug>/SUMMARY.md Phase files: docs/plans/YYMMDD-HHmm-<plan-slug>/phase-01-<name>.md ...
131
6564 browsing obra/superpowers-chrome
Browsing with Chrome Direct Overview Control Chrome via DevTools Protocol using the use_browser MCP tool. Single unified interface with auto-starting Chrome. Announce: "I'm using the browsing skill to control Chrome." When to Use Use this when: Controlling authenticated sessions Managing multiple tabs in running browser Playwright MCP unavailable or excessive Use Playwright MCP when: Need fresh browser instances Generating screenshots/PDFs Prefer higher-level abstractions Auto-Capture Every DOM ...
131
6565 hyva-cms-components-dump hyva-themes/hyva-ai-tools
Hyvä CMS Component Dump Locates all components.json files from Hyvä CMS modules and outputs a merged JSON object containing all component definitions from active modules. Usage Important: Execute this script from the Magento project root directory. Run the dump script: php <skill_path>/scripts/dump_cms_components.php Where <skill_path> is the directory containing this SKILL.md file (e.g., .claude/skills/hyva-cms-components-dump). Output format: A single JSON object containing all merged ...
131
6566 clean-code pproenca/dot-skills
Clean Code - Pragmatic AI Coding Standards CRITICAL SKILL - Be concise, direct, and solution-focused . Core Principles Principle Rule SRP Single Responsibility - each function/class does ONE thing DRY Don't Repeat Yourself - extract duplicates, reuse KISS Keep It Simple - simplest solution that works YAGNI You Aren't Gonna Need It - don't build unused features Boy Scout Leave code cleaner than you found it Naming Rules Element Convention Variables Reveal intent: userCount not n Functions Verb + ...
131
6567 godot-master thedivergentai/gd-agentic-skills
Godot Master: Lead Architect Knowledge Hub Every section earns its tokens by focusing on Knowledge Delta — the gap between what Claude already knows and what a senior Godot engineer knows from shipping real products. 🧠 Part 1: Expert Thinking Frameworks "Who Owns What?" — The Architecture Sanity Check Before writing any system, answer these three questions for EVERY piece of state: Who owns the data? (The StatsComponent owns health, NOT the CombatSystem ) Who is allowed to change it? (Only the o...
131
6568 python-uv mindrally/skills
Python Package Management with uv You are an expert in Python development with uv package management. Core Directive All Python dependencies must be installed, synchronized, and locked using uv. Never use pip, pip-tools, or poetry directly for dependency management. Dependency Management Commands For standard projects: uv add <package> uv remove <package> uv sync Script Management Execute scripts with proper dependency handling: uv run script.py Manual Inline Metadata Configuration S...
131
6569 accountant-expert personamanagmentlayer/pcl
Expert guidance for accounting systems, financial reporting, tax compliance, and modern accounting technology. Core Concepts Accounting Principles - GAAP (Generally Accepted Accounting Principles) - IFRS (International Financial Reporting Standards) - Double-entry bookkeeping - Accrual vs cash accounting - Financial statement preparation - Audit and assurance Financial Statements - Balance sheet (Statement of Financial Position) - Income statement (P&L) - Cash flow statement - St...
131
6570 write-pr tldraw/tldraw
Writing pull requests Standards for PR titles and descriptions in tldraw/tldraw. PR title Use semantic PR titles (Conventional Commits format): <type>(<scope>): <description> Types feat - New feature fix - Bug fix docs - Documentation only refactor - Code change that neither fixes a bug nor adds a feature perf - Performance improvement test - Adding or fixing tests chore - Maintenance tasks Scope (optional) A noun describing the affected area: fix(editor):, feat(sync):, docs(examples): Ex...
131
6571 web3-frontend pluginagentmarketplace/custom-plugin-blockchain
Web3 Frontend Skill Master Web3 frontend development with wallet integration, modern libraries (viem/wagmi), and production dApp patterns. Quick Start Invoke this skill for Web3 frontend development Skill("web3-frontend", topic="wallet", framework="react") Topics Covered 1. Wallet Integration Connect users to Web3: RainbowKit: Beautiful wallet modal WalletConnect: Mobile support Account Abstraction: ERC-4337 Multi-chain: Network switching 2. Transaction Management Handle blockchain intera...
131
6572 zustand-5 prowler-cloud/prowler
Basic Store import { create } from "zustand"; interface CounterStore { count: number; increment: () => void; decrement: () => void; reset: () => void; } const useCounterStore = create<CounterStore>((set) => ({ count: 0, increment: () => set((state) => ({ count: state.count + 1 })), decrement: () => set((state) => ({ count: state.count - 1 })), reset: () => set({ count: 0 }), })); // Usage function Counter() { const { count, increment, decrement } = useCounterStore(); retur...
131
6573 symfony:brainstorming makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:brainstorming<div
131
6574 linkedin-post-generator casper-studios/casper-marketplace
LinkedIn Post Generator Generate LinkedIn posts from shared source material, written in each user's personal style. How It Works Personal style profile — stored locally at ~/.config/casper/linkedin-style.md (never committed) Source config — stored locally at ~/.config/casper/linkedin-sources.md (never committed) Shared source material — meeting transcripts, Slack dumps, docs in source-material/ Prompt template — extraction rules, voice guidelines, few-shot examples in references/prompt-template....
131
6575 symfony:doctrine-batch-processing makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:doctrine-batch-processing<div
131
6576 openai-knowledge openai/openai-agents-python
OpenAI Knowledge Overview Use the OpenAI Developer Documentation MCP server to search and fetch exact docs (markdown), then base your answer on that text instead of guessing. Workflow 1) Check whether the Docs MCP server is available If the mcp__openaiDeveloperDocs__* tools are available, use them. If you are unsure, run codex mcp list and check for openaiDeveloperDocs. 2) Use MCP tools to pull exact docs Search first, then fetch the specific page or pages. mcp__openaiDeveloperDocs__search_...
131
6577 premium_web_design jerrar670/surf-website
This skill outlines the key elements required to create "wow" factor, premium web applications. 1. Typography - Font Choice: Use modern, geometric sans-serifs (e.g., Inter, Outfit, Manrope) or elegant serifs for headings. Avoid default system fonts unless intentionally styled. - Hierarchy: Establish clear scale (h1 vs p). Use extreme contrast in size (huge headlines, small refined labels). - Spacing: Generous line-height (1.5-1.7 for body). tracking-tight for large headings to make them fee...
131
6578 ionic mindrally/skills
Ionic Development You are an expert in Ionic for building cross-platform mobile applications. Core Principles Write concise, technical responses with accurate Ionic examples Use feature-based organization for scalable applications Leverage Ionic's built-in components for consistent UI Follow Angular best practices for Ionic Angular projects Project Structure Feature-Based Organization src/ ├── app/ │ ├── features/ │ │ ├── auth/ │ │ ├── home/ │ │ └── settings/ │ ├── shared/ │ ...
131
6579 execute-plan buiducnhat/agent-skills
Execute Plan Overview Execute a pre-approved plan with strict adherence to scope, sequence, and verification. The input is typically: execute-plan docs/plans/YYMMDD-HHmm-<plan-slug>/SUMMARY.md or shorthand: execute-plan docs/plans/YYMMDD-HHmm-<plan-slug> Do not redesign the plan during execution. If ambiguity or blockers appear, stop and ask. Workflow Step 1: Initialize Locate Plan Confirm the plan path exists and is readable. If a directory is provided, locate SUMMARY.md inside it. Load Executi...
131
6580 unsplash cevatkerim/skills
Unsplash Photo Search Search and fetch high-quality photos from Unsplash with automatic attribution. Quick Start Search for photos ./scripts/search.sh "sunset beach" Get random photos ./scripts/random.sh "nature" 3 Track download (when user downloads) ./scripts/track.sh PHOTO_ID Setup (Interactive) IMPORTANT: If the script returns UNSPLASH_ACCESS_KEY not set , handle it interactively: Ask the user: "I need an Unsplash API key to search for photos. You can get a free key at https://unsplash.co...
131
6581 tdd:write-tests neolabhq/context-engineering-kit
Cover Local Changes with Tests User Arguments User can provide a what tests or modules to focus on: $ARGUMENTS If nothing is provided, focus on all changes in current git diff that not commited. If everything is commited, then will cover latest commit. Context After implementing new features or refactoring existing code, it's critical to ensure all business logic changes are covered by tests. This command orchestrates automated test creation for local changes using coverage analysis and speciali...
131
6582 uniprot-database davila7/claude-code-templates
UniProt Database Overview UniProt is the world's leading comprehensive protein sequence and functional information resource. Search proteins by name, gene, or accession, retrieve sequences in FASTA format, perform ID mapping across databases, access Swiss-Prot/TrEMBL annotations via REST API for protein analysis. When to Use This Skill This skill should be used when: Searching for protein entries by name, gene symbol, accession, or organism Retrieving protein sequences in FASTA or other form...
131
6583 pipedrive membranedev/application-skills
Pipedrive Pipedrive is a CRM and sales management tool. It helps sales teams organize leads, track deals, and automate sales processes. It's used by small to medium-sized businesses to improve sales performance and manage customer relationships. Official docs: https://developers.pipedrive.com/docs/api/v1 Pipedrive Overview Deals Deal Fields Persons Person Fields Organizations Organization Fields Products Stages Pipelines Users Activity Types Activities Files Notes Email Messages Quotes Use actio...
131
6584 axiom-swiftdata-migration charleswiltgen/axiom
SwiftData Custom Schema Migrations Overview SwiftData schema migrations move your data safely when models change. Core principle SwiftData's willMigrate sees only OLD models, didMigrate sees only NEW models—you can never access both simultaneously. This limitation shapes all migration strategies. Requires iOS 17+, Swift 5.9+ Target iOS 26+ (features like propertiesToFetch) When Custom Migrations Are Required Lightweight Migrations (Automatic) SwiftData can migrate automatically for: ✅ Addin...
131
6585 axiom-app-intents-ref charleswiltgen/axiom
App Intents Integration Overview Comprehensive guide to App Intents framework for exposing app functionality to Siri, Apple Intelligence, Shortcuts, Spotlight, and other system experiences. Replaces older SiriKit custom intents with modern Swift-first API. Core principle App Intents make your app's actions discoverable across Apple's ecosystem. Well-designed intents feel natural in Siri conversations, Shortcuts automation, and Spotlight search. When to Use This Skill Exposing app functionalit...
131
6586 security-documentation aj-geddes/useful-ai-prompts
Security Documentation Overview Create comprehensive security documentation including policies, guidelines, compliance requirements, and best practices for secure application development and operations. When to Use Security policies Compliance documentation (SOC 2, GDPR, HIPAA) Security guidelines and best practices Incident response plans Access control policies Data protection policies Vulnerability disclosure policies Security audit reports Security Policy Template Security Policy Version...
131
6587 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...
131
6588 pull-request-automation aj-geddes/useful-ai-prompts
Pull Request Automation Overview Implement pull request automation to streamline code review processes, enforce quality standards, and reduce manual overhead through templated workflows and intelligent assignment rules. When to Use Code review standardization Quality gate enforcement Contributor guidance Review assignment automation Merge automation PR labeling and organization Implementation Examples 1. GitHub Pull Request Template .github/pull_request_template.md Description Briefly descr...
131
6589 md2wechat geekjourneyx/md2wechat-skill
MD to WeChat Converts Markdown articles to WeChat Official Account formatted HTML with inline CSS and optionally uploads to draft box. Supports two modes: API Mode : Fast conversion using md2wechat.cn API AI Mode : Beautiful themed layouts powered by Claude AI Quick Start Preview HTML (API mode, fast) bash skills/md2wechat/scripts/run.sh convert article.md --preview Preview HTML (AI mode, themed) bash skills/md2wechat/scripts/run.sh convert article.md --mode ai --theme autumn-warm --preview U...
131
6590 java-testing-advanced pluginagentmarketplace/custom-plugin-java
Advanced testing techniques for comprehensive test coverage. Overview This skill covers advanced testing patterns including Testcontainers for integration testing, contract testing with Pact, mutation testing with PIT, and property-based testing. When to Use This Skill Use when you need to: - Test with real databases (Testcontainers) - Verify API contracts - Find gaps with mutation testing - Generate test cases automatically Quick Reference Testcontainers ``` @Testcontainers @Spri...
131
6591 ethical hacking methodology davila7/claude-code-templates
Ethical Hacking Methodology Purpose Master the complete penetration testing lifecycle from reconnaissance through reporting. This skill covers the five stages of ethical hacking methodology, essential tools, attack techniques, and professional reporting for authorized security assessments. Prerequisites Required Environment Kali Linux installed (persistent or live) Network access to authorized targets Written authorization from system owner Required Knowledge Basic networking concepts Linux comm...
131
6592 wechat-message tiancheng91/wechat-msg-send
微信消息发送技能 此技能通过 AppleScript 脚本实现 macOS 上微信消息的自动化发送。 功能概述 自动激活微信应用 搜索指定联系人或群组 发送指定消息内容 支持中文和特殊字符 使用方法 调用方式 osascript scripts/wechat_automation_script.applescript "<用户名>" "<消息内容>" 参数说明 参数 必填 说明 用户名 是 微信联系人名称或群名称,需完全匹配 消息内容 是 要发送的消息文本 使用示例 发送消息给好友 osascript scripts/wechat_automation_script.applescript "张三" "你好,今天有空吗?" 发送消息到群组 osascript scripts/wechat_automation_script.applescript "工作群" "大家好!" 发送包含中文的消息 osascript scripts/wechat_automation_script.applescript "Yatocala" "hello你好" 工作流程 激活微信 - 将微信窗口置于...
131
6593 causal inference aj-geddes/useful-ai-prompts
Causal Inference Overview Causal inference determines cause-and-effect relationships and estimates treatment effects, going beyond correlation to understand what causes what. When to Use Evaluating the impact of policy interventions or business decisions Estimating treatment effects when randomized experiments aren't feasible Controlling for confounding variables in observational data Determining if a marketing campaign or product change caused an outcome Analyzing heterogeneous treatment effect...
131
6594 session-handoff davila7/claude-code-templates
Handoff Creates comprehensive handoff documents that enable fresh AI agents to seamlessly continue work with zero ambiguity. Solves the long-running agent context exhaustion problem. Mode Selection Determine which mode applies: Creating a handoff? User wants to save current state, pause work, or context is getting full. Follow: CREATE Workflow below Resuming from a handoff? User wants to continue previous work, load context, or mentions an existing handoff. Follow: RESUME Workflow below Proactiv...
131
6595 database-indexing-strategy aj-geddes/useful-ai-prompts
Database Indexing Strategy Overview Design comprehensive indexing strategies to improve query performance, reduce lock contention, and maintain data integrity. Covers index types, design patterns, and maintenance procedures. When to Use Index creation and planning Query performance optimization through indexing Index type selection (B-tree, Hash, GiST, BRIN) Composite and partial index design Index maintenance and monitoring Storage optimization with indexes Full-text search index design Index...
131
6596 esm davila7/claude-code-templates
ESM: Evolutionary Scale Modeling Overview ESM provides state-of-the-art protein language models for understanding, generating, and designing proteins. This skill enables working with two model families: ESM3 for generative protein design across sequence, structure, and function, and ESM C for efficient protein representation learning and embeddings. Core Capabilities 1. Protein Sequence Generation with ESM3 Generate novel protein sequences with desired properties using multimodal generative m...
131
6597 symfony:daily-workflow makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:daily-workflow<div
131
6598 ui-ux-design samhvw8/dot-claude
UI Design Reference - Searchable Pattern Database Curated reference database of UI/UX patterns, styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices. Use this as a lookup tool to find proven design patterns and implementation guidance. Prerequisites Check if Python is installed: python3 --version || python --version If Python is not installed, install it based on user's OS: macOS: brew install python3 Ubuntu/Debian: sudo ap...
131
6599 elasticsearch-esql elastic/agent-skills
Elasticsearch ES|QL Execute ES|QL queries against Elasticsearch. What is ES|QL? ES|QL (Elasticsearch Query Language) is a piped query language for Elasticsearch. It is NOT the same as: Elasticsearch Query DSL (JSON-based) SQL EQL (Event Query Language) ES|QL uses pipes ( | ) to chain commands: FROM index | WHERE condition | STATS aggregation BY field | SORT field | LIMIT n Prerequisite: ES|QL requires _source to be enabled on queried indices. Indices with _source disabled (e.g., "_source": { "en...
131
6600 fastapi-microservices-development manutej/luxor-claude-marketplace
FastAPI Microservices Development A comprehensive skill for building production-ready microservices using FastAPI. This skill covers REST API design patterns, asynchronous operations, dependency injection, testing strategies, and deployment best practices for scalable Python applications. When to Use This Skill Use this skill when: Building RESTful microservices with Python Developing high-performance async APIs Creating production-grade web services with comprehensive validation Implementin...
131