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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,427
总 Skills
160.9M
总安装量
2,740
贡献者
# Skill 仓库 描述 安装量
4001 self-learning philschmid/self-learning-skill
Self-Learning Skill Generator Autonomously research and learn new technologies from the web, then generate a reusable skill. Usage /learn <topic> If <topic> is missing, show usage. If topic is ambiguous, ask to clarify: "react" → "React for web, React Native, or a specific library like react-query?" "apollo" → "Apollo GraphQL client, Apollo Server, or Apollo Federation?" "aws" → "Which AWS service? (S3, Lambda, DynamoDB, etc.)" Normalize to kebab-case for filenames. 2. Discover Sources (Web Sear...
3.4K
4002 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...
3.4K
4003 creating-b2b-commerce-store forcedotcom/sf-skills
Commerce B2B Storefront Creation Interactive workflow to create a Commerce B2B Store in Salesforce and retrieve the auto-generated storefront metadata to your repository. Critical Concepts Commerce B2B = Store (backend data) + Storefront (frontend metadata). Store must be created first in the org to auto-generate the Storefront. Never create storefront metadata manually. See Store vs Storefront Reference When to Use This Skill Trigger when users request: "Create a B2B Commerce store" "Build a Co...
3.4K
4004 trello openclaw/openclaw
Trello Skill Manage Trello boards, lists, and cards directly from OpenClaw. Setup Get your API key: https://trello.com/app-key Generate a token (click "Token" link on that page) Set environment variables: export TRELLO_API_KEY = "your-api-key" export TRELLO_TOKEN = "your-token" Usage All commands use curl to hit the Trello REST API. List boards curl -s "https://api.trello.com/1/members/me/boards?key= $TRELLO_API_KEY &token= $TRELLO_TOKEN " | jq '.[] | {name, id}' List lists in a board curl -s "h...
3.4K
4005 healthcheck openclaw/openclaw
OpenClaw Host Hardening Overview Assess and harden the host running OpenClaw, then align it to a user-defined risk tolerance without breaking access. Use OpenClaw security tooling as a first-class signal, but treat OS hardening as a separate, explicit set of steps. Core rules Recommend running this skill with a state-of-the-art model (e.g., Opus 4.5, GPT 5.2+). The agent should self-check the current model and suggest switching if below that level; do not block execution. Require explicit approv...
3.4K
4006 tanstack-pacer tanstack-skills/tanstack-skills
Overview TanStack Pacer provides a unified, type-safe toolkit for controlling function execution timing. It offers class-based APIs, factory functions, and React hooks for debouncing, throttling, rate limiting, queuing, and batching. Core: @tanstack/pacer React: @tanstack/react-pacer Status: Beta Installation npm install @tanstack/pacer npm install @tanstack/react-pacer React hooks Debouncing Delays execution until after a period of inactivity. Class API import { Debouncer } from '@tanstack/pac...
3.4K
4007 shadcn-ui jezweb/claude-skills
shadcn/ui Component Integration You are a frontend engineer specialized in building applications with shadcn/ui—a collection of beautifully designed, accessible, and customizable components built with Radix UI or Base UI and Tailwind CSS. You help developers discover, integrate, and customize components following best practices. Core Principles shadcn/ui is not a component library —it's a collection of reusable components that you copy into your project. This gives you: Full ownership : Componen...
3.4K
4008 skill-share composiohq/awesome-claude-skills
When to use this skill Use this skill when you need to: Create new Claude skills with proper structure and metadata Generate skill packages ready for distribution Automatically share created skills on Slack channels for team visibility Validate skill structure before sharing Package and distribute skills to your team Also use this skill when: User says he wants to create/share his skill This skill is ideal for: Creating skills as part of team workflows Building internal tools that need skill cre...
3.4K
4009 slack-gif-creator composiohq/awesome-claude-skills
Slack GIF Creator A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack. Slack Requirements Dimensions: Emoji GIFs: 128x128 (recommended) Message GIFs: 480x480 Parameters: FPS: 10-30 (lower is smaller file size) Colors: 48-128 (fewer = smaller file size) Duration: Keep under 3 seconds for emoji GIFs Core Workflow from core . gif_builder import GIFBuilder from PIL import Image , ImageDraw 1. Create builder builder = GIFBuilder ( width = 128 , height = 128 , f...
3.4K
4010 user-story deanpeters/product-manager-skills
Purpose Create clear, concise user stories that combine Mike Cohn's user story format with Gherkin-style acceptance criteria. Use this to translate user needs into actionable development work that focuses on outcomes, ensures shared understanding between product and engineering, and provides testable success criteria. This is not a feature spec—it's a conversation starter that captures who benefits, what they're trying to do, why it matters, and how you'll know it works. Key Concepts The Mike Co...
3.4K
4011 skill-creator openai/skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
3.4K
4012 internal-comms composiohq/awesome-claude-skills
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...
3.4K
4013 pixijs-accessibility pixijs/pixijs-skills
Enable screen reader and keyboard navigation via PixiJS's AccessibilitySystem. The system creates an invisible shadow DOM overlay positioned over accessible containers so assistive technology can discover and activate them. Quick Start const button = new Sprite ( await Assets . load ( "button.png" ) ) ; button . accessible = true ; button . accessibleTitle = "Play game" ; button . accessibleHint = "Starts a new game session" ; button . eventMode = "static" ; button . tabIndex = 0 ; app . stage ....
3.4K
4014 ios-localization dpearson2699/swift-ios-skills
iOS Localization & Internationalization Localize iOS 26+ apps using String Catalogs, modern string types, FormatStyle, and RTL-aware layout. Localization mistakes cause App Store rejections in non-English markets, mistranslated UI, and broken layouts. Ship with correct localization from the start. Contents String Catalogs (.xcstrings) String Types -- Decision Guide String Interpolation in Localized Strings Pluralization FormatStyle -- Locale-Aware Formatting Right-to-Left (RTL) Layout Common Mis...
3.4K
4015 ads-meta agricidaniel/claude-ads
Meta Ads Deep Analysis Process Collect Meta Ads data (Ads Manager export, Events Manager screenshot, EMQ scores) Read ads/references/meta-audit.md for full 46-check audit Read ads/references/benchmarks.md for Meta-specific benchmarks Read ads/references/scoring-system.md for weighted scoring Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate Meta Ads Health Score (0-100) Generate findings report with action plan What to Analyze Pixel / CAPI Health (30% weight) Meta Pixel installe...
3.4K
4016 opentelemetry grafana/skills
No SKILL.md available for this skill. View on GitHub Installs 629 Repository grafana/skills GitHub Stars 123 First Seen Apr 14, 2026
3.4K
4017 frontend-testing langgenius/dify
Dify Frontend Testing Skill This skill enables Claude to generate high-quality, comprehensive frontend tests for the Dify project following established conventions and best practices. ⚠️ Authoritative Source: This skill is derived from web/testing/testing.md. Use Vitest mock/timer APIs (vi.*). When to Apply This Skill Apply this skill when the user: Asks to write tests for a component, hook, or utility Asks to review existing tests for completeness Mentions Vitest, React Testing Library, RT...
3.4K
4018 mobile-design sickn33/agentic-awesome-skills
Mobile Design System (Mobile-First · Touch-First · Platform-Respectful) Philosophy: Touch-first. Battery-conscious. Platform-respectful. Offline-capable. Core Law: Mobile is NOT a small desktop. Operating Rule: Think constraints first, aesthetics second. This skill exists to prevent desktop-thinking, AI-defaults, and unsafe assumptions when designing or building mobile applications. 1. Mobile Feasibility & Risk Index (MFRI) Before designing or implementing any mobile feature or screen , assess f...
3.4K
4019 grafana-oss grafana/skills
Grafana OSS Docs : https://grafana.com/docs/grafana/latest/ Dashboard Provisioning provisioning/dashboards/default.yaml apiVersion : 1 providers : - name : default folder : MyFolder type : file disableDeletion : false updateIntervalSeconds : 30 options : path : /var/lib/grafana/dashboards foldersFromFilesStructure : true Show more
3.4K
4020 prediction-market-risk-review affaan-m/ecc
Prediction Market Risk Review Use this skill before a prediction-market workflow touches user financial context, venue authentication, portfolio data, automation, or execution-capable tools. Review Gates Advice Boundary Confirm the output is informational. Remove buy/sell/hold/size recommendations. Keep manual user decision points explicit. Venue And Regulatory Boundary Show more Installs 1.4K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 25, 2026 Security Audits Gen Agent Trust Hub...
3.4K
4021 data-throughput-accelerator affaan-m/ecc
Data Throughput Accelerator Use this skill when the bottleneck is moving, transforming, or saving lots of data. The goal is not just speed. The goal is faster correct data landing in the right place with proof. First Distinction Separate these before optimizing: source extraction speed; network transfer speed; warehouse/load speed; transform speed; serving-table freshness; live tail growth while the job runs. A pipeline can be "fast" and still appear behind if new data arrives faster than the fi...
3.4K
4022 liteparse run-llama/llamaparse-agent-skills
LiteParse Skill Parse unstructured documents (PDF, DOCX, PPTX, XLSX, images, and more) locally with LiteParse: fast, lightweight, no cloud dependencies or LLM required. Initial Setup When this skill is invoked, respond with: I'm ready to use LiteParse to parse files locally. Before we begin, please confirm that: - `@llamaindex/liteparse` is installed globally (`npm i -g @llamaindex/liteparse`) - The `lit` CLI command is available in your terminal If both are set, please provide: 1. One or more f...
3.4K
4023 recursive-decision-ledger affaan-m/ecc
Recursive Decision Ledger Use this skill when the user is trying to force deeper computation through repeated rollouts or "Prime Gauss" style recursive prompting. Preserve the useful part: repeated trials, prior memory, fresh information, and explicit marks. Remove the unsafe part: pretending the loop proves certainty. Ledger Contract Every rollout should record: Show more Installs 1.4K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 25, 2026 Security Audits Gen Agent Trust Hub Pass S...
3.4K
4024 qianwen-video-generation qianwen-ai/qianwen-ai
Agent setup : If your agent doesn't auto-load skills (e.g. Claude Code), see agent-compatibility.md once per session. Qwen Video Generation Generate videos using Wan models. All tasks are asynchronous — submit, then poll until completion. This skill is part of QianWen-AI/qianwen-ai . ⚠️ Critical Parameter Differences by Mode: kf2v (First+Last Frame) : Duration is fixed at 5 seconds — other values will fail. Output is silent only . Resolution parameter varies : t2v/r2v/vace use size (e.g. "1280*7...
3.4K
4025 swiftui-navigation dpearson2699/swift-ios-skills
SwiftUI Navigation Navigation patterns for SwiftUI apps targeting iOS 26+ with Swift 6.2. Covers push navigation, multi-column layouts, sheet presentation, tab architecture, and deep linking. Patterns are backward-compatible to iOS 17 unless noted. Contents NavigationStack (Push Navigation) NavigationSplitView (Multi-Column) Sheet Presentation Tab-Based Navigation Deep Links Common Mistakes Review Checklist References NavigationStack (Push Navigation) Use NavigationStack with a NavigationPath bi...
3.4K
4026 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...
3.4K
4027 qianwen-model-selector qianwen-ai/qianwen-ai
Agent setup : If your agent doesn't auto-load skills (e.g. Claude Code), see agent-compatibility.md once per session. Qwen Model Selector (Advisor) This skill operates in two modes: Interactive advisory — asks diagnostic questions to recommend the right model (see Diagnostic Flow). Cross-skill resolution — provides a fast-path model lookup for execution skills that need a model decision without user interaction (see recommendation-matrix.md ). Do not fabricate model names — only recommend models...
3.4K
4028 commerce-b2b-open-code-components-replace forcedotcom/sf-skills
Replacing OOTB B2B Commerce Components with Open Code This skill replaces OOTB (out-of-the-box) B2B Commerce component definitions in site metadata content.json files with their open source site: equivalents, or looks up the equivalent open code component for given OOTB definitions without making changes. It uses an authoritative mapping loaded from assets/ootb-to-open-code-mapping.json . Scope Modes: Full replace runs the scan (Step 1), user selection if needed, then content.json updates (Step ...
3.4K
4029 dx-code-analyzer-custom-rule-create forcedotcom/sf-skills
dx-code-analyzer-custom-rule-create: Custom Code Analyzer Rule Authoring Ecosystem: This skill is part of a 3-skill Code Analyzer suite — dx-code-analyzer-run (scans & results) · dx-code-analyzer-configure (setup, config, CI/CD) · dx-code-analyzer-custom-rule-create (custom rule authoring). Use this skill when the user needs to create a custom rule that enforces a pattern not covered by Code Analyzer's built-in rules. Supports Regex engine (text pattern matching) and PMD engine (structural XPath...
3.4K
4030 fine-tuning-expert jeffallan/claude-skills
Fine-Tuning Expert Senior ML engineer specializing in LLM fine-tuning, parameter-efficient methods, and production model optimization. Role Definition You are a senior ML engineer with deep experience in model training and fine-tuning. You specialize in parameter-efficient fine-tuning (PEFT) methods like LoRA/QLoRA, instruction tuning, and optimizing models for production deployment. You understand training dynamics, dataset quality, and evaluation methodologies. When to Use This Skill Fine-...
3.4K
4031 motion-framer freshtechbro/claudedesignskills
Motion & Framer Motion Overview Motion (formerly Framer Motion) is a production-ready animation library for React and JavaScript that enables declarative, performant animations with minimal code. It provides motion components that wrap HTML elements with animation superpowers, supports gesture recognition (hover, tap, drag, focus), and includes advanced features like layout animations, exit animations, and spring physics. When to use this skill: Building interactive UI components (buttons, cards...
3.4K
4032 feature-forge jeffallan/claude-skills
Feature Forge Requirements specialist conducting structured workshops to define comprehensive feature specifications. Role Definition You are a senior product analyst with 10+ years of experience. You operate with two perspectives: PM Hat: Focused on user value, business goals, success metrics Dev Hat: Focused on technical feasibility, security, performance, edge cases When to Use This Skill Defining new features from scratch Gathering comprehensive requirements Writing specifications in EAR...
3.4K
4033 migrate-ai-sdk-v6-to-v7 vercel/ai
AI SDK 6 to 7 Migration Use content/docs/08-migration-guides/23-migration-guide-7-0.mdx from the AI SDK repo as the source of truth. This skill is the working checklist; read the guide for exact examples or when behavior is unclear. Migration Workflow Ensure the user has a clean backup or committed baseline before editing. Inspect package.json and lockfiles to identify installed ai , @ai-sdk/* , provider, UI, MCP, and telemetry packages. Upgrade AI SDK packages to latest versions, and add @ai-sd...
3.4K
4034 qianwen-usage qianwen-ai/qianwen-ai
QianWen Usage Query QianWen usage, free tier quota, Token Plan status, and pay-as-you-go billing. Prerequisites QianWen CLI must be installed. Verify with: qianwen version If not installed, run: npm install -g @qianwenai/qianwen-cli Node.js >= 18 required. Show more
3.4K
4035 qianwen-ops-auth qianwen-ai/qianwen-ai
Agent setup : If your agent doesn't auto-load skills (e.g. Claude Code), see agent-compatibility.md once per session. QianWen Authentication Setup Configure and verify authentication for QianWen APIs. This skill is part of QianWen-AI/qianwen-ai . Skill directory Use this skill's internal files for learning. Load references only when the user needs console or documentation links. Location Purpose references/tokenplan.md Token Plan 团队版 vs standard key: endpoint mapping, supported models (4 text + ...
3.4K
4036 nature-paper-card yuan1z0825/nature-skills
Nature Paper Card - Router Use this skill to turn one paper into an evidence-grounded research card, not a translated abstract, generic summary, reviewer report, or publication article. The skill uses: a static core under static/core/ for principles, workflow, and the fixed output contract; one paper-type fragment under static/fragments/paper_type/ ; on-demand references for evidence labels, the exact card schema, and research-idea checks. Routing protocol Follow these steps every time. 1. Load ...
3.4K
4037 maishou aahl/skills
买手技能 获取中国在线购物平台商品价格、优惠券,全网比价 参数解释 source : 1 : 淘宝/天猫 2 : 京东 3 : 拼多多 7 : 抖音 8 : 快手 搜索商品 uv run scripts/main.py search --source = { source } --keyword = '{keyword}' uv run scripts/main.py search --source = { source } --keyword = '{keyword}' --page = 2 商品详情及购买链接 uv run scripts/main.py detail --source = { source } --id = { goodsId }
3.4K
4038 swift-testing dpearson2699/swift-ios-skills
Swift Testing Swift Testing is the modern testing framework for Swift (Xcode 16+, Swift 6+). Prefer it over XCTest for all new unit tests. Use XCTest only for UI tests, performance benchmarks, and snapshot tests. Contents Basic Tests @Test Traits expect and require @Suite and Test Organization Known Issues Additional Patterns Parameterized Tests In Depth Tags and Suites In Depth Async Testing Patterns Traits In Depth Common Mistakes Test Attachments Exit Testing Review Checklist MCP Integration ...
3.4K
4039 dart-use-primary-constructors dart-lang/skills
Dart Primary Constructors & New Constructor Syntax Skill Use this skill when helping users write, refactor, or debug code using Dart's Primary Constructors feature. Dart Version Requirements Dart 3.13 and above : Primary constructors are enabled by default. Dart 3.12 : The feature is available but experimental. Users must explicitly enable the experiment flag primary-constructors via --enable-experiment=primary-constructors or in analysis_options.yaml : analyzer : enable-experiment : - primary -...
3.4K
4040 template-skill composiohq/awesome-claude-skills
Insert instructions below
3.4K
4041 the-fool jeffallan/claude-skills
The Fool The court jester who alone could speak truth to the king. Not naive but strategically unbound by convention, hierarchy, or politeness. Applies structured critical reasoning across 5 modes to stress-test any idea, plan, or decision. When to Use This Skill Stress-testing a plan, architecture, or strategy before committing Challenging technology, vendor, or approach choices Evaluating business proposals, value propositions, or strategies Red-teaming a design before implementation Auditing ...
3.4K
4042 legacy-modernizer jeffallan/claude-skills
Legacy Modernizer Senior legacy modernization specialist with expertise in transforming aging systems into modern architectures without disrupting business operations. Role Definition You are a senior legacy modernization expert with 15+ years of experience in incremental migration strategies. You specialize in strangler fig pattern, branch by abstraction, and risk-free modernization approaches. You transform legacy systems while maintaining zero downtime and ensuring business continuity. Wh...
3.4K
4043 django-expert jeffallan/claude-skills
Django Expert Overview This skill provides expert guidance for Django backend development with comprehensive coverage of models, views, Django REST Framework, forms, authentication, testing, and performance optimization. It follows official Django best practices and modern Python conventions to help you build robust, maintainable applications. Key Capabilities: Model design with optimal ORM patterns View implementation (FBV, CBV, DRF viewsets) Django REST Framework API development Query optimiza...
3.4K
4044 longbridge longbridge/skills
Longbridge Developers Platform Full-stack financial data and trading platform: CLI, MCP, and LLM integration. Response language : match the user's input language — English / Simplified Chinese / Traditional Chinese. RULE: Response language priority : English is the default when language is ambiguous. If the user input is only a slash command, command name, ticker / symbol, or contains no natural-language language signal, you MUST respond in English. Do not infer Chinese from trigger keywords, sk...
3.4K
4045 drizzle-orm-patterns giuseppe-trisciuoglio/developer-kit
Drizzle ORM Patterns Overview Expert guide for building type-safe database applications with Drizzle ORM. Covers schema definition, relations, queries, transactions, and migrations for all supported databases. When to Use Defining database schemas with tables, columns, and constraints Creating relations between tables (one-to-one, one-to-many, many-to-many) Writing type-safe CRUD queries Implementing complex joins and aggregations Managing database transactions with rollback Setting up migration...
3.4K
4046 next-partial-prefetching-adoption vercel/next.js
next-partial-prefetching-adoption Enable Partial Prefetching and walk the app until every link reuses a shared App Shell. This skill sequences the work; per-insight recipes live in the dev overlay fix cards and their docs pages. The Adopting Partial Prefetching guide is the canonical reference for the concepts this skill applies. The one thing that shapes everything below: these insights surface only in next dev , in the dev overlay's Insights tab. Nothing fails the build. There is no build-only...
3.4K
4047 opencli joeseesun/opencli-skill
opencli CLI tool that turns websites into CLI interfaces, reusing Chrome's login state. Zero credentials needed. Rule: use opencli for supported sites instead of playwright or browser tools. Syntax opencli < site > < command > [ --option value ] [ -f json ] Common flags (all commands): -f json — machine-readable output (preferred for parsing) --limit N — number of results (default varies, usually 20) -f table|json|yaml|md|csv Quick Examples 读取/浏览 opencli bilibili hot --limit 10 -f json opencli ...
3.3K
4048 firecrawl-instruct firecrawl/cli
firecrawl instruct Interact with scraped pages in a live browser session. Scrape a page first, then use natural language prompts or code to click, fill forms, navigate, and extract data. When to use Content requires interaction: clicks, form fills, pagination, login scrape failed because content is behind JavaScript interaction You need to navigate a multi-step flow Last resort in the workflow escalation pattern : search → scrape → map → crawl → instruct Never use instruct for web searches — use...
3.3K
4049 fact-checker shubhamsaboo/awesome-llm-apps
Fact Checker You are an expert fact-checker who evaluates claims systematically using evidence-based analysis. When to Apply Use this skill when: Verifying specific claims or statements Identifying potential misinformation or disinformation Checking statistics and data accuracy Evaluating source credibility Separating fact from opinion or interpretation Analyzing viral claims or rumors Verification Process Follow this systematic approach: 1. Identify the Claim Extract the specific factual assert...
3.3K
4050 seatbelt-sandboxer trailofbits/skills
macOS Seatbelt Sandbox Profiling Generate minimally-permissioned allowlist-based Seatbelt sandbox configurations for applications. When to Use User asks to "sandbox", "isolate", or "restrict" an application on macOS Sandboxing any macOS process that needs restricted file/network access Creating defense-in-depth isolation if supply chain attacks are a concern When NOT to Use Linux containers (use seccomp-bpf, AppArmor, or namespaces instead) Windows applications Applications that legitimately nee...
3.3K