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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
6451 documentation-writing rysweet/amplihack
Documentation Writing Skill Purpose Creates high-quality, discoverable documentation following the Eight Rules and Diataxis framework. Ensures all docs are properly located, linked, and contain real runnable examples. When I Activate I load automatically when you mention: "write documentation" or "create docs" "document this feature/module/API" "create a README" or "write a tutorial" "explain how this works" Any request to create markdown documentation Core Rules (MANDATORY) The Eight Rules Loca...
134
6452 uv-package-manager sickn33/antigravity-awesome-skills
UV Package Manager Comprehensive guide to using uv, an extremely fast Python package installer and resolver written in Rust, for modern Python project management and dependency workflows. Use this skill when Setting up new Python projects quickly Managing Python dependencies faster than pip Creating and managing virtual environments Installing Python interpreters Resolving dependency conflicts efficiently Migrating from pip/pip-tools/poetry Speeding up CI/CD pipelines Managing monorepo Python pr...
134
6453 instagram-automation sickn33/antigravity-awesome-skills
Instagram Automation via Rube MCP Automate Instagram operations through Composio's Instagram toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Instagram connection via RUBE_MANAGE_CONNECTIONS with toolkit instagram Always call RUBE_SEARCH_TOOLS first to get current tool schemas Instagram Business or Creator account required (personal accounts not supported) Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuratio...
134
6454 execution-accelerator shipshitdev/library
Execution Accelerator - Velocity Framework Overview You are an execution accelerator specializing in Alex Hormozi's speed and action principles. You help indie founders kill analysis paralysis, make fast decisions, and ship imperfect things quickly. Your job is to force action—not enable more thinking—by cutting through indecision and creating immediate next steps. Hormozi's Core Principle: "Speed is the only competitive advantage that matters early on. Volume beats strategy. Build the airplan...
134
6455 hyva-cms-component hyva-themes/hyva-ai-tools
Hyvä CMS Component Creator Overview This skill guides the interactive creation of custom Hyvä CMS components for Magento 2. It supports creating components in new or existing modules, with field presets for common patterns and automatic setup:upgrade execution. Command execution: For commands that need to run inside the development environment (e.g., bin/magento), use the hyva-exec-shell-cmd skill to detect the environment and determine the appropriate command wrapper. Workflow Step 1: Module...
134
6456 architecture-review srstomp/pokayokay
Architecture Review Analyze, audit, and improve project structure. Key Principles Measure before changing — Map structure and identify concrete issues before proposing changes Clear boundaries — Layers (UI, logic, data) separated with consistent dependency direction Colocation — Related code together; easy to find, change, and delete features Incremental migration — Refactor in phases, validate each step with tests Quick Assessment No circular dependencies Consistent directory naming and groupin...
134
6457 cloud-cost-management aj-geddes/useful-ai-prompts
Cloud Cost Management Overview Cloud cost management involves monitoring, analyzing, and optimizing cloud spending. Implement strategies using reserved instances, spot pricing, proper sizing, and cost allocation to maximize ROI and prevent budget overruns. When to Use Reducing cloud infrastructure costs Optimizing compute spending Managing database costs Storage optimization Data transfer cost reduction Reserved capacity planning Chargeback and cost allocation Budget forecasting and alerts Imp...
134
6458 code-review:review-pr neolabhq/context-engineering-kit
Pull Request Review Instructions You are an expert code reviewer conducting a thorough evaluation of this pull request. Your review must be structured, systematic, and provide actionable feedback. Review Aspects (optional): "$ARGUMENTS" IMPORTANT : Skip reviewing changes in spec/ and reports/ folders unless specifically asked. CRITICAL : You must post inline comments only! Do not post overral review report or reply overral review report under any circumstances! You must avoid creating to much no...
134
6459 sadd:subagent-driven-development neolabhq/context-engineering-kit
Subagent-Driven Development Create and execute plan by dispatching fresh subagent per task or issue, with code and output review after each or batch of tasks. Core principle: Fresh subagent per task + review between or after tasks = high quality, fast iteration. Executing Plans through agents: Same session (no context switch) Fresh subagent per task (no context pollution) Code review after each or batch of task (catch issues early) Faster iteration (no human-in-loop between tasks) Supported type...
134
6460 gpui-entity longbridge/gpui-component
Overview An Entity<T> is a handle to state of type T, providing safe access and updates. Key Methods: entity.read(cx) → &T - Read-only access entity.read_with(cx, |state, cx| ...) → R - Read with closure entity.update(cx, |state, cx| ...) → R - Mutable update entity.downgrade() → WeakEntity<T> - Create weak reference entity.entity_id() → EntityId - Unique identifier Entity Types: Entity<T>: Strong reference (increases ref count) WeakEntity<T>: Weak reference (doesn't prevent cleanup, return...
134
6461 patent-architect fradser/dotclaude
You are Patent Architect, a senior patent engineer specializing in AI systems, XR devices, and software-hardware co-design. Execute these phases sequentially to transform technical ideas into complete Chinese patent application forms (专利申请表). Phase 1: Understand the Invention Goal: Extract core technical elements from the user's invention description. Actions: - Domain Analysis: Identify the technical field (技术领域) - Problem Identification: Define what technical problem is being solved (技术问...
134
6462 internal-comms davila7/claude-code-templates
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
134
6463 educational-video-creator skindhu/skind-skills
Educational Video Creator Create professional educational videos with Kurzgesagt/回形针 visual style using Remotion. Prerequisites This skill requires remotion-best-practices for Remotion technical implementation. Check and install (MUST complete before Phase 1): Check if already installed, install if not npx skills list 2 > /dev/null | grep remotion-best-practices || npx skills add https://github.com/remotion-dev/skills --skill remotion-best-practices Once installed, read the remotion-best-practi...
134
6464 sentry-nestjs-sdk getsentry/sentry-for-ai
All Skills > SDK Setup > NestJS SDK Sentry NestJS SDK Opinionated wizard that scans your NestJS project and guides you through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to NestJS" or "setup Sentry" in a NestJS app User wants error monitoring, tracing, profiling, logging, metrics, or crons in NestJS User mentions @sentry/nestjs or Sentry + NestJS User wants to monitor NestJS controllers, services, guards, microservices, or background jobs Note: SDK versions and APIs b...
133
6465 typescript dalestudy/skills
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
133
6466 license-keys dodopayments/skills
Reference: [docs.dodopayments.com/features/license-keys](https://docs.dodopayments.com/features/license-keys) License keys authorize access to your digital products. Use them for software licensing, per-seat controls, and gating premium features. Overview License keys are unique tokens that: - Authorize access to software, plugins, CLIs - Limit activations per user or device - Gate downloads, updates, or premium features - Can be linked to subscriptions or one-time purchases Creating L...
133
6467 pinia uni-helper/skills
Pinia Pinia is the official state management library for Vue, designed to be intuitive and type-safe. It supports both Options API and Composition API styles, with first-class TypeScript support and devtools integration. The skill is based on Pinia v3.0.4, generated at 2026-01-28. Core References Topic Description Reference Stores Defining stores, state, getters, actions, storeToRefs, subscriptions core-stores Features Extensibility Topic Description Reference Plugins Extend stores with custom p...
133
6468 session-management aj-geddes/useful-ai-prompts
Session Management Overview Implement comprehensive session management systems with secure token handling, session persistence, token refresh mechanisms, proper logout procedures, and CSRF protection across different backend frameworks. When to Use Implementing user authentication systems Managing session state and user context Handling JWT token refresh cycles Implementing logout functionality Protecting against CSRF attacks Managing session expiration and cleanup Instructions 1. JWT Token Ge...
133
6469 feature-spec pproenca/dot-skills
Feature Spec Skill You are an expert at writing product requirements documents (PRDs) and feature specifications. You help product managers define what to build, why, and how to measure success. PRD Structure A well-structured PRD follows this template: 1. Problem Statement Describe the user problem in 2-3 sentences Who experiences this problem and how often What is the cost of not solving it (user pain, business impact, competitive risk) Ground this in evidence: user research, support data, met...
133
6470 auto-douyin zrt-ai-lab/opencode-skills
抖音视频自动发布技能 这个技能用于自动化发布视频到抖音创作者中心。 使用场景 用户需要发布视频到抖音时 用户说"发抖音"、"上传抖音"、"发布到抖音"时 用户有视频文件需要分发到抖音平台时 技术原理 基于 Playwright 浏览器自动化,模拟真实用户操作抖音创作者中心( https://creator.douyin.com): 首次使用需扫码登录,保存 Cookie 后续使用 Cookie 自动登录 自动化填充标题、话题、封面等信息 支持定时发布 前置条件 1. 安装依赖 pip install playwright playwright install chromium 2. 首次登录获取 Cookie python .opencode/skills/auto-douyin/scripts/get_cookie.py 执行后会打开浏览器,使用抖音 APP 扫码登录,登录成功后 Cookie 会自动保存。 工作流程 第一步:确认登录状态 检查 Cookie 是否存在且有效: python .opencode/skills/auto-douyin/scripts/check_cook...
133
6471 browser cexll/myclaude
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...
133
6472 setup everyinc/compound-engineering-plugin
assistant-ui Setup CLI Commands Quick Decision Flow Existing Next.js app ( package.json exists): use npx assistant-ui@latest init Existing app in CI/agent/non-interactive shell: use npx assistant-ui@latest init --yes Existing app + force overwrite of conflicts: add --overwrite New app / empty directory: use npx assistant-ui@latest create <name> Need specific starter template: add -t <default|minimal|cloud|cloud-clerk|langgraph|mcp> Need a curated example: use npx assistant-ui@latest create <name...
133
6473 code-metrics-analysis aj-geddes/useful-ai-prompts
Code Metrics Analysis Overview Measure and analyze code quality metrics to identify complexity, maintainability issues, and areas for improvement. When to Use Code quality assessment Identifying refactoring candidates Technical debt monitoring Code review automation CI/CD quality gates Team performance tracking Legacy code analysis Key Metrics Metric Description Good Range Cyclomatic Complexity Number of linearly independent paths 1-10 Cognitive Complexity Measure of code understandability <15...
133
6474 django-application aj-geddes/useful-ai-prompts
Django Application Overview Build comprehensive Django web applications with proper model design, view hierarchies, database operations, user authentication, and admin functionality following Django conventions and best practices. When to Use Creating Django web applications Designing models and database schemas Implementing views and URL routing Building authentication systems Using Django ORM for database operations Creating admin interfaces and dashboards Instructions 1. Django Project Setu...
133
6475 database-performance aaronontheweb/dotnet-skills
Use this skill when: - Designing data access layers - Optimizing slow database queries - Choosing between EF Core and Dapper - Avoiding common performance pitfalls Core Principles - Separate read and write models - Don't use the same types for both - Think in batches - Avoid N+1 queries - Only retrieve what you need - No SELECT * - Apply row limits - Always have a configurable Take/Limit - Do joins in SQL - Never in application code - AsNoTracking for reads - EF Core change tracking ...
133
6476 axiom-uikit-animation-debugging charleswiltgen/axiom
UIKit Animation Debugging Overview CAAnimation issues manifest as missing completion handlers, wrong timing, or jank under specific conditions. Core principle 90% of CAAnimation problems are CATransaction timing, layer state, or frame rate assumptions, not Core Animation bugs. Red Flags — Suspect CAAnimation Issue If you see ANY of these, suspect animation logic not device behavior: Completion handler fires on simulator but not device Animation duration (0.5s) doesn't match visual duration (...
133
6477 error-tracking aj-geddes/useful-ai-prompts
Error Tracking Overview Set up comprehensive error tracking with Sentry to automatically capture, report, and analyze exceptions, performance issues, and application stability. When to Use Production error monitoring Automatic exception capture Release tracking Performance issue detection User impact analysis Instructions 1. Sentry Setup npm install -g @sentry/cli npm install @sentry/node @sentry/tracing sentry init -d 2. Node.js Sentry Integration // sentry.js const Sentry = require("@sentry...
133
6478 phoenix-cli arize-ai/phoenix
Phoenix CLI Debug and analyze LLM applications using the Phoenix CLI (px). Quick Start Installation npm install -g @arizeai/phoenix-cli Or run directly with npx npx @arizeai/phoenix-cli Configuration Set environment variables before running commands: export PHOENIX_HOST=http://localhost:6006 export PHOENIX_PROJECT=my-project export PHOENIX_API_KEY=your-api-key if authentication is enabled CLI flags override environment variables when specified. Debugging Workflows Debug a failing LLM ...
133
6479 ux-writing anthropics/knowledge-work-plugins
UX Writing Write clear, concise, user-centered interface copy (UX text/microcopy) for digital products and experiences. This skill provides frameworks, patterns, and best practices for creating text that helps users accomplish their goals. Compatible with: Claude Desktop, Claude Code, and Codex (CLI and IDE extensions) Note: This skill works with Codex CLI/IDE, not ChatGPT. ChatGPT cannot install or use skills. When to Use This Skill Use this skill when: Writing interface copy (buttons, la...
133
6480 latchbio-integration davila7/claude-code-templates
LatchBio Integration Overview Latch is a Python framework for building and deploying bioinformatics workflows as serverless pipelines. Built on Flyte, create workflows with @workflow/@task decorators, manage cloud data with LatchFile/LatchDir, configure resources, and integrate Nextflow/Snakemake pipelines. Core Capabilities The Latch platform provides four main areas of functionality: 1. Workflow Creation and Deployment Define serverless workflows using Python decorators Support for native ...
133
6481 faceswap heygen-com/skills
Face Swap (HeyGen API) Swap a face from a source image into a target video using GPU-accelerated AI processing. The source image provides the face to swap in, and the target video receives the new face. Authentication All requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable. curl -X POST "https://api.heygen.com/v1/workflows/executions" \ -H "X-Api-Key: $HEYGEN_API_KEY " \ -H "Content-Type: application/json" \ -d '{"workflow_type": "FaceswapNode", "input": {"source_i...
133
6482 opentargets-database davila7/claude-code-templates
Open Targets Database Overview The Open Targets Platform is a comprehensive resource for systematic identification and prioritization of potential therapeutic drug targets. It integrates publicly available datasets including human genetics, omics, literature, and chemical data to build and score target-disease associations. Key capabilities: Query target (gene) annotations including tractability, safety, expression Search for disease-target associations with evidence scores Retrieve evidence ...
133
6483 bug-fix bobmatnyc/claude-mpm-skills
Bug Fix Verification Systematic workflow for verifying bug fixes to ensure quality and prevent regressions. When to Use This Skill Use this skill when: Fixing a reported bug Creating PR for bug fix Need to document bug fix verification Want to ensure fix doesn't introduce regressions Need structured approach to bug resolution Why Bug Fix Verification Matters Problems It Solves ❌ Fixing symptoms instead of root cause ❌ Introducing new bugs while fixing old ones ❌ Incomplete testing of edge ca...
133
6484 matchms davila7/claude-code-templates
Matchms Overview Matchms is an open-source Python library for mass spectrometry data processing and analysis. Import spectra from various formats, standardize metadata, filter peaks, calculate spectral similarities, and build reproducible analytical workflows. Core Capabilities 1. Importing and Exporting Mass Spectrometry Data Load spectra from multiple file formats and export processed data: from matchms.importing import load_from_mgf, load_from_mzml, load_from_msp, load_from_json from matc...
133
6485 nansen-profiler nansen-ai/nansen-cli
Wallet Profiler All commands: nansen research profiler <sub> [options] --address and --chain required for most commands. Balance & Identity nansen research profiler balance --address < addr > --chain ethereum nansen research profiler labels --address < addr > --chain ethereum nansen research profiler search --query "Vitalik" PnL nansen research profiler pnl --address < addr > --chain ethereum --days 30 nansen research profiler pnl-summary --address < addr > --chain ethereum Transactions & Histor...
133
6486 gadget-best-practices gadget-inc/skills
Read individual rule files for detailed explanations and code examples: Core Data Modeling - [references/models.md](https://github.com/gadget-inc/skills/blob/main/skills/gadget/gadget-best-practices/references/models.md) - Data model design patterns and naming conventions - [references/fields.md](https://github.com/gadget-inc/skills/blob/main/skills/gadget/gadget-best-practices/references/fields.md) - Field types, validations, and configuration - [references/relationships.md](https://github...
133
6487 business-document-generator ailabs-393/ai-labs-claude-skills
Business Document Generator Overview Generate professional business documents (Project Proposals, Business Plans, Annual Budgets) from high-quality PDF templates. Use the bundled Python script to fill templates with user-provided data and output polished PDF documents ready for distribution. When to Use This Skill Activate this skill when the user asks to: Create a business proposal or project proposal Generate a business plan document Develop an annual budget plan Create any professional bu...
133
6488 denario davila7/claude-code-templates
Denario Overview Denario is a multiagent AI system designed to automate scientific research workflows from initial data analysis through publication-ready manuscripts. Built on AG2 and LangGraph frameworks, it orchestrates multiple specialized agents to handle hypothesis generation, methodology development, computational analysis, and paper writing. When to Use This Skill Use this skill when: Analyzing datasets to generate novel research hypotheses Developing structured research methodologie...
133
6489 fal-upscale fal-ai-community/skills
fal.ai Upscale Upscale and enhance image resolution using state-of-the-art AI models. How It Works User provides image URL and optional scale factor Script selects appropriate upscaling model Sends request to fal.ai API Returns upscaled image URL Finding Models To discover the best and latest upscaling models, use the search API: Search for image upscale models bash /mnt/skills/user/fal-generate/scripts/search-models.sh --query "upscale image" Search for video upscale models bash /mnt/skills/u...
133
6490 xlsx-official sickn33/antigravity-awesome-skills
Requirements for Outputs All Excel files 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 established patterns Existing template conventions ALWAYS override these guidelines Financial models Color Coding Standards Unless otherwise stated by th...
133
6491 axiom-foundation-models charleswiltgen/axiom
Foundation Models — On-Device AI for Apple Platforms When to Use This Skill Use when: Implementing on-device AI features with Foundation Models Adding text summarization, classification, or extraction capabilities Creating structured output from LLM responses Building tool-calling patterns for external data integration Streaming generated content for better UX Debugging Foundation Models issues (context overflow, slow generation, wrong output) Deciding between Foundation Models vs server LLMs ...
133
6492 android-viewmodel new-silvermoon/awesome-android-agent-skills
No SKILL.md available for this skill. View on GitHub
133
6493 hyva-create-module hyva-themes/hyva-ai-tools
Create Magento 2 Module This utility skill creates new Magento 2 modules in app/code/. It is designed to be called by other skills that need module scaffolding. Command execution: For commands that need to run inside the development environment (e.g., bin/magento), use the hyva-exec-shell-cmd skill to detect the environment and determine the appropriate command wrapper. Parameters When invoking this skill, the calling skill should provide: Parameter Required Description vendor Yes Vendor na...
133
6494 upstash-vector-db-skills gocallum/nextjs16-agent-skills
Links Docs: https://upstash.com/docs/vector Getting Started: https://upstash.com/docs/vector/overall/getstarted Semantic Search Tutorial: https://upstash.com/docs/vector/tutorials/semantic_search Namespaces: https://upstash.com/docs/vector/features/namespaces Embedding Models: https://upstash.com/docs/vector/features/embeddingmodels MixBread AI: https://www.mixbread.ai/ (preferred embedding provider) Quick Setup 1. Create Vector Index (Upstash Console) Go to Upstash Console Create Vector Index: ...
133
6495 temporal-python-pro sickn33/antigravity-awesome-skills
Use this skill when Working on temporal python pro tasks or workflows Needing guidance, best practices, or checklists for temporal python pro Do not use this skill when The task is unrelated to temporal python pro 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...
133
6496 domain-driven-design wondelai/skills
Domain-Driven Design Framework Framework for tackling software complexity by modeling code around the business domain. Based on a fundamental truth: the greatest risk in software is not technical failure -- it is building a model that does not reflect how the business actually works. Core Principle The model is the code; the code is the model. Software should embody a deep, shared understanding of the business domain. When domain experts and developers speak the same language and that language i...
133
6497 token-optimizer asif2bd/openclaw-token-optimizer
Token Optimizer Skill This skill provides the procedural knowledge to keep your OpenClaw instance lean and efficient. Quick Reference Problem Solution Background tasks bloating context Cron isolation ( sessionTarget: "isolated" ) Reading entire history every turn Local RAG with memory_search Context exceeds 100k tokens Reset & Summarize protocol Finding old conversations Session transcript indexing Workflow 1: Periodic Task Isolation To prevent background tasks from bloating your main conversati...
133
6498 notion-template-business davila7/claude-code-templates
Notion Template Business Role: Template Business Architect You know templates are real businesses that can generate serious income. You've seen creators make six figures selling Notion templates. You understand it's not about the template - it's about the problem it solves. You build systems that turn templates into scalable digital products. Capabilities Notion template design Template pricing strategies Gumroad/Lemon Squeezy setup Template marketing Notion marketplace strategy Template supp...
133
6499 claude-to-deerflow bytedance/deer-flow
DeerFlow Skill Communicate with a running DeerFlow instance via its HTTP API. DeerFlow is an AI agent platform built on LangGraph that orchestrates sub-agents for research, code execution, web browsing, and more. Architecture DeerFlow exposes two API surfaces behind an Nginx reverse proxy: Service Direct Port Via Proxy Purpose Gateway API 8001 $DEERFLOW_GATEWAY_URL REST endpoints (models, skills, memory, uploads) LangGraph API 2024 $DEERFLOW_LANGGRAPH_URL Agent threads, runs, streaming Environme...
133
6500 docs:update-docs neolabhq/context-engineering-kit
Update Documentation for Local Changes User Arguments User can provide specific focus areas or documentation types: $ARGUMENTS If nothing is provided, focus on all documentation needs for uncommitted changes. If everything is committed, cover the latest commit. Context After implementing new features or refactoring existing code, documentation must be updated to reflect changes. This command orchestrates automated documentation updates using specialized tech-writer agents and parallel analysis. ...
133