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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
1751 multiplayer-game rivet-dev/skills
No SKILL.md available for this skill. View on GitHub
665
1752 web-search-tavily jwynia/agent-skills
Web Search (Tavily API) Search the web using Tavily's AI-optimized search API. Returns high-quality, structured results with relevance scores and optional AI-generated summaries. Note: This skill requires a Tavily API key. For basic web search using the agent's built-in capability, see web-search. When to Use This Skill Use this skill when: You need to find current information not in your training data The user asks about recent events, news, or updates You need to verify facts or find auth...
664
1753 twitter starchild-ai-agent/official-skills
Twitter/X Skill Get user profiles, tweets, replies, followers/following, communities, spaces, and trends from Twitter/X via twitterapi.io. Prerequisites Set API key in ~/.zshrc : export TWITTERAPI_API_KEY = "your_api_key" Quick Check : cd < skill_directory > python3 scripts/get_user_info.py elonmusk Commands All commands run from the skill directory. User Endpoints python3 scripts/get_user_info.py USERNAME python3 scripts/get_user_about.py USERNAME python3 scripts/batch_get_users.py USER_ID1,USE...
664
1754 mongodb hoodini/ai-agents-skills
MongoDB & Mongoose Build and query MongoDB databases with best practices. Quick Start npm install mongodb mongoose Native Driver import { MongoClient, ObjectId } from 'mongodb'; const client = new MongoClient(process.env.MONGODB_URI!); const db = client.db('myapp'); const users = db.collection('users'); // Connect await client.connect(); // CRUD Operations await users.insertOne({ name: 'Alice', email: 'alice@example.com' }); const user = await users.findOne({ email: 'alice@example.com' });...
663
1755 code-quality tursodatabase/turso
Code Quality Guide Core Principle Production database. Correctness paramount. Crash > corrupt. Correctness Rules No workarounds or quick hacks. Handle all errors, check invariants Assert often. Never silently fail or swallow edge cases Crash on invalid state if it risks data integrity. Don't continue in undefined state Consider edge cases. On long enough timeline, all possible bugs will happen Rust Patterns Make illegal states unrepresentable Exhaustive pattern matching Prefer enums over strings...
663
1756 trigger-agents triggerdotdev/skills
Build production-ready AI agents using Trigger.dev's durable execution. Pattern Selection ``` Need to... → Use ───────────────────────────────────────────────────── Process items in parallel → Parallelization Route to different models/handlers → Routing Chain steps with validation gates → Prompt Chaining Coordinate multiple specialized tasks → Orchestrator-Workers Self-improve until quality threshold → Evaluator-Optimizer Pause for hu...
663
1757 qmd levineam/qmd-skill
qmd - Quick Markdown Search Local search engine for Markdown notes, docs, and knowledge bases. Index once, search fast. When to use (trigger phrases) "search my notes / docs / knowledge base" "find related notes" "retrieve a markdown document from my collection" "search local markdown files" Default behavior (important) Prefer qmd search (BM25). It's typically instant and should be the default. Use qmd vsearch only when keyword search fails and you need semantic similarity (can be very slow on a...
662
1758 multi-agent-orchestration qodex-ai/ai-agent-skills
Multi-Agent Orchestration Design and orchestrate sophisticated multi-agent systems where specialized agents collaborate to solve complex problems, combining different expertise and perspectives. Quick Start Get started with multi-agent implementations in the examples and utilities: Examples: See examples/ directory for complete implementations: orchestration_patterns.py - Sequential, parallel, hierarchical, and consensus orchestration framework_implementations.py - Templates for CrewAI, Aut...
662
1759 setting-okrs-goals refoundai/lenny-skills
Setting OKRs & Goals Help the user create effective objectives and key results using frameworks and insights from 55 product leaders. How to Help When the user asks for help with OKRs or goal setting: Understand context - Ask about their company stage, team size, and whether they have existing goals or are starting fresh Clarify the level - Determine if these are company, department, team, or individual goals Identify the strategy - Ensure they have a clear strategy before setting goals (goals s...
661
1760 langgraph-code-review existential-birds/beagle
LangGraph Code Review When reviewing LangGraph code, check for these categories of issues. Critical Issues 1. State Mutation Instead of Return BAD - mutates state directly def my_node(state: State) -> None: state["messages"].append(new_message) Mutation! GOOD - returns partial update def my_node(state: State) -> dict: return {"messages": [new_message]} Let reducer handle it 2. Missing Reducer for List Fields BAD - no reducer, each node overwrites class State(TypedDict): me...
660
1761 typescript-docs giuseppe-trisciuoglio/developer-kit
TypeScript Documentation Skill Overview Deliver production-ready TypeScript documentation that serves multiple audiences through layered documentation architecture. Generate API docs with TypeDoc, create architectural decision records, and maintain comprehensive code examples. When to Use "generate TypeScript API docs" - Create TypeDoc configuration and generate documentation "document this TypeScript module" - Add comprehensive JSDoc to a module "create ADR for TypeScript decision" - Document...
660
1762 trading-plan-generator jamesrochabrun/skills
Trading Plan Generator A comprehensive skill for creating disciplined, rule-based trading plans that help you manage risk, control emotions, and trade consistently. What This Skill Does Helps you create professional trading plans for: Day Trading - Intraday positions, quick scalps Swing Trading - Multi-day to multi-week positions Position Trading - Long-term trend following Options Trading - Directional and income strategies Investing - Long-term portfolio management Why You Need a Trading P...
660
1763 wordspace frames-engineering/wordspace
Wordspace Wordspace is a CLI tool that bootstraps project workspaces with workflows — reusable .prose programs fetched from GitHub. When to activate Activate this skill when the user: Wants to set up a new wordspace project Wants to browse, search, or add workflows Mentions "wordspace" by name Asks about available workflows or how to get new ones Commands wordspace init Bootstrap a new project in the current directory. Runs three steps: Workflows — Fetches available .prose workflows from GitHub ...
658
1764 liquid-theme-standards benjaminsehl/liquid-skills
CSS, JS & HTML Standards for Shopify Liquid Themes Core Principles Progressive enhancement — semantic HTML first, CSS second, JS third No external dependencies — native browser APIs only for JavaScript Design tokens — never hardcode colors, spacing, or fonts BEM naming — consistent class naming throughout Defensive CSS — handle edge cases gracefully CSS in Liquid Themes Where CSS Lives Location Liquid? Use For {% stylesheet %} No Component-scoped styles (one per file) {% style %} Yes Dynamic val...
658
1765 prisma-orm-v7-skills gocallum/nextjs16-agent-skills
Links Upgrade guide (v7): https://www.prisma.io/docs/orm/more/upgrade-guides/upgrading-versions/upgrading-to-prisma-7 Prisma Config reference: https://www.prisma.io/docs/orm/reference/prisma-config-reference Prisma Client Extensions: https://www.prisma.io/docs/orm/prisma-client/client-extensions Prisma 7 migration prompt (AI agents): https://www.prisma.io/docs/ai/prompts/prisma-7 Upgrade Upgrade packages pnpm add @prisma/client@7 pnpm add -D prisma@7 Breaking Changes (v7) Minimum versions Node...
657
1766 chaos-engineer jeffallan/claude-skills
Chaos Engineer Senior chaos engineer with deep expertise in controlled failure injection, resilience testing, and building systems that get stronger under stress. Role Definition You are a senior chaos engineer with 10+ years of experience in reliability engineering and resilience testing. You specialize in designing and executing controlled chaos experiments, managing blast radius, and building organizational resilience through scientific experimentation and continuous learning from controll...
655
1767 zustand lobehub/lobehub
LobeHub Zustand State Management Action Type Hierarchy 1. Public Actions Main interfaces for UI components: Naming: Verb form ( createTopic , sendMessage ) Responsibilities: Parameter validation, flow orchestration 2. Internal Actions ( internal_* ) Core business logic implementation: Naming: internal_ prefix ( internal_createTopic ) Responsibilities: Optimistic updates, service calls, error handling Should not be called directly by UI 3. Dispatch Methods ( internal_dispatch* ) State update hand...
654
1768 cloudbase-document-database-in-wechat-miniprogram tencentcloudbase/skills
CloudBase Document Database WeChat MiniProgram SDK This skill provides guidance on using the CloudBase document database SDK for data operations in WeChat MiniProgram applications. Core Concepts Initialization Before using any database operations, initialize the database reference: // Get default environment database reference const db = wx . cloud . database ( ) const _ = db . command // Get query operators To access a specific environment (e.g., test environment): // Get specific environment d...
654
1769 streamdown vercel/streamdown
Streamdown Streaming-optimized React Markdown renderer. Drop-in replacement for react-markdown with built-in streaming support, security, and interactive controls. Quick Setup 1. Install npm install streamdown Optional plugins (install only what's needed): npm install @streamdown/code @streamdown/mermaid @streamdown/math @streamdown/cjk 2. Configure Tailwind CSS (Required) This is the most commonly missed step. Streamdown uses Tailwind for styling and the dist files must be scanned. Tailwind v4 ...
654
1770 margin-trading binance/binance-skills-hub
Binance Margin-trading Skill Margin-trading request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /sapi/v1/margin/max-leverage (POST) Adjust cross margin max leverage (USER_DATA) maxLeverage None Yes /sapi/v1/margin/isolated/account (DELETE) Disable Isolated Margin Account (TRADE) symbol recvWindow Yes /sapi/v1/margin/isolated/account (POS...
652
1771 writing-specs-designs refoundai/lenny-skills
Writing Specs & Designs Help the user write effective specs and design documents using frameworks and insights from 7 product leaders. How to Help When the user asks for help with specs and design docs: Determine the fidelity level - Ask if they need conceptual alignment (low-fi) or detailed implementation guidance (high-fi) Encourage prototyping over polish - Push toward functional prototypes where possible rather than static documentation Focus on moving pieces - Help them identify the key aff...
649
1772 requesthunt resciencelab/opc-skills
RequestHunt Skill Generate user demand research reports by collecting and analyzing real user feedback from Reddit, X (Twitter), and GitHub. Prerequisites Set API key in ~/.zshrc: export REQUESTHUNT_API_KEY="your_api_key" Get your key from: https://requesthunt.com/settings/api Quick Check: cd <skill_directory> python3 scripts/get_usage.py Research Workflow This skill helps you generate comprehensive user demand research reports. Follow this workflow: Step 1: Define Scope Before colle...
649
1773 trigger-realtime triggerdotdev/skills
Subscribe to task runs and stream data in real-time from frontend and backend. When to Use - Building progress indicators for long-running tasks - Creating live dashboards showing task status - Streaming AI/LLM responses to the UI - React components that trigger and monitor tasks - Waiting for user approval in tasks Authentication Create Public Access Token (Backend) ``` import { auth } from "@trigger.dev/sdk"; // Read-only token for specific runs const publicToken = await auth.crea...
648
1774 trigger-setup triggerdotdev/skills
Get Trigger.dev running in your project in minutes. When to Use - Adding Trigger.dev to an existing project - Creating your first task - Setting up trigger.config.ts - Connecting to Trigger.dev cloud Prerequisites - Node.js 18+ or Bun - A Trigger.dev account ([https://cloud.trigger.dev](https://cloud.trigger.dev)) Quick Start 1. Install the SDK ``` npm install @trigger.dev/sdk ``` 2. Initialize Your Project ``` npx trigger init ``` This creates: - `trigger.config.ts` - proj...
648
1775 mcp-duckgo aahl/skills
DuckDuckGo Search Executing Shell commands. Web search npx -y mcporter call --stdio 'uvx duckduckgo-mcp-server' search query="{keyword}" max_results=10 Web fetch npx -y mcporter call --stdio 'uvx duckduckgo-mcp-server' fetch_content url="https://..."
647
1776 brave-search steipete/agent-scripts
Brave Search Headless web search and content extraction using Brave Search. No browser required. Setup Run once before first use: cd ~/Projects/agent-scripts/skills/brave-search npm ci Needs env: BRAVE_API_KEY . Search ./search.js "query" Basic search (5 results) ./search.js "query" -n 10 More results ./search.js "query" --content Include page content as markdown ./search.js "query" -n 3 --content Combined Extract Page Content ./content.js https://example.com/article Fetches a URL and extrac...
647
1777 dotnet-10-csharp-14 mhagrelius/dotfiles
.NET 10 & C 14 Best Practices .NET 10 (LTS, Nov 2025) with C 14. Covers minimal APIs, not MVC. Official docs: .NET 10 | C 14 | ASP.NET Core 10 Detail Files File Topics csharp-14.md Extension blocks, field keyword, null-conditional assignment minimal-apis.md Validation, TypedResults, filters, modular monolith, vertical slices security.md JWT auth, CORS, rate limiting, OpenAPI security, middleware order infrastructure.md Options, resilience, channels, health checks, caching, Serilog, EF Core, k...
646
1778 pwa-development alinaqi/claude-bootstrap
PWA Development Skill Load with: base.md Purpose: Build Progressive Web Apps that work offline, install like native apps, and deliver fast, reliable experiences across all devices. Core PWA Requirements ┌─────────────────────────────────────────────────────────────────┐ │ THE THREE PILLARS OF PWA │ │ ───────────────────────────────────────────────────────────── │ │ │ │ 1. HTTPS ...
646
1779 twelvedata starchild-ai-agent/official-skills
Twelve Data Twelve Data provides stocks and forex market data including real-time quotes, historical time series, and reference data. Use for traditional markets (stocks, forex) instead of crypto. When to Use Twelve Data Use Twelve Data for: Stock prices - Real-time and historical stock quotes Forex prices - Currency pair quotes and time series Time series data - OHLCV historical data Reference data - Stock lists, forex pairs, exchanges Search - Find stock symbols and company names Important : U...
645
1780 hot-topics vikiboss/60s-skills
Hot Topics & Trending Content Skill This skill helps AI agents fetch trending topics and hot searches from major Chinese social media and content platforms. When to Use This Skill Use this skill when users: Want to know what's trending on social media Ask about hot topics or viral content Need to understand current popular discussions Want to track trending topics across platforms Research social media trends Supported Platforms Weibo (微博) - Chinese Twitter equivalent Zhihu (知乎) - Chinese Quora ...
645
1781 drizzle-orm-d1 jezweb/claude-skills
Drizzle ORM for Cloudflare D1 Status: Production Ready ✅ Last Updated: 2026-01-20 Latest Version: drizzle-orm@0.45.1, drizzle-kit@0.31.8, better-sqlite3@12.5.0 Dependencies: cloudflare-d1, cloudflare-worker-base Quick Start (5 Minutes) 1. Install npm install drizzle-orm npm install -D drizzle-kit 2. Configure drizzle.config.ts import { defineConfig } from 'drizzle-kit'; export default defineConfig({ schema: './src/db/schema.ts', out: './migrations', dialect: 'sqlite', driver: 'd1-ht...
644
1782 ml-pipeline jeffallan/claude-skills
Senior ML pipeline engineer specializing in production-grade machine learning infrastructure, orchestration systems, and automated training workflows. Role Definition You are a senior ML pipeline expert specializing in end-to-end machine learning workflows. You design and implement scalable feature engineering pipelines, orchestrate distributed training jobs, manage experiment tracking, and automate the complete model lifecycle from data ingestion to production deployment. You build robust, r...
643
1783 agentmail agentmail-to/agentmail-skills
AgentMail is an API-first email platform for AI agents. Install the SDK and initialize the client. Installation ``` TypeScript/Node npm install agentmail Python pip install agentmail ``` Setup ``` import { AgentMailClient } from "agentmail"; const client = new AgentMailClient({ apiKey: "YOUR_API_KEY" }); ``` ``` from agentmail import AgentMail client = AgentMail(api_key="YOUR_API_KEY") ``` Inboxes Create scalable inboxes on-demand. Each inbox has a unique email address. ``` // C...
643
1784 prd-development deanpeters/product-manager-skills
Purpose Guide product managers through structured PRD (Product Requirements Document) creation by orchestrating problem framing, user research synthesis, solution definition, and success criteria into a cohesive document. Use this to move from scattered notes and Slack threads to a clear, comprehensive PRD that aligns stakeholders, provides engineering context, and serves as a source of truth—avoiding ambiguity, scope creep, and the "build what's in my head" trap. This is not a waterfall spec—it...
642
1785 verify facebook/react
Verification Run all verification steps. Arguments: $ARGUMENTS: Test pattern for the test step Instructions Run these first in sequence: Run yarn prettier - format code (stop if fails) Run yarn linc - lint changed files (stop if fails) Then run these with subagents in parallel: Use /flow to type check (stop if fails) Use /test to test changes in source (stop if fails) Use /test www to test changes in www (stop if fails) If all pass, show success summary. On failure, stop immediately and ...
642
1786 cron chaterm/terminal-skills
Cron 定时任务配置、日志监控、故障排查等技能。 Crontab 基础 管理命令 ``` 编辑当前用户的 crontab crontab -e 查看当前用户的 crontab crontab -l 删除当前用户的 crontab crontab -r 管理其他用户的 crontab(需要 root) crontab -u username -e crontab -u username -l ``` 时间格式 ``` ┌───────────── 分钟 (0-59) │ ┌───────────── 小时 (0-23) │ │ ┌───────────── 日 (1-31) │ │ │ ┌───────────── 月 (1-12) │ │ │ │ ┌───────────── 星期 (0-7, 0和7都是周日) │ │ │ │ │ * * * * * command ``` 特殊字符 ``` * 任意值 , 列表 (1,3,5) - 范围 (1-5) / 步长 (*/5 每5分钟) 示...
641
1787 inngest sickn33/antigravity-awesome-skills
Inngest Integration You are an Inngest expert who builds reliable background processing without managing infrastructure. You understand that serverless doesn't mean you can't have durable, long-running workflows - it means you don't manage the workers. You've built AI pipelines that take minutes, onboarding flows that span days, and event-driven systems that process millions of events. You know that the magic of Inngest is in its steps - each one a checkpoint that survives failures. Your core...
641
1788 travel-planner ailabs-393/ai-labs-claude-skills
Travel Planner Overview This skill transforms Claude into a comprehensive travel planning assistant that maintains your travel preferences and generates detailed, personalized trip plans including itineraries, budget breakdowns, packing lists, and cultural guidelines for any destination. When to Use This Skill Invoke this skill for travel-related tasks: Planning trips and creating itineraries Budget planning and expense tracking Destination research and recommendations Packing checklists Cul...
640
1789 recipe-batch-rename-files googleworkspace/cli
Batch Rename Google Drive Files PREREQUISITE: Load the following skills to execute this recipe: gws-drive Rename multiple Google Drive files matching a pattern to follow a consistent naming convention. Steps Find files to rename: gws drive files list --params '{"q": "name contains '\''Report'\''"}' --format table Rename a file: gws drive files update --params '{"fileId": "FILE_ID"}' --json '{"name": "2025-Q1 Report - Final"}' Verify the rename: gws drive files get --params '{"fileId": "FILE_ID",...
640
1790 swiftui-patterns affaan-m/everything-claude-code
SwiftUI Patterns Modern SwiftUI patterns for building declarative, performant user interfaces on Apple platforms. Covers the Observation framework, view composition, type-safe navigation, and performance optimization. When to Activate Building SwiftUI views and managing state ( @State , @Observable , @Binding ) Designing navigation flows with NavigationStack Structuring view models and data flow Optimizing rendering performance for lists and complex layouts Working with environment values and de...
638
1791 sales-qualification refoundai/lenny-skills
Sales Qualification Help the user qualify sales leads effectively using frameworks from 1 product leader. How to Help When the user asks for help with sales qualification: Understand current process - Ask how they currently decide which leads to pursue Identify disqualification criteria - Help them define what makes a lead NOT worth pursuing Design discovery questions - Create questions that efficiently reveal fit Build a qualification framework - Help them systematize qualification decisions Co...
638
1792 gws-apps-script googleworkspace/cli
apps-script (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws apps-script < resource > < method > [ flags ] Helper Commands Command Description +push Upload local files to an Apps Script project API Resources processes list — List information about processes made by or on behalf of a user, such as process type and current status. listScriptProcesses — List information about a script's executed processe...
638
1793 positioning-messaging refoundai/lenny-skills
Positioning & Messaging Help the user craft compelling product positioning and messaging using frameworks from 58 product leaders and marketers. How to Help When the user asks for help with positioning and messaging: Understand the target audience - Ask who specifically they're trying to reach and what those people care about Identify the competitive frame - Determine what alternatives customers are comparing them against Find the differentiated value - Help them articulate what's uniquely true ...
637
1794 problem-definition refoundai/lenny-skills
Problem Definition Help the user define problems clearly before jumping to solutions using frameworks from 91 product leaders. How to Help When the user asks for help with problem definition: Understand the current framing - Ask how they're currently thinking about the problem Dig into the struggling moment - Help them articulate the specific context where users feel stuck Separate problem from solution - Ensure they haven't conflated a desired feature with the underlying need Validate the probl...
637
1795 finance-news sundial-org/awesome-openclaw-skills
Finance News Skill AI-powered market news briefings with configurable language output and automated delivery. First-Time Setup Run the interactive setup wizard to configure your sources, delivery channels, and schedule: finance-news setup The wizard will guide you through: 📰 RSS Feeds: Enable/disable WSJ, Barron's, CNBC, Yahoo, etc. 📊 Markets: Choose regions (US, Europe, Japan, Asia) 📤 Delivery: Configure WhatsApp/Telegram group 🌐 Language: Set default language (English/German) ⏰ Schedule: Confi...
636
1796 migrate-oxlint oxc-project/oxc
This skill guides you through migrating a JavaScript/TypeScript project from ESLint to Oxlint . Overview Oxlint is a high-performance linter that implements many popular ESLint rules natively in Rust. It can be used alongside ESLint or as a full replacement. An official migration tool is available: @oxlint/migrate Step 1: Run Automated Migration Run the migration tool in the project root: npx @oxlint/migrate This reads your ESLint flat config and generates a .oxlintrc.json file. Key Options Opti...
636
1797 nestjs giuseppe-trisciuoglio/developer-kit
NestJS Framework with Drizzle ORM When to Use Building REST APIs or GraphQL servers with NestJS Setting up authentication and authorization Implementing middleware, guards, or interceptors Working with databases (TypeORM, Drizzle ORM) Creating microservices architecture Writing unit and integration tests Setting up OpenAPI/Swagger documentation Core Architecture Module Structure import { Module } from '@nestjs/common'; @Module({ imports: [/* other modules */], controllers: [/* controllers *...
636
1798 typescript pproenca/dot-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...
635
1799 remotion davila7/claude-code-templates
Stitch to Remotion Walkthrough Videos You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations. Overview This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects ...
633
1800 designing-growth-loops refoundai/lenny-skills
Designing Growth Loops Help the user design effective growth loops using frameworks from 54 product leaders who have built viral and product-led growth engines at companies from Dropbox to LinkedIn to Calendly. How to Help When the user asks for help with growth loops: Identify the loop type - Determine if they need viral, paid, content, or product-led acquisition loops Assess prerequisites - Check if they have the LTV, network effects, or product stickiness to support the loop Find the natural ...
633