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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,474
总 Skills
91.3M
总安装量
2,583
贡献者
# Skill 仓库 描述 安装量
5501 video-motion-graphics dylantarre/animation-principles
Video Motion Graphics Apply Disney's 12 animation principles to After Effects, Premiere Pro, and video motion design. Quick Reference Principle Motion Graphics Implementation Squash & Stretch Overshoot expressions, elastic motion Anticipation Pre-movement, wind-up keyframes Staging Composition, depth, focus pulls Straight Ahead / Pose to Pose Frame-by-frame vs keyframe animation Follow Through / Overlapping Delayed layers, expression lag Slow In / Slow Out Graph editor curves, easing Arc Motio...
1K
5502 m02-resource actionbook/rust-skills
Resource Management Layer 1: Language Mechanics Core Question What ownership pattern does this resource need? Before choosing a smart pointer, understand: Is ownership single or shared? Is access single-threaded or multi-threaded? Are there potential cycles? Error → Design Question Show more
1K
5503 ads-google agricidaniel/claude-ads
Google Ads Deep Analysis Process Collect Google Ads account data (export, Change History, Search Terms Report) Read ads/references/google-audit.md for full 74-check audit Read ads/references/benchmarks.md for Google-specific benchmarks Read ads/references/scoring-system.md for weighted scoring Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate Google Ads Health Score (0-100) Generate findings report with action plan What to Analyze Conversion Tracking (25% weight) Google tag (gta...
1K
5504 alloy grafana/skills
Grafana Alloy Docs : https://grafana.com/docs/alloy/latest/ Alloy is an open-source OpenTelemetry collector distribution that unifies telemetry collection (metrics, logs, traces, profiles) in a single binary supporting Prometheus and OTel standards. Installation macOS brew install grafana/grafana/alloy Linux (Debian/Ubuntu) sudo apt install alloy Docker docker run -v $( pwd ) /config.alloy:/etc/alloy/config.alloy \ grafana/alloy:latest run /etc/alloy/config.alloy Show more
1K
5505 m01-ownership actionbook/rust-skills
Ownership & Lifetimes Layer 1: Language Mechanics Core Question Who should own this data, and for how long? Before fixing ownership errors, understand the data's role: Is it shared or exclusive? Is it short-lived or long-lived? Is it transformed or just read? Error → Design Question Show more
1K
5506 vip-test-plan api/git
1K
5507 vip-test-executor api/git
1K
5508 graphify howell5/willhong-skills
graphify — Code Navigation Layer Structural index of the codebase. Know what exists, where, and how it connects — before you grep. Requires CLI: npm i -g graphify-ts (uses Bun runtime). Manual updates only. The graph does not refresh on its own — you (or the user) run graphify update or graphify build when you want a fresh index. This avoids write conflicts in git worktrees and other multi-session setups. First-time setup (one-time per machine) npm i -g graphify-ts install CLI Then, once per pr...
1K
5509 design-review nexu-io/open-design
This skill runs a structured design review of what has been built, measured against the design brief and the chosen aesthetic philosophy. CRITICAL — Visual Screenshot Capture You MUST capture screenshots of the running application as part of every design review. Code review alone is insufficient — you need to see what the user sees. Follow the screenshot capture protocol in Step 3 below. This is not optional. Example prompts "Review what I just built" "Run a design critique on the landing page" ...
1K
5510 design-md nexu-io/open-design
Stitch DESIGN.md Skill You are an expert Design Systems Lead. Your goal is to analyze the provided technical assets and synthesize a "Semantic Design System" into a file named DESIGN.md . Overview This skill helps you create DESIGN.md files that serve as the "source of truth" for prompting Stitch to generate new screens that align perfectly with existing design language. Stitch interprets design through "Visual Descriptions" supported by specific color values. Prerequisites Access to the Stitch ...
1K
5511 pdf nexu-io/open-design
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
1K
5512 fusion-mcp equinor/fusion-skills
Fusion MCP Setup Guide When to use Use this skill when a user asks: what Fusion MCP is what it can do how to install/configure it how to verify that it is working how to troubleshoot a failing Fusion MCP setup Typical triggers: "what is fusion mcp" "help me set up fusion mcp" "how do I use fusion mcp with copilot" When not to use Do not use this skill for: implementing product features unrelated to MCP setup making destructive environment changes without user confirmation assuming private reposi...
1K
5513 fusion-skill-authoring equinor/fusion-skills
Create or Modernize Skills When to use Use this skill when you need to create a new skill under skills/ , or when an existing skill needs a material authoring refresh instead of a small copy edit. Typical triggers: "Create a skill for ..." "Scaffold skills/<name>/SKILL.md " "Turn this workflow into a reusable skill" "Improve this skill's metadata and activation cues" "Make this skill easier for agents to discover and follow" "Set up references/assets/helper agents for a skill" Implicit triggers:...
1K
5514 mies deeflect/mies
Mies A design taste skill for ruthless reduction and exacting craft. Ask "why is this here?" of every element. If it cannot answer, remove it. If it survives, make it immaculate — proportion, spacing, alignment, type, hierarchy, state, motion, copy, and material tuned until they feel inevitable. The result should feel calm, confident, expensive, and human. Restraint is not emptiness: warmth comes from intentional use, humane copy, thoughtful defaults, resilient states, and details that prove som...
1K
5515 m05-type-driven actionbook/rust-skills
Type-Driven Design Layer 1: Language Mechanics Core Question How can the type system prevent invalid states? Before reaching for runtime checks: Can the compiler catch this error? Can invalid states be unrepresentable? Can the type encode the invariant? Error → Design Question Show more
1K
5516 analyzing-data astronomer/agents
Data Analysis Answer business questions by querying the data warehouse. The kernel starts automatically on first use. Prerequisites uv must be installed: curl -LsSf https://astral.sh/uv/install.sh | sh Scripts are located relative to this skill file. MANDATORY FIRST STEP Before any other action, check for cached patterns: uv run scripts/cli.py pattern lookup "<user's question>" This is NON-NEGOTIABLE. Patterns contain proven strategies that save time and avoid failed queries. Workflo...
1K
5517 setting-up-ec2-instance-profiles aws/agent-toolkit-for-aws
Setting Up EC2 Instance Profiles Overview Domain expertise for granting EC2 instances secure access to AWS services using IAM roles and instance profiles. Covers the full lifecycle: identifying required permissions, creating or reusing IAM roles with least-privilege policies, creating instance profiles, attaching them to EC2 instances, and verifying credential availability. Configure an EC2 instance profile To set up an IAM role and instance profile for an EC2 instance, follow the procedure exac...
1K
5518 test-driven-development sickn33/antigravity-awesome-skills
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
1K
5519 version-release lobehub/lobehub
Version Release Workflow Overview The primary development branch is canary . All day-to-day development happens on canary. When releasing, canary is merged into main. After merge, auto-tag-release.yml automatically handles tagging, version bumping, creating a GitHub Release, and syncing back to the canary branch. Only two release types are used in practice (major releases are extremely rare and can be ignored): Type Use Case Frequency Source Branch PR Title Format Version Minor Feature iteration...
1K
5520 wordpress-setup jezweb/claude-skills
WordPress Setup Connect to a WordPress site and verify working access via WP-CLI or REST API. Produces a verified connection config ready for content management and Elementor editing. Workflow Step 1: Check WP-CLI wp --version If not installed, guide the user: macOS/Linux curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar chmod +x wp-cli.phar sudo mv wp-cli.phar /usr/local/bin/wp Also ensure the SSH extension is available (needed for remote sites): wp package inst...
1K
5521 api-patterns sickn33/antigravity-awesome-skills
API Patterns API design principles and decision-making for 2025. Learn to THINK, not copy fixed patterns. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. 📑 Content Map File Description When to Read api-style.md REST vs GraphQL vs tRPC decision tree Choosing API type rest.md Resource naming, HTTP methods, status codes Designing REST API response.md Envelope pattern, error format, pagination Response structure graphql.md Schema design, w...
1K
5522 e2e-tests-studio mastra-ai/mastra
E2E Behavior Validation for Frontend Modifications Core Principle: Test Product Behavior, Not UI States CRITICAL: Tests must verify that product features WORK correctly, not just that UI elements render. What NOT to test (UI States): ❌ "Dropdown opens when clicked" ❌ "Modal appears after button click" ❌ "Loading spinner shows during request" ❌ "Form fields are visible" ❌ "Sidebar collapses" What TO test (Product Behavior): ✅ "Selecting an LLM provider configures the agent to use that provider"...
1K
5523 heygen-video heygen-com/skills
Preamble (run first) No auto-run steps. Check for updates manually when desired: " ${SKILL_DIR} /scripts/update-check.sh" This script is opt-in only. Do not execute it automatically on skill invocation. HeyGen Video Producer You are a video producer. Not a form. Not a CLI wrapper. A producer who understands what makes video work and guides the user from idea to finished cut. Docs: https://developers.heygen.com/docs/quick-start (API) · https://developers.heygen.com/cli (CLI) STOP. If you are abou...
1K
5524 running-code-analyzer forcedotcom/sf-skills
Running Code Analyzer Skill ⚠️ CRITICAL: Tool Selection BEFORE DOING ANYTHING ELSE: This skill MUST use the Bash tool to execute sf code-analyzer run and Node.js scripts. DO NOT use these tools under any circumstances: ❌ run_code_analyzer (MCP tool) ❌ mcp__* (any MCP tool) ❌ Any tool containing mcp in its name If you see a run_code_analyzer tool available, ignore it completely . Use only the Bash tool with sf code-analyzer run . Overview Show more Installs 418 Repository forcedotcom/sf-skills Gi...
1K
5525 ads-tiktok agricidaniel/claude-ads
TikTok Ads Deep Analysis Process Collect TikTok Ads data (Ads Manager export, Pixel/Events API status) Read ads/references/tiktok-audit.md for full 25-check audit Read ads/references/benchmarks.md for TikTok-specific benchmarks Read ads/references/platform-specs.md for creative specifications Read ads/references/scoring-system.md for weighted scoring algorithm Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate TikTok Ads Health Score (0-100) Generate findings report with action p...
1K
5526 routing-traffic-with-route53-and-cloudfront aws/agent-toolkit-for-aws
Routing Traffic with Route 53 and CloudFront Overview Domain expertise for configuring Amazon Route 53 to route traffic to Amazon CloudFront distributions using custom domain names. Covers hosted zone management, alias A/AAAA records, alternate domain name (CNAME) configuration, and ACM certificate setup for HTTPS. Configure Route 53 to route traffic to a CloudFront distribution To set up a custom domain for a CloudFront distribution with Route 53 DNS, follow the procedure exactly. See Route 53 ...
1K
5527 canvas-design nexu-io/open-design
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: Design Philosophy Creation (.md file) Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: Form, space, color, composition Images, graphics, shapes, ...
1K
5528 wechat-binding starchild-ai-agent/official-skills
📱 WeChat Binding Connect / reconnect / disconnect the user's WeChat account so the agent can push messages via send_to_wechat . The wechat tool stays built-in. This SKILL.md is the reference doc. See also config/context/references/messaging-channels.md — how to actually send messages once bound skills/tg-bot-binding/SKILL.md — analogous Telegram flow Typical binding flow qrcode → user scans → qrcode_status(qrcode=...) → connect(bot_token=...) Show more
1K
5529 logo-generator op7418/logo-generator-skill
Logo Generator Generate professional SVG logos and high-end showcase presentations for products and brands. Workflow Phase 1: Information Gathering Collect essential information from the user: Product/Brand Name (required) Industry/Category (e.g., AI, fintech, design tools) Core Concept (e.g., connection, flow, security, simplicity) Design Preferences : Style: minimal/complex, geometric/organic Color preference: monochrome/specific colors Mood: cold/warm, professional/friendly Ask concise questi...
1K
5530 huggingface-datasets huggingface/skills
Hugging Face Dataset Viewer Use this skill to execute read-only Dataset Viewer API calls for dataset exploration and extraction. Core workflow Optionally validate dataset availability with /is-valid . Resolve config + split with /splits . Preview with /first-rows . Paginate content with /rows using offset and length (max 100). Use /search for text matching and /filter for row predicates. Retrieve parquet links via /parquet and totals/metadata via /size and /statistics . Defaults Base URL: https:...
1K
5531 aws-lambda-php-integration giuseppe-trisciuoglio/developer-kit
AWS Lambda PHP Integration Patterns for deploying PHP and Symfony applications on AWS Lambda using the Bref framework. Overview This skill provides complete patterns for AWS Lambda PHP development with two main approaches: Bref Framework - The standard solution for PHP on Lambda with Symfony support, built-in routing, and cold start optimization Raw PHP - Minimal overhead approach with maximum control Both approaches support API Gateway integration with production-ready configurations. When to U...
1K
5532 typescript-review metabase/metabase
TypeScript/JavaScript Code Review Skill @./../_shared/typescript-commands.md Code Review Guidelines Review pull requests with a focus on: Compliance with project coding standards and conventions Code quality and best practices Clear and correct JSDoc comments Type safety and proper TypeScript usage React best practices (when applicable)
1K
5533 portfolio-manager tradermonty/claude-trading-skills
Portfolio Manager Overview Analyze and manage investment portfolios by integrating with Alpaca MCP Server to fetch real-time holdings data, then performing comprehensive analysis covering asset allocation, diversification, risk metrics, individual position evaluation, and rebalancing recommendations. Generate detailed portfolio reports with actionable insights. This skill leverages Alpaca's brokerage API through MCP (Model Context Protocol) to access live portfolio data, ensuring analysis is bas...
1K
5534 d3-visualization nexu-io/open-design
d3-visualization Curated from @chrisvoncsefalvay. What it does Teaches the agent to produce D3 charts and interactive data visualizations. Useful for editorial dashboards, reports, and explanatory graphics. Source Upstream: https://github.com/chrisvoncsefalvay/d3-claude-skill Category: diagrams How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scripts, and references, install ...
1K
5535 agentmemory-agents rohitg00/agentmemory
agentmemory connect <agent> merges the memory server into a host agent's config and preserves any existing servers. REST is the underlying protocol; for MCP-only hosts the adapter wires the stdio MCP bridge. Quick start agentmemory connect claude-code or cursor, codex, gemini-cli, ... After wiring, restart the host or run its MCP reload (for example /mcp in Claude Code) so it picks up the server. Then confirm the agent lists agentmemory's tools. Workflow Detect the calling agent. If unknown, de...
1K
5536 competitive-analysis anthropics/financial-services-plugins
No SKILL.md available for this skill. View on GitHub Installs 2.3K Repository claude-office-s…s/skills GitHub Stars 160 First Seen Mar 9, 2026
1K
5537 tailwindcss mindrally/skills
Tailwind CSS The skill is based on Tailwind CSS v4.1.18, generated at 2026-01-28. Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. Instead of writing custom CSS, you compose designs using utility classes directly in your markup. Tailwind v4 introduces CSS-first configuration with theme variables, making it easier to customize your design system. Core References Topic Description Reference Installation Vite, PostCSS, CLI, and CDN setup core-installation U...
1K
5538 shopify-products jezweb/claude-skills
Shopify Products Create, update, and bulk-import Shopify products. Produces live products in the store via the GraphQL Admin API or CSV import. Prerequisites Admin API access token (use the shopify-setup skill if not configured) Store URL and API version from shopify.config.json or .dev.vars Workflow Step 1: Gather Product Data Determine what the user wants to create or update: Product basics : title, description (HTML), product type, vendor, tags Variants : options (size, colour, material), pri...
1K
5539 seo-flow agricidaniel/claude-seo
FLOW Framework — Find · Leverage · Optimize · Win Framework and prompts © Daniel Agrici, CC BY 4.0 — github.com/AgriciDaniel/flow FLOW is an evidence-led SEO operating model built for the AI-search era. Claude SEO integrates the FLOW prompt library (41 prompts across 5 stages) so every analysis can be driven by structured, evidence-backed AI prompts rather than improvised queries. Runtime context: Load references/flow-framework.md on every /seo flow activation. Load prompt files on demand — only...
1K
5540 agentmemory-mcp-tools rohitg00/agentmemory
agentmemory exposes its full capability set as MCP tools. This skill is the index: it tells you which tool to reach for and where to find exact parameters. Quick start Save then recall: memory_save with content (the insight), concepts (comma-separated keywords), files (comma-separated paths). memory_smart_search with query and limit to retrieve it later. This runs hybrid BM25 plus vector plus graph-expanded search. Tool families Capture: memory_save , memory_observe flows, memory_compress_file ....
1K
5541 agentmemory-hooks rohitg00/agentmemory
The Claude Code plugin registers lifecycle hooks so memory is captured automatically. You do not have to call memory_save for routine work; the hooks observe tool use, prompts, and session boundaries and write observations for you. Quick start Install the plugin and the hooks register themselves: /plugin marketplace add rohitg00/agentmemory /plugin install agentmemory Watch observations land live at http://localhost:3113 . What the hooks do Session start and end frame each unit of work and let h...
1K
5542 agentmemory-architecture rohitg00/agentmemory
agentmemory is a memory server for coding agents. It runs locally, captures observations, indexes them for hybrid retrieval, and serves them back over REST and MCP. It is built on the iii engine. iii primitives Everything is a function, a trigger, or worker state on the iii engine. There is no separate plugin system; the worker registers functions ( mem::* ) and HTTP triggers ( api::* ) and the engine routes calls. agentmemory does not bypass iii; new capability is a new function plus a trigger....
1K
5543 modern-web-design freshtechbro/claudedesignskills
Modern Web Design Overview Modern web design in 2024-2025 emphasizes performance, accessibility, and meaningful interactions. This skill provides comprehensive guidance on current design trends, implementation patterns, and best practices for creating engaging, accessible, and performant web experiences. This meta-skill synthesizes knowledge from all animation, interaction, and 3D skills in this repository to provide holistic design guidance. Core Design Principles (2024-2025) 1. Performance-Fir...
1K
5544 agentmemory-config rohitg00/agentmemory
agentmemory reads configuration from the environment and from ~/.agentmemory/.env (one KEY=value per line, no export prefix). Restart the server after changing it. Quick start Enable richer memory and set a provider key in ~/.agentmemory/.env : ANTHROPIC_API_KEY=sk-ant-... AGENTMEMORY_AUTO_COMPRESS=true AGENTMEMORY_INJECT_CONTEXT=true Defaults worth knowing No API key is required. Without one, agentmemory runs zero-LLM with BM25 plus local embeddings. Token-spending features ship OFF on purpose:...
1K
5545 agentmemory-rest-api rohitg00/agentmemory
REST is agentmemory's primary surface. MCP is a bridge on top of it. Every memory operation has an HTTP endpoint under http://localhost:3111/agentmemory/* . Quick start liveness curl -fsS http://localhost:3111/agentmemory/livez save curl -X POST http://localhost:3111/agentmemory/remember \ -H "Content-Type: application/json" \ -d '{"content":"chose JWT refresh rotation","concepts":["jwt-refresh-rotation"]}' recall curl -X POST http://localhost:3111/agentmemory/smart-search \ -H "Content-Type:...
1K
5546 write-agentmemory-skill rohitg00/agentmemory
agentmemory skills follow one tiered format so they stay skimmable, accurate, and current. Match it exactly. Directory layout plugin/skills/<name>/ SKILL.md (required, under 100 lines) REFERENCE.md (optional, dense facts; auto-generate data tables) EXAMPLES.md (optional, worked transcripts) SKILL.md rules Frontmatter: name , description , optional argument-hint , and user-invocable . Set user-invocable: true only for skills the user runs as a slash command; reference and knowledge skills...
1K
5547 planning-with-files charon-fan/agent-playbook
Planning with Files Work like Manus: Use persistent markdown files as your "working memory on disk." FIRST: Check for Previous Session (v2.2.0) Before starting work , check for unsynced context from a previous session: Linux/macOS $( command -v python3 || command -v python ) ${CLAUDE_PLUGIN_ROOT} /scripts/session-catchup.py " $( pwd ) " Windows PowerShell & ( Get-Command python - ErrorAction SilentlyContinue ) . Source " $env :USERPROFILE\.claude\skills\planning-with-files\scripts\session-catc...
1K
5548 color-expert nexu-io/open-design
color-expert Curated from @meodai. What it does Color science expert skill with 286K words of reference material covering OKLCH/OKLAB, palette generation, accessibility/contrast, color naming, pigment mixing, and historical color theory. Source Upstream: https://github.com/meodai/skill.color-expert Category: design-systems How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scri...
1K
5549 code-review-graph aradotso/trending-skills
code-review-graph Skill by ara.so — Daily 2026 Skills collection. code-review-graph builds a persistent structural map of a codebase using Tree-sitter, stores it in a local SQLite graph, and exposes it to Claude via MCP. Instead of re-reading entire projects on every task, Claude queries the graph and reads only the files in the blast radius of a change — averaging 6.8× fewer tokens on code reviews and up to 49× on daily coding tasks in large monorepos. Installation Claude Code Plugin (recommend...
999
5550 cs-feat-design liuzhengdongfortest/codestable
cs-feat-design 这一阶段的产出是一份方案文件 {slug}-design.md ,加上从中抽出的行动清单 {slug}-checklist.yaml 。这两份东西后面会被两个阶段消费——implement 照着推进、acceptance 照着核对,所以这里写错或写漏,下游就跟着错。 共享路径和命名约定看 codestable/reference/shared-conventions.md 。本阶段一般 feature 目录已经由 brainstorm 创建好了;没有的话在这一步建。 本阶段有三个入口: 正式起草 :用户已经能讲清楚需求(或已经填好 {slug}-intent.md ),直接进"流程"一节走完整起草。 初始化模式 :用户说"开一个新需求 / 起个草稿 / 新建一个 feature",但想自己先写半成品方案而不是口述。走下一节"初始化模式",建好目录和空 {slug}-intent.md 就结束本轮,等用户填完再回来。 从 roadmap 条目起头 :用户说"开始做 roadmap 里的 {子 feature slug}"或"推进 {roadmap} 的下一条...
999