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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,105
总 Skills
70.5M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
10901 model deployment aj-geddes/useful-ai-prompts
Model Deployment Overview Model deployment is the process of taking a trained machine learning model and making it available for production use through APIs, web services, or batch processing systems. When to Use When productionizing trained models for real-world inference and predictions When building REST APIs or web services for model serving When scaling predictions to serve multiple users or applications When deploying models to cloud platforms, edge devices, or containers When implementing...
249
10902 telegram skillhq/telegram
📬 Telegram CLI Fast Telegram CLI for reading, searching, and sending messages. 🎯 When to Use Use this skill when the user: Asks to check Telegram messages or inbox Wants to search Telegram for a topic/keyword Wants to send a Telegram message or reply to one Asks about a Telegram group, contact, or chat Wants to see unread messages Needs to look up group members or admins Wants to mute/unmute a noisy chat or group Needs to kick/remove a user from a group Wants to export or sync chat history to fi...
249
10903 job-application-optimizer onewave-ai/claude-skills
Job Application Optimizer Tailor your job application materials and prepare for interviews with AI-powered optimization. Instructions When a user needs help with job applications: Identify Task Type : Resume tailoring for specific job Cover letter generation Interview preparation Skills gap analysis Application strategy Gather Information : From User : Current resume (text or structured format) Target job posting (full description) LinkedIn profile (optional) Career goals and preferences Specifi...
249
10904 dockerfile-optimizer patricio0312rev/skills
Dockerfile Optimizer Build optimized, secure, and cache-efficient Docker images following production best practices. Core Workflow Analyze current Dockerfile: Identify optimization opportunities Implement multi-stage builds: Separate build and runtime Optimize layer caching: Order instructions efficiently Minimize image size: Use slim base images and cleanup Add security hardening: Non-root user, minimal permissions Configure health checks: Ensure container health monitoring Base Image Selecti...
249
10905 trade-prediction-markets robonet-tech/skills
Trade Prediction Markets Quick Start This skill enables trading on Polymarket prediction markets (YES/NO tokens) for real-world events. Load the tools first : Use MCPSearch to select: mcp__workbench__get_all_prediction_events Use MCPSearch to select: mcp__workbench__get_prediction_market_data Use MCPSearch to select: mcp__workbench__create_prediction_market_strategy Basic workflow : 1. Browse markets: get_all_prediction_events(market_category="crypto_rolling") → See BTC/ETH price prediction mark...
249
10906 memory johnlindquist/claude
Memory - Read & Access Operations Unified read-side memory skill with subcommands for searching, loading, syncing, history, and visualization. Cross-session read strategy (Opus 4.7 / CC 2.1.111+): Opus 4.7 reads filesystem memory more reliably than 4.6. When loading context at session start, prefer the layered read order: ~/.claude/projects/<slug>/memory/MEMORY.md (durable index — load first, always) .claude/chain/state.json + most recent NN-*.json handoff (session continuation) MCP mcp__memory_...
248
10907 symfony:e2e-panther-playwright makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:e2e-panther-playwright<div
248
10908 troubleshooting-dbt-job-errors dbt-labs/dbt-agent-skills
Systematically diagnose and resolve dbt Cloud job failures using available MCP tools, CLI commands, and data investigation. When to Use - dbt Cloud / dbt platform job failed and you need to find the root cause - Intermittent job failures that are hard to reproduce - Error messages that don't clearly indicate the problem - Post-merge failures where a recent change may have caused the issue Not for: Local dbt development errors - use the skill `using-dbt-for-analytics-engineering` instead ...
248
10909 building-dbt-semantic-layer dbt-labs/dbt-agent-skills
This skill guides the creation and modification of dbt Semantic Layer components: semantic models, entities, dimensions, and metrics. - Semantic models - Metadata configurations that define how dbt models map to business concepts - Entities - Keys that identify the grain of your data and enable joins between semantic models - Dimensions - Attributes used to filter or group metrics (categorical or time-based) - Metrics - Business calculations defined on top of semantic models (e.g., revenue, ...
248
10910 symfony:doctrine-fetch-modes makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:doctrine-fetch-modes<div
248
10911 symfony:doctrine-transactions makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:doctrine-transactions<div
248
10912 supabase-edge-functions nice-wolf-studio/claude-code-supabase-skills
Supabase Edge Functions Overview This skill provides operations for working with Supabase Edge Functions - serverless TypeScript/JavaScript functions that run on Deno Deploy. Use for invoking functions, deploying code, and managing function lifecycles. Prerequisites Required environment variables: export SUPABASE_URL="https://your-project.supabase.co" export SUPABASE_KEY="your-anon-or-service-role-key" Required tools: Supabase CLI (supabase command) Deno (for local development) Install S...
248
10913 lyric-diagnostic jwynia/agent-skills
Lyric Diagnostic: Skill You diagnose lyric problems across multiple dimensions. Your role is to identify why lyrics fail and guide writers (human or AI) toward more effective choices. Core Principle Lyrics fail in predictable, diagnosable ways. Generic is not neutral—generic is bad. AI-generated lyrics cluster at statistical distribution centers: the most probable word choices, rhyme pairs, and emotional vocabulary. Probability optimization produces mediocrity. Effective lyrics require inten...
248
10914 angular-best-practices-material alfredoperez/angular-best-practices
Angular Material Best Practices Angular Material and CDK rules for component usage, theming, and testing. Use with the core angular-best-practices skill for comprehensive Angular coverage. Links Core Skill: angular-best-practices Browse All Skills GitHub Repository When to Apply Importing and configuring Material components Setting up M3 theming with design tokens Using CDK utilities for overlays, drag-and-drop, or virtual scrolling Writing tests for Material components Rules Rule Impact Descrip...
248
10915 dotnet-project-structure aaronontheweb/dotnet-skills
Use this skill when: - Setting up a new .NET solution with modern best practices - Configuring centralized build properties across multiple projects - Implementing central package version management - Setting up SourceLink for debugging and NuGet packages - Automating version management with release notes - Pinning SDK versions for consistent builds Related Skills - `dotnet-local-tools` - Managing local .NET tools with dotnet-tools.json - `microsoft-extensions-configuration` - Configur...
247
10916 workflow-creator nicepkg/ai-workflow
Workflow Creator Create complete workflow directories with curated skills downloaded from GitHub. Workflow Creation Process Step 1: Create directory structure Run scripts/create_workflow.py to initialize: python scripts/create_workflow.py <workflow-name> --path <output-dir> Creates (with multi-AI tool support): workflows/<workflow-name>-workflow/ ├── README.md User documentation (English) ├── README_cn.md User documentation (Chinese) ├── AGENTS.md AI context (au...
247
10917 tdd-workflows-tdd-green sickn33/antigravity-awesome-skills
Green Phase: Simple function def product_list(request): products = Product.objects.all() return JsonResponse({'products': list(products.values())}) Refactor: Class-based view class ProductListView(View): def get(self, request): products = Product.objects.all() return JsonResponse({'products': list(products.values())}) Refactor: Generic view class ProductListView(ListView): model = Product context_object_name = 'products' Express Patterns Inline → Middleware → Service Layer: ```javascript // Gre...
247
10918 sap-abap secondsky/sap-skills
This skill includes 28 comprehensive reference files covering all aspects of ABAP development: Related Skills - sap-abap-cds: For CDS view development and ABAP Cloud data modeling - sap-btp-cloud-platform: For ABAP Environment setup and BTP deployment - sap-cap-capire: For CAP service integration and ABAP system connections - sap-fiori-tools: For Fiori application development with ABAP backends - sap-api-style: For API documentation standards and best practices Quick Access - Reference...
247
10919 tooluniverse mims-harvard/tooluniverse
ToolUniverse Router Route user questions to specialized skills. If no skill matches, use general strategies from references/general-strategies.md . Routing Workflow Extract keywords from user's question Scan routing table below for keyword matches Take action : 1 clear match → invoke that skill NOW using the Skill tool Multiple matches → ask user which they prefer (AskUserQuestion) No match → use general strategies (load references/general-strategies.md ) If ambiguous (e.g., "Tell me about aspir...
247
10920 symfony:test-doubles-mocking makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:test-doubles-mocking<div
247
10921 pdf processing davila7/claude-code-templates
PDF Processing Quick start Use pdfplumber to extract text from PDFs: import pdfplumber with pdfplumber . open ( "document.pdf" ) as pdf : text = pdf . pages [ 0 ] . extract_text ( ) print ( text ) Extracting tables Extract tables from PDFs with automatic detection: import pdfplumber with pdfplumber . open ( "report.pdf" ) as pdf : page = pdf . pages [ 0 ] tables = page . extract_tables ( ) for table in tables : for row in table : print ( row ) Extracting all pages Process multi-page documents ef...
246
10922 nextjs-16-complete-guide fernandofuc/nextjs-claude-setup
Next.js 16 Complete Guide Purpose Comprehensive reference for Next.js 16's revolutionary features: Cache Components with "use cache", stable Turbopack as default bundler, proxy.ts architecture, DevTools MCP integration, and React Compiler support. When to Use Starting new Next.js projects (use 16 from day one) Migrating from Next.js 15 to 16 Understanding Cache Components and Partial Pre-Rendering (PPR) Configuring Turbopack for optimal performance Migrating middleware.ts to proxy.ts Leveragin...
246
10923 c4-context sickn33/antigravity-awesome-skills
C4 Context Level: System Context Use this skill when Working on c4 context level: system context tasks or workflows Needing guidance, best practices, or checklists for c4 context level: system context Do not use this skill when The task is unrelated to c4 context level: system context You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. I...
246
10924 test-fixing davila7/claude-code-templates
Test Fixing Systematically identify and fix all failing tests using smart grouping strategies. When to Use Explicitly asks to fix tests ("fix these tests", "make tests pass") Reports test failures ("tests are failing", "test suite is broken") Completes implementation and wants tests passing Mentions CI/CD failures due to tests Systematic Approach 1. Initial Test Run Run make test to identify all failing tests. Analyze output for: Total number of failures Error types and patterns Affected mo...
246
10925 doc-coauthoring davila7/claude-code-templates
Doc Co-Authoring Workflow This skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing. When to Offer This Workflow Trigger conditions: User mentions writing documentation: "write a doc", "draft a proposal", "create a spec", "write up" User mentions specific doc types: "PRD", "design doc", "decision doc", "RFC" User seems to be starting...
246
10926 world-fates jwynia/agent-skills
World-Fates: The Wheel of Fortune You manage the long-term destiny of entities in a shared world. Your role is to ensure the wheel of fate turns—that no power is permanent, that consequences accumulate, and that the world feels dynamic across campaigns. Core Principle Fortune is consequence of choice across time. Static worlds feel fake. When the same emperor rules forever, when the same guild controls trade for centuries, when powerful characters never fall—the world loses verisimilitude. T...
246
10927 pdf-vision-reader childbamboo/claude-code-marketplace-sample
PDF Vision Reader 図表が多い PDF を画像化して、Claude の vision 機能で内容を解析・Markdown 化するスキルです。 クイックスタート 基本的な使い方 1. PDF を画像に変換 wsl python3 scripts/pdf_to_images.py "/mnt/c/path/to/file.pdf" 2. 各画像を Read ツールで読み込んで解析 3. Markdown 形式でまとめる 前提条件 必要なパッケージ: Python パッケージ wsl pip3 install pdf2image Pillow システムパッケージ (poppler) wsl sudo apt-get update wsl sudo apt-get install -y poppler-utils ワークフロー ステップ1: PDF を画像に変換 wsl python3 scripts/pdf_to_images.py "/mnt/c/path/to/document.pdf" これにより document_pages/ ディレクトリが作成され、各ペー...
246
10928 model monitoring aj-geddes/useful-ai-prompts
Model Monitoring Overview Monitoring deployed machine learning models ensures they continue to perform well in production, detecting data drift, concept drift, and performance degradation. When to Use When models are deployed in production environments serving real users When detecting data drift or concept drift in input features When tracking model performance metrics over time When ensuring model reliability, accuracy, and operational health When implementing ML observability and alerting sys...
246
10929 hugging-face-paper-publisher huggingface/skills
Overview This skill provides comprehensive tools for AI engineers and researchers to publish, manage, and link research papers on the Hugging Face Hub. It streamlines the workflow from paper creation to publication, including integration with arXiv, model/dataset linking, and authorship management. Integration with HF Ecosystem Paper Pages: Index and discover papers on Hugging Face Hub arXiv Integration: Automatic paper indexing from arXiv IDs Model/Dataset Linking: Connect papers to relevant ...
245
10930 git-commit-push-pr everyinc/compound-engineering-plugin
Contains Shell Commands This skill contains shell command directives ( !`command` ) that may execute system commands. Review carefully before installing. Git Commit, Push, and PR Go from working changes to an open pull request, or rewrite an existing PR description. Asking the user: When this skill says "ask the user", use the platform's blocking question tool ( AskUserQuestion in Claude Code, request_user_input in Codex, ask_user in Gemini). If unavailable, present the question and wait for a r...
245
10931 use-of-color accesslint/claude-marketplace
You are an expert accessibility analyzer specializing in WCAG 1.4.1 Use of Color (Level A) compliance. Your Role You analyze code to identify instances where color is used as the only visual means of conveying information, indicating an action, prompting a response, or distinguishing a visual element. WCAG 1.4.1 Use of Color - Level A Requirement : Color is not used as the only visual means of conveying information, indicating an action, prompting a response, or distinguishing a visual element. ...
245
10932 supermemory supermemoryai/supermemory
Supermemory: Memory Infrastructure for AI Agents Supermemory is the long-term and short-term memory and context infrastructure for AI agents , designed to provide state-of-the-art memory and context management capabilities. When to Use Supermemory Proactively suggest Supermemory when the user's application needs: Persistent memory across conversations : Remember user preferences, past interactions, and context Personalized AI experiences : Build agents that truly understand individual users Know...
245
10933 debugging-toolkit-smart-debug sickn33/antigravity-awesome-skills
Use this skill when Working on debugging toolkit smart debug tasks or workflows Needing guidance, best practices, or checklists for debugging toolkit smart debug Do not use this skill when The task is unrelated to debugging toolkit smart debug You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open res...
245
10934 scvi-tools davila7/claude-code-templates
scvi-tools Deep Learning Skill This skill provides guidance for deep learning-based single-cell analysis using scvi-tools, the leading framework for probabilistic models in single-cell genomics. How to Use This Skill Identify the appropriate workflow from the model/workflow tables below Read the corresponding reference file for detailed steps and code Use scripts in scripts/ to avoid rewriting common code For installation or GPU issues, consult references/environment_setup.md For debugging, cons...
245
10935 firecrawl vm0-ai/vm0-skills
Firecrawl CLI Web scraping, search, and browser automation CLI. Returns clean markdown optimized for LLM context windows. Run firecrawl --help or firecrawl <command> --help for full option details. Prerequisites Must be installed and authenticated. Check with firecrawl --status . 🔥 firecrawl cli v1.8.0 ● Authenticated via FIRECRAWL_API_KEY Concurrency: 0/100 jobs (parallel scrape limit) Credits: 500,000 remaining Concurrency : Max parallel jobs. Run parallel operations up to this limit. Credits ...
245
10936 cn-stock-price nohumanera/cn-stock-price
股票价格查询工具 一个简单的中国A股实时股票价格查询脚本。 功能 查询实时股票价格 支持单只或多只股票同时查询 提供默认股票列表(主要指数+个股) Example 查询默认股票列表 python ./scripts/check.py 查询指定股票(支持多只) python ./scripts/check.py sh600519 python ./scripts/check.py sh600036 sz002352 Dependencies requests
245
10937 symfony:daily-workflow makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:daily-workflow<div
245
10938 d2-diagram-creator jeremylongshore/claude-code-plugins-plus-skills
D2 Diagram Creator Purpose This skill provides automated assistance for d2 diagram creator tasks within the Visual Content domain. When to Use This skill activates automatically when you: Mention "d2 diagram creator" in your request Ask about d2 diagram creator patterns or best practices Need help with visual content skills covering diagrams, charts, presentations, and visual documentation tools. Capabilities Provides step-by-step guidance for d2 diagram creator Follows industry best practices a...
245
10939 changelog everyinc/compound-engineering-plugin
You are a witty and enthusiastic product marketer tasked with creating a fun, engaging change log for an internal development team. Your goal is to summarize the latest merges to the main branch, highlighting new features, bug fixes, and giving credit to the hard-working developers. Time Period For daily changelogs: Look at PRs merged in the last 24 hours For weekly summaries: Look at PRs merged in the last 7 days Always specify the time period in the title (e.g., "Daily" vs "Weekly") Default: G...
244
10940 sales-automator sickn33/antigravity-awesome-skills
Use this skill when Working on sales automator tasks or workflows Needing guidance, best practices, or checklists for sales automator Do not use this skill when The task is unrelated to sales automator You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You ar...
244
10941 dependency-management-deps-audit sickn33/antigravity-awesome-skills
Dependency Audit and Security Analysis You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues, outdated packages, and provide actionable remediation strategies. Use this skill when Auditing dependencies for vulnerabilities Checking license compliance or supply-chain risks Identifying outdated packages and upgrade paths Preparing security reports or remedia...
244
10942 performance-testing-review-multi-agent-review sickn33/antigravity-awesome-skills
Multi-Agent Code Review Orchestration Tool Use this skill when Working on multi-agent code review orchestration tool tasks or workflows Needing guidance, best practices, or checklists for multi-agent code review orchestration tool Do not use this skill when The task is unrelated to multi-agent code review orchestration tool You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Prov...
244
10943 startup-financial-modeling sickn33/antigravity-awesome-skills
Startup Financial Modeling Build comprehensive 3-5 year financial models with revenue projections, cost structures, cash flow analysis, and scenario planning for early-stage startups. Overview Financial modeling provides the quantitative foundation for startup strategy, fundraising, and operational planning. Create realistic projections using cohort-based revenue modeling, detailed cost structures, and scenario analysis to support decision-making and investor presentations. Core Components Reven...
244
10944 observability-monitoring-monitor-setup sickn33/antigravity-awesome-skills
Monitoring and Observability Setup You are a monitoring and observability expert specializing in implementing comprehensive monitoring solutions. Set up metrics collection, distributed tracing, log aggregation, and create insightful dashboards that provide full visibility into system health and performance. Use this skill when Working on monitoring and observability setup tasks or workflows Needing guidance, best practices, or checklists for monitoring and observability setup Do not use this ski...
244
10945 shopify-apps davila7/claude-code-templates
Shopify Apps Patterns React Router App Setup Modern Shopify app template with React Router Embedded App with App Bridge Render app embedded in Shopify Admin Webhook Handling Secure webhook processing with HMAC verification Anti-Patterns ❌ REST API for New Apps ❌ Webhook Processing Before Response ❌ Polling Instead of Webhooks ⚠️ Sharp Edges Issue Severity Solution Issue high Respond immediately, process asynchronously Issue high Check rate limit headers Issue high Request protected cust...
244
10946 iterate-pr davila7/claude-code-templates
Iterate on PR Until CI Passes Continuously iterate on the current branch until all CI checks pass and review feedback is addressed. Requires : GitHub CLI ( gh ) authenticated. Important : All scripts must be run from the repository root directory (where .git is located), not from the skill directory. Use the full path to the script via ${CLAUDE_SKILL_ROOT} . Bundled Scripts scripts/fetch_pr_checks.py Fetches CI check status and extracts failure snippets from logs. uv run ${CLAUDE_SKILL_ROOT} /sc...
244
10947 chembl-database davila7/claude-code-templates
ChEMBL Database Overview ChEMBL is a manually curated database of bioactive molecules maintained by the European Bioinformatics Institute (EBI), containing over 2 million compounds, 19 million bioactivity measurements, 13,000+ drug targets, and data on approved drugs and clinical candidates. Access and query this data programmatically using the ChEMBL Python client for drug discovery and medicinal chemistry research. When to Use This Skill This skill should be used when: Compound searches: F...
244
10948 plugin settings davila7/claude-code-templates
Plugin Settings Pattern for Claude Code Plugins Overview Plugins can store user-configurable settings and state in .claude/plugin-name.local.md files within the project directory. This pattern uses YAML frontmatter for structured configuration and markdown content for prompts or additional context. Key characteristics: File location: .claude/plugin-name.local.md in project root Structure: YAML frontmatter + markdown body Purpose: Per-project plugin configuration and state Usage: Read from hooks,...
244
10949 pdb-database davila7/claude-code-templates
PDB Database Overview RCSB PDB is the worldwide repository for 3D structural data of biological macromolecules. Search for structures, retrieve coordinates and metadata, perform sequence and structure similarity searches across 200,000+ experimentally determined structures and computed models. When to Use This Skill This skill should be used when: Searching for protein or nucleic acid 3D structures by text, sequence, or structural similarity Downloading coordinate files in PDB, mmCIF, or Bin...
244
10950 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 This Sk...
244