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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,735
总 Skills
170.0M
总安装量
2,753
贡献者
# Skill 仓库 描述 安装量
11451 ib-check-deck anthropics/financial-services-plugins
IB Deck Checker Perform comprehensive QC on the presentation across four dimensions. Read every slide, then report findings. Environment check This skill works in both the PowerPoint add-in and chat. Identify which you're in before starting: Add-in — read from the live open deck. Chat — read from the uploaded .pptx file. This is read-and-report only — no edits — so the workflow is identical in both. Workflow Read the deck Pull text from every slide, keeping track of which slide each line came fr...
825
11452 antigravity-workflows sickn33/antigravity-awesome-skills
Antigravity Workflows Use this skill to turn a complex objective into a guided sequence of skill invocations. When to Use This Skill Use this skill when: The user wants to combine several skills without manually selecting each one. The goal is multi-phase (for example: plan, build, test, ship). The user asks for best-practice execution for common scenarios like: Shipping a SaaS MVP Running a web security audit Building an AI agent system Implementing browser automation and E2E QA Workflow Source...
825
11453 rag-implementation sickn33/agentic-awesome-skills
RAG Implementation Master Retrieval-Augmented Generation (RAG) to build LLM applications that provide accurate, grounded responses using external knowledge sources. When to Use This Skill Building Q&A systems over proprietary documents Creating chatbots with current, factual information Implementing semantic search with natural language queries Reducing hallucinations with grounded responses Enabling LLMs to access domain-specific knowledge Building documentation assistants Creating research too...
825
11454 m01-ownership zhanghandong/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
824
11455 nemoclaw-user-monitor-sandbox nvidia/skills
Monitor Sandbox Activity and Debug Issues Prerequisites A running NemoClaw sandbox. The OpenShell CLI on your PATH . Use the NemoClaw status, logs, and TUI tools together to inspect sandbox health, trace agent behavior, and diagnose problems. Check Sandbox Health Run the status command to view the sandbox state, gateway health, and active inference configuration: $ nemoclaw <name> status Show more Installs 513 Repository nvidia/skills GitHub Stars 1.3K First Seen May 18, 2026 Security Audits Gen...
824
11456 nemoclaw-user-overview nvidia/skills
Ecosystem References Load references/ecosystem.md when users ask about the relationship between OpenClaw, OpenShell, and NemoClaw, or when to use NemoClaw versus OpenShell. Explains how OpenClaw, OpenShell, and NemoClaw form the ecosystem, NemoClaw's position in the stack, what NemoClaw adds beyond the community sandbox, and when to prefer NemoClaw versus integrating OpenShell and OpenClaw directly. Load references/how-it-works.md for sandbox lifecycle and architecture mechanics; not for product...
824
11457 pricing-strategy kostja94/marketing-skills
Pricing Strategy You are an expert in SaaS pricing and monetization strategy. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this con...
824
11458 vocabulary index-how/vocabulary
Design Vocabulary A reverse dictionary for design and UI work. The goal is to go from a fuzzy description of a concept to the precise, agreed-upon word — and to know the difference between words that look interchangeable but aren't. These are the terms from index.how/to/articulate : "the words designers use when they know what they're looking at." Source of truth The authoritative list of terms and definitions is bundled next to this file: vocabulary.md Show more Installs 546 Repository index-ho...
824
11459 python-uv mindrally/skills
Python Package Management with uv You are an expert in Python development with uv package management. Core Directive All Python dependencies must be installed, synchronized, and locked using uv. Never use pip, pip-tools, or poetry directly for dependency management. Dependency Management Commands For standard projects: uv add <package> uv remove <package> uv sync Script Management Execute scripts with proper dependency handling: uv run script.py Manual Inline Metadata Configuration S...
824
11460 auth0-express auth0/agent-skills
Auth0 Express Integration Add authentication to Express.js web applications using express-openid-connect. Prerequisites Express.js application Auth0 account and application configured If you don't have Auth0 set up yet, use the auth0-quickstart skill first When NOT to Use Single Page Applications - Use auth0-react , auth0-vue , or auth0-angular for client-side auth Next.js applications - Use auth0-nextjs skill which handles both client and server Mobile applications - Use auth0-react-native for ...
823
11461 award-application jezweb/claude-skills
Award Application Writer Produces award submissions and grant applications that address every criterion with quantified evidence. The goal is a document where every paragraph earns points on the scorecard. Process Step 1: Gather the brief Ask the user for: Award/grant name and organiser Selection criteria (the exact list, verbatim if possible) Word limits (per criterion and/or total) Judging rubric or weighting (if publicly available) Category entered (if multiple categories exist) Whether this ...
823
11462 scroll-animations dylantarre/animation-principles
Scroll Animations Apply Disney's 12 principles to scroll-triggered motion. Principle Application Squash & Stretch: Elements can compress slightly while scrolling fast, settle when stopped. Anticipation: Content should be slightly visible before full reveal. Start animations at 10-20% visibility. Staging: Reveal content in reading order. Top-to-bottom, left-to-right progression. Straight Ahead vs Pose-to-Pose: Define clear "hidden" and "revealed" poses. Scroll position interpolates between ...
823
11463 metrics railwayapp/railway-skills
Service Metrics Query resource usage metrics for Railway services. When to Use User asks "how much memory is my service using?" User asks about CPU usage, network traffic, disk usage User wants to debug performance issues User asks "is my service healthy?" (combine with service skill) Prerequisites Get environmentId and serviceId from linked project: railway status --json Extract: environment.id → environmentId service.id → serviceId (optional - omit to get all services) MetricMeasurement...
822
11464 pdf davila7/claude-code-templates
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...
822
11465 numpy-best-practices mindrally/skills
NumPy Best Practices Expert guidelines for NumPy development, focusing on array programming, numerical computing, and performance optimization. Code Style and Structure Write concise, technical Python code with accurate NumPy examples Prefer vectorized operations over explicit loops for performance Use descriptive variable names reflecting data content (e.g., weights, gradients, input_array) Follow PEP 8 style guidelines for Python code Use functional programming patterns when appropriate Arra...
822
11466 tavily-search framix-team/openclaw-tavily
tavily search Web search returning LLM-optimized results with content snippets and relevance scores. Before running any command If tvly is not found on PATH, install it first: curl -fsSL https://cli.tavily.com/install.sh | bash && tvly login Do not skip this step or fall back to other tools. See tavily-cli for alternative install methods and auth options. When to use You need to find information on any topic You don't have a specific URL yet First step in the workflow : search → extract → map → ...
822
11467 improve-game playableintelligence/game-creator
Performance Notes Take your time to do this thoroughly Quality is more important than speed Do not skip validation steps Improve Game Make your game better. This command deep-audits gameplay, visuals, code quality, performance, and player experience, then implements the highest-impact improvements. Run it as many times as you want — each pass finds the next most impactful thing to fix. Instructions Improve the game in the current directory. If $ARGUMENTS specifies a focus area (e.g., "gameplay",...
821
11468 game-3d-assets playableintelligence/game-creator
Game 3D Asset Engineer (Model Pipeline) You are an expert 3D game artist and integrator. You generate custom 3D models with Meshy AI, find models from free libraries, and wire them into Three.js games — replacing primitive geometry with recognizable 3D models. Philosophy Primitive cubes and spheres are fast to scaffold, but players can't tell a house from a tree. Real 3D models — even low-poly ones — give every entity a recognizable identity. Meshy AI is the preferred source — it generates exact...
821
11469 fusion-issue-author-feature equinor/fusion-skills
Author Feature Issue Dependency Requires fusion-issue-authoring as the top-level orchestrator for classification, shared gates, and publish flow. When to use Use this skill when the request is for a new capability or enhancement. When not to use Do not use this skill for bugs, user stories centered on role narratives, or generic technical tasks. Required inputs Feature intent and value Scope and non-goals Success criteria Instructions Confirm routed type is Feature . Draft locally in .tmp/FEATUR...
821
11470 creating-openlineage-extractors astronomer/agents
Creating OpenLineage Extractors This skill guides you through creating custom OpenLineage extractors to capture lineage from Airflow operators that don't have built-in support. Reference: See the OpenLineage provider developer guide for the latest patterns and list of supported operators/hooks. When to Use Each Approach Scenario Approach Operator you own/maintain OpenLineage Methods (recommended, simplest) Third-party operator you can't modify Custom Extractor Need column-level lineage OpenLinea...
821
11471 threejs-game playableintelligence/game-creator
Three.js Game Development You are an expert Three.js game developer. Follow these opinionated patterns when building 3D browser games. Reference : See reference/llms.txt (quick guide) and reference/llms-full.txt (full API + TSL) for official Three.js LLM documentation. Prefer patterns from those files when they conflict with this skill. Performance Notes Take your time with each step. Quality is more important than speed. Do not skip validation steps — they catch issues early. Read the full cont...
821
11472 axiom-performance charleswiltgen/axiom
Performance You MUST use this skill for ANY performance issue including memory leaks, slow execution, battery drain, or profiling. Not on Claude Code? Where this router says "Launch some-auditor agent", read that auditor's file in this suite and follow it inline — the same procedure, needing only file search and read. Available here: skills/energy-auditor.md , skills/memory-auditor.md , skills/swift-performance-analyzer.md . Agents that need Bash — builds, tests, simulators, crash symbolication ...
821
11473 flipoff-split-flap-display aradotso/trending-skills
FlipOff Split-Flap Display Emulator Skill by ara.so — Daily 2026 Skills collection. FlipOff is a pure vanilla HTML/CSS/JS web app that emulates classic mechanical split-flap (flip-board) airport displays. No frameworks, no npm, no build step — open index.html and you have a full-screen retro display with authentic scramble animations and clacking sounds. Installation git clone https://github.com/magnum6actual/flipoff.git cd flipoff Option 1: Open directly open index.html Option 2: Serve locall...
820
11474 deployment-procedures sickn33/antigravity-awesome-skills
Deployment Procedures Deployment principles and decision-making for safe production releases. Learn to THINK, not memorize scripts. ⚠️ How to Use This Skill This skill teaches deployment principles , not bash scripts to copy. Every deployment is unique Understand the WHY behind each step Adapt procedures to your platform 1. Platform Selection Show more Installs 2 Repository sickn33/agentic…e-skills GitHub Stars 44.7K First Seen 1 day ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk ...
820
11475 architecture-decision-records sickn33/antigravity-awesome-skills
Architecture Decision Records Comprehensive patterns for creating, maintaining, and managing Architecture Decision Records (ADRs) that capture the context and rationale behind significant technical decisions. When to Use This Skill Making significant architectural decisions Documenting technology choices Recording design trade-offs Onboarding new team members Reviewing historical decisions Establishing decision-making processes Core Concepts 1. What is an ADR? An Architecture Decision Record cap...
820
11476 feishu-cli-search riba2534/feishu-cli
飞书搜索 搜索飞书云文档、消息和应用。所有搜索命令 必须使用 User Access Token 。 执行流程 每次执行搜索前,按以下流程操作: 1. 检查 Token 状态 feishu-cli auth status -o json 根据返回结果判断: logged_in=false → 需要登录(步骤 2) access_token_valid=true + scope 包含所需权限 → 直接搜索(步骤 3) access_token_valid=false + refresh_token_valid=true → 无需操作,下次搜索时自动刷新 access_token_valid=false + refresh_token_valid=false → 需要重新登录(步骤 2) scope 缺少所需权限 → 需要重新登录并补充 scope(步骤 2) 2. 登录获取 Token(如需要) 使用两步式非交互登录, 始终使用最大 scope 范围 (覆盖搜索 + wiki + 日历 + 任务等全部功能): 步骤 A:生成授权 URL(最大 scope) feishu-cli aut...
820
11477 marketing-demand-acquisition alirezarezvani/claude-skills
No SKILL.md available for this skill. View on GitHub Installs 652 Repository alirezarezvani/…e-skills GitHub Stars 16.3K First Seen Jan 20, 2026
820
11478 notion-template-business sickn33/agentic-awesome-skills
Notion Template Business Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, marketing, and scaling to real revenue. 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 s...
820
11479 architecting-solutions zhaono1/agent-playbook
Architecting Solutions Analyzes requirements and creates technical solution documents for software implementation. Description Use this skill when you need to: Create non-PRD solution briefs or technical design documents Design software solutions Analyze requirements Specify features Document technical plans Plan refactoring or migration Installation Install through apb skills add ./skills/architecting-solutions --scope global --target all --link when possible. How It Works Show more Installs 22...
820
11480 story-coach jwynia/agent-skills
Story Coach: Assistive Writing Skill You are a writing coach. Your role is to help writers develop their own work through questions, diagnosis, and guided exploration. You never write their story for them. The Core Constraint You do not generate: Story prose or narrative text Dialogue for their characters Scene content or descriptions Plot summaries or outlines (unless reviewing theirs) Character backstories or biographies World details or lore You do generate: Questions that help them dis...
820
11481 a11y-audit alirezarezvani/claude-skills
No SKILL.md available for this skill. View on GitHub
820
11482 research-sources kostja94/marketing-skills
Strategies: Research Sources Guides selecting and organizing information sources for marketing research: content ideation, competitor monitoring, and industry tracking. Use this skill when planning where to gather signals for content, competitive intelligence, or market trends. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main outpu...
820
11483 rag-implementation sickn33/antigravity-awesome-skills
RAG Implementation Master Retrieval-Augmented Generation (RAG) to build LLM applications that provide accurate, grounded responses using external knowledge sources. When to Use This Skill Building Q&A systems over proprietary documents Creating chatbots with current, factual information Implementing semantic search with natural language queries Reducing hallucinations with grounded responses Enabling LLMs to access domain-specific knowledge Building documentation assistants Creating research too...
819
11484 auth0-mfa auth0/agent-skills
Auth0 MFA Guide Add Multi-Factor Authentication to protect user accounts and require additional verification for sensitive operations. Overview What is MFA? Multi-Factor Authentication (MFA) requires users to provide two or more verification factors to access their accounts. Auth0 supports multiple MFA factors and enables step-up authentication for sensitive operations. When to Use This Skill Adding MFA to protect user accounts Requiring additional verification for sensitive actions (payments, s...
819
11485 design-loop jezweb/claude-skills
Design Loop — Autonomous Site Builder Build complete multi-page websites through an autonomous loop. Each iteration reads a task, generates a page, integrates it, verifies it visually, then writes the next task to keep going. Overview The Design Loop uses a "baton" pattern — a file ( .design/next-prompt.md ) acts as a relay baton between iterations. Each cycle: Reads the current task from the baton Generates the page (via Claude or Google Stitch) Integrates into the site structure (navigation, l...
819
11486 python-cybersecurity-tool-development mindrally/skills
Python Cybersecurity Tool Development You are an expert in Python cybersecurity tool development, focusing on secure, efficient, and well-structured security testing applications. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_encrypted, has_valid_signature) Use lowercase wi...
819
11487 static-analysis mohitmishra786/low-level-dev-skills
Static Analysis Purpose Guide agents through selecting, running, and triaging static analysis tools for C/C++ — clang-tidy, cppcheck, and scan-build — including suppression strategies and CI integration. Triggers "How do I run clang-tidy on my project?" "What clang-tidy checks should I enable?" "cppcheck is reporting false positives — how do I suppress them?" "How do I set up scan-build for deeper analysis?" "My build is noisy with static analysis warnings" "How do I generate compile_commands.js...
819
11488 my-fetch-tweet ai-native-camp/camp-1
My Fetch Tweet X/Twitter URL에서 트윗 원문, 작성자 정보, 인게이지먼트 데이터를 가져오고 요약-인사이트-전체 번역 3단계 파이프라인으로 제공하는 스킬. API 연동 — FxEmbed FxEmbed 오픈소스 프로젝트의 API ( api.fxtwitter.com )를 활용한다. JavaScript 없이 트윗 데이터를 추출할 수 있다. URL 변환 규칙 URL에서 screen_name 과 status_id 를 추출한다 도메인을 api.fxtwitter.com 으로 변환한다 WebFetch로 JSON 데이터를 가져온다 https://x.com/garrytan/status/123456 → https://api.fxtwitter.com/garrytan/status/123456 지원 URL 형식 x.com , twitter.com , fxtwitter.com , fixupx.com API 응답 주요 필드 필드 설명 tweet.text 트윗 본문 (URL 확장됨) tweet...
818
11489 brand-writer zed-industries/zed
Zed Brand Writer Write in Zed's brand voice: thoughtful, technically grounded, and quietly confident. Sound like a developer who builds and explains tools for other developers. Write like the content on zed.dev — clear, reflective, and built around principles rather than persuasion. Invocation /brand-writer Start a writing session /brand-writer "homepage hero copy" Specify what you're writing /brand-writer --review "paste copy" Review existing copy for brand fit Core Voice You articulate Zed'...
817
11490 nemoclaw-user-reference nvidia/skills
NemoClaw User Reference References Load references/architecture.md when looking up architecture, agent integration, plugin structure, or blueprint design. Describes the NemoClaw integration layer and blueprint architecture and how they orchestrate compatible agent sandboxes. references/cli-selection-guide.md — Explains when to use $$nemoclaw versus openshell for NemoClaw-managed sandboxes, including lifecycle, inference, policy, monitoring, file transfer, and gateway operations. Load references/...
817
11491 accounting whawkinsiv/solo-founder-skills
Accounting & Bookkeeping Messy books cost you money in taxes, missed deductions, and accountant fees. This skill helps you set up clean financial tracking from day one — 30 minutes a week keeps you legal, informed, and out of trouble. Core Principles Bookkeeping is not optional. Messy books cost you money in taxes, missed deductions, and accountant fees. Separate business and personal finances completely. Day one. No exceptions. SaaS revenue recognition has rules. Stripe payments are not the sam...
817
11492 notebooklm sickn33/agentic-awesome-skills
NotebookLM Automation Complete programmatic access to Google NotebookLM—including capabilities not exposed in the web UI. Create notebooks, add sources (URLs, YouTube, PDFs, audio, video, images), chat with content, generate all artifact types, and download results in multiple formats. Installation From PyPI (Recommended for AI agents — Python-version-aware): pip install "notebooklm-py[browser]" mandatory; errors must propagate [cookies] (rookiepy) is optional and known to FAIL TO BUILD on Pyt...
817
11493 ab-test-setup sickn33/agentic-awesome-skills
A/B Test Setup You are an expert in experimentation and A/B testing. Your goal is to help design tests that produce statistically valid, actionable results. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before designing a test, understand: Test Context ...
817
11494 plaid buildgreatproducts/plaid
PLAID — Product Led AI Development You are a product development advisor helping a founder go from idea to buildable spec. You are warm, direct, and opinionated. You treat the founder as capable and smart — you’re here to help them articulate what’s already in their head, not to lecture them. The full pipeline is: Vision → Strategy → Spec → Build. Modes PLAID has three modes. Pick the right one based on context: Starting fresh (no vision.json exists): Run the vision intake conversation. See “Vis...
817
11495 fusion-issue-author-user-story equinor/fusion-skills
Author User Story Issue Dependency Requires fusion-issue-authoring as the top-level orchestrator for classification, shared gates, and publish flow. When to use Use this skill when the request is primarily about user workflow and behavior from a specific role perspective. When not to use Do not use this skill for pure bug reports, generic feature specs without user narrative, or technical enablement tasks. Required inputs User role and workflow context Story goal ( As a... I want... so that... )...
817
11496 fusion-help-api equinor/fusion-skills
Fusion Help API Use when a developer or admin needs to interact directly with the Fusion Help REST API — reading help content, building custom tooling, or automating content management. When to use Display help articles, FAQs, or release notes inside a Fusion app Build custom CLI or automation to manage help content Programmatically create, update, or delete help documentation Search or suggest help content from an application Understand Help API endpoints, authentication, or data models Read he...
816
11497 vtex-io-graphql-api vtex/skills
GraphQL Schemas & Resolvers When this skill applies Use this skill when your VTEX IO app needs to expose a GraphQL API — either for frontend React components to query, for other VTEX IO apps to consume, or for implementing custom data aggregation layers over VTEX Commerce APIs. Defining schemas in .graphql files in the /graphql directory Writing resolver functions in TypeScript in /node/resolvers/ Configuring @cacheControl and @auth directives Wiring resolvers into the Service class Do not use t...
816
11498 architecting-solutions charon-fan/agent-playbook
Architecting Solutions Analyzes requirements and creates technical solution documents for software implementation. Description Use this skill when you need to: Create non-PRD solution briefs or technical design documents Design software solutions Analyze requirements Specify features Document technical plans Plan refactoring or migration Installation Install through apb skills add ./skills/architecting-solutions --scope global --target all --link when possible. How It Works Show more Installs 22...
815
11499 taste-skill nexu-io/open-design
taste-skill Curated from @Leonxlnx. What it does High-agency frontend skill that gives AI good taste with tunable design variance, motion intensity, and visual density to stop generic UI slop. Source Upstream: https://github.com/Leonxlnx/taste-skill 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, scripts, and references, install the upstream bundle i...
815
11500 new railwayapp/railway-skills
New Project / Service / Database Create Railway projects, services, and databases with proper configuration. When to Use User says "deploy to railway" (add service if linked, init if not) User says "create a railway project", "init", "new project" (explicit new project) User says "link to railway", "connect to railway" User says "create a service", "add a backend", "new api service" User says "create a vite app", "create a react website", "make a python api" User says "deploy from github.com/u...
815