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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
2401 media-downloader yizhiyanhua-ai/media-downloader
🎬 Media Downloader / 智能媒体下载器 只需告诉我你想要什么,我就会帮你找到并下载相关的图片和视频! Just tell me what you want, and I'll find and download relevant images and videos for you! 🚀 我能帮你做什么?/ What Can I Do? 你说... / You say... 我会... / I will... "下载一些可爱的猫咪图片" 搜索并下载 5 张猫咪图片 "Download sunset photos" Search and download sunset images "找一段海浪的视频,15秒左右" 下载一段 15 秒的海浪视频 "Get me a 30-second cooking video" Download a trimmed cooking clip "下载这个 YouTube 视频的 1:30-2:00" 下载并自动剪辑指定片段 ✨ 功能特点 / Features 🖼️ 图片下载 - 从专业图库搜索高清图片 🎬 视频素材 - 获取免费商用...
406
2402 swap-integration uniswap/uniswap-ai
Swap Integration Integrate Uniswap swaps into frontends, backends, and smart contracts. Prerequisites This skill assumes familiarity with viem basics (client setup, account management, contract interactions, transaction signing). Install the uniswap-viem plugin for comprehensive viem/wagmi guidance: claude plugin add @uniswap/uniswap-viem Quick Decision Guide Building... Use This Method Frontend with React/Next.js Trading API Backend script or bot Trading API Smart contract integration Universal...
405
2403 index-knowledge tursodatabase/turso
index-knowledge Generate hierarchical AGENTS.md files. Root + complexity-scored subdirectories. Usage --create-new Read existing → remove all → regenerate from scratch --max-depth=2 Limit directory depth (default: 5) Default: Update mode (modify existing + create new where warranted) Workflow (High-Level) Discovery + Analysis (concurrent) Launch parallel explore agents (multiple Task calls in one message) Main session: bash structure + LSP codemap + read existing AGENTS.md Score & Decide - ...
405
2404 git-pushing sickn33/antigravity-awesome-skills
Git Push Workflow Stage all changes, create a conventional commit, and push to the remote branch. When to Use Automatically activate when the user: Explicitly asks to push changes ("push this", "commit and push") Mentions saving work to remote ("save to github", "push to remote") Completes a feature and wants to share it Says phrases like "let's push this up" or "commit these changes" Workflow ALWAYS use the script - do NOT use manual git commands: bash skills/git-pushing/scripts/smart_com...
405
2405 architecture-diagrams aj-geddes/useful-ai-prompts
Architecture Diagrams Overview Create clear, maintainable architecture diagrams using code-based diagramming tools like Mermaid and PlantUML for system design, data flows, and technical documentation. When to Use System architecture documentation C4 model diagrams Data flow diagrams Sequence diagrams Component relationships Deployment diagrams Infrastructure architecture Microservices architecture Database schemas (visual) Integration patterns Mermaid Examples 1. System Architecture Diagram gr...
405
2406 setting-up-astro-project astronomer/agents
Astro Project Setup This skill helps you initialize and configure Airflow projects using the Astro CLI. To run the local environment, see the managing-astro-local-env skill. To write DAGs, see the authoring-dags skill. Initialize a New Project astro dev init Creates this structure: project/ ├── dags/ DAG files ├── include/ SQL, configs, supporting files ├── plugins/ Custom Airflow plugins ├── tests/ Unit tests ├── Dockerfile ...
405
2407 competitive-analysis anthropics/knowledge-work-plugins
Competitive Analysis Help the user understand competitive dynamics using frameworks from 49 product leaders who have navigated competition at companies from startups to Netflix and Google. How to Help When the user asks for help with competitive analysis: Expand the competitive set - Identify not just direct competitors but the status quo and workarounds Understand the true threat - Determine if the competition is features, distribution, or fundamental business model Find asymmetries - Help them...
405
2408 postgres-drizzle ccheney/robust-skills
Type-safe database applications with PostgreSQL 18 and Drizzle ORM. Essential Commands ``` npx drizzle-kit generate Generate migration from schema changes npx drizzle-kit migrate Apply pending migrations npx drizzle-kit push Push schema directly (dev only!) npx drizzle-kit studio Open database browser ``` Quick Decision Trees "How do I model this relationship?" ``` Relationship type? ├─ One-to-many (user has posts) → FK on "many" side + relations() ├─ Many-to-many...
404
2409 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...
404
2410 infographic-creator antvis/chart-visualization-skills
Infographics convert data, information, and knowledge into perceptible visual language. They combine visual design with data visualization, compressing complex information with intuitive symbols to help audiences quickly understand and remember key points. Infographic = Information Structure + Visual Expression This task uses AntV Infographic to create visual infographics. Before starting the task, you need to understand the AntV Infographic syntax specifications, including template list, dat...
404
2411 db-generate medusajs/medusa-agent-skills
Generate Database Migrations Generate database migrations for the specified Medusa module. The user will provide the module name as an argument (e.g., brand , product , custom-module ). For example: /medusa-dev:db-generate brand Use the Bash tool to execute the command npx medusa db:generate <module-name> , replacing <module-name> with the provided argument. Report the results to the user, including: The module name for which migrations were generated Migration file name or location Any errors o...
404
2412 capture-api-response-test-fixture vercel/ai
API Response Test Fixtures For provider response parsing tests, we aim at storing test fixtures with the true responses from the providers (unless they are too large in which case some cutting that does not change semantics is advised). The fixtures are stored in a __fixtures__ subfolder, e.g. packages/openai/src/responses/__fixtures__. See the file names in packages/openai/src/responses/__fixtures__ for naming conventions and packages/openai/src/responses/openai-responses-language-model.test....
403
2413 discovery-process deanpeters/product-manager-skills
Purpose Guide product managers through a complete discovery cycle—from initial problem hypothesis to validated solution—by orchestrating problem framing, customer interviews, synthesis, and experimentation skills into a structured process. Use this to systematically explore problem spaces, validate assumptions, and build confidence before committing to full development—avoiding "build it and they will come" syndrome and ensuring you're solving real customer problems. This is not a one-time resea...
403
2414 flutter-networking madteacher/mad-agents-skills
Flutter Networking Quick Start Add HTTP dependency to pubspec.yaml: dependencies: http: ^1.6.0 Basic GET request: import 'package:http/http.dart' as http; import 'dart:convert'; Future<Album> fetchAlbum() async { final response = await http.get( Uri.parse('https://api.example.com/albums/1'), ); if (response.statusCode == 200) { return Album.fromJson(jsonDecode(response.body)); } else { throw Exception('Failed to load album'); } } Use in UI with FutureBuilder: Fu...
403
2415 supply-chain-risk-auditor trailofbits/skills
Supply Chain Risk Auditor Activates when the user says "audit this project's dependencies". When to Use Assessing dependency risk before a security audit Evaluating supply chain attack surface of a project Identifying unmaintained or risky dependencies Pre-engagement scoping for supply chain concerns When NOT to Use Active vulnerability scanning (use dedicated tools like npm audit, pip-audit) Runtime dependency analysis License compliance auditing Purpose You systematically evaluate all dependen...
403
2416 text-summarizer dkyazzentwatwa/chatgpt-skills
Text Summarizer Create concise summaries from long text documents using extractive summarization. Identifies and extracts the most important sentences while preserving meaning. Quick Start from scripts.text_summarizer import TextSummarizer Summarize text summarizer = TextSummarizer() summary = summarizer.summarize(long_text, ratio=0.2) 20% of original print(summary) Summarize file summary = summarizer.summarize_file("article.txt", num_sentences=5) Features Extractive Summarization: Sele...
403
2417 maestro xenitv1/claude-code-maestro
MAESTRO: THE ARCHITECTURAL GOVERNANCE FRAMEWORK Maestro is not a tool; it is a Governance Protocol that transforms an AI agent from a reactive coder into a proactive Elite Software Architect. It enforces discipline, maintains project continuity, and orchestrates specialized expertise. � The Prime Directives (Mandatory) Law of Initiation (Mandatory Priority): Architectural continuity is non-negotiable. You MUST initiate every session by reading files in this strict sequence: 1. SKILL.md (Govern...
403
2418 devops mrgoonie/claudekit-skills
DevOps Skill Deploy and manage cloud infrastructure across Cloudflare, Docker, Google Cloud, and Kubernetes. When to Use Deploy serverless apps to Cloudflare Workers/Pages Containerize apps with Docker, Docker Compose Manage GCP with gcloud CLI (Cloud Run, GKE, Cloud SQL) Kubernetes cluster management (kubectl, Helm) GitOps workflows (Argo CD, Flux) CI/CD pipelines, multi-region deployments Security audits, RBAC, network policies Platform Selection Need Choose Sub-50ms latency globally Cloudfl...
403
2419 todoist-api intellectronica/agent-skills
This skill provides procedural guidance for working with the Todoist REST API v2 via curl and jq. Authentication Token Resolution Resolve the API token in this order: - Check environment variable `TODOIST_API_TOKEN` - Check if the user has provided a token in the conversation context - If neither is available, use AskUserQuestion (or similar tool) to request the token from the user To verify a token exists in the environment: ``` [ -n "$TODOIST_API_TOKEN" ] && echo "Token available" ||...
403
2420 fix-review trailofbits/skills
Fix Review Differential analysis to verify commits address security findings without introducing bugs. When to Use Reviewing fix branches against security audit reports Validating that remediation commits actually address findings Checking if specific findings (TOB-XXX format) have been fixed Analyzing commit ranges for bug introduction patterns Cross-referencing code changes with audit recommendations When NOT to Use Initial security audits (use audit-context-building or differential-review) ...
402
2421 performance-profiling sickn33/antigravity-awesome-skills
Performance Profiling Measure, analyze, optimize - in that order. 🔧 Runtime Scripts Execute these for automated profiling: Script Purpose Usage scripts/lighthouse_audit.py Lighthouse performance audit python scripts/lighthouse_audit.py https://example.com 1. Core Web Vitals Targets Metric Good Poor Measures LCP < 2.5s > 4.0s Loading INP < 200ms > 500ms Interactivity CLS < 0.1 > 0.25 Stability When to Measure Stage Tool Development Local Lighthouse CI/CD Lighthouse CI Production RUM (Real Use...
402
2422 wp-performance wordpress/agent-skills
WP Performance (backend-only) When to use Use this skill when: a WordPress site/page/endpoint is slow (frontend TTFB, admin, REST, WP-Cron) you need a profiling plan and tooling recommendations (WP-CLI profile/doctor, Query Monitor, Xdebug/XHProf, APMs) you’re optimizing DB queries, autoloaded options, object caching, cron tasks, or remote HTTP calls This skill assumes the agent cannot use a browser UI. Prefer WP-CLI, logs, and HTTP requests. Inputs required Environment and safety: dev/staging/p...
402
2423 ai-product sickn33/antigravity-awesome-skills
AI Product Development You are an AI product engineer who has shipped LLM features to millions of users. You've debugged hallucinations at 3am, optimized prompts to reduce costs by 80%, and built safety systems that caught thousands of harmful outputs. You know that demos are easy and production is hard. You treat prompts as code, validate all outputs, and never trust an LLM blindly. Patterns Structured Output with Validation Use function calling or JSON mode with schema validation Streaming...
402
2424 cmux-browser manaflow-ai/cmux
Browser Automation with cmux Use this skill for browser tasks inside cmux webviews. Core Workflow Open or target a browser surface. Verify navigation with get url before waiting or snapshotting. Snapshot ( --interactive ) to get fresh element refs. Act with refs ( click , fill , type , select , press ). Wait for state changes. Re-snapshot after DOM/navigation changes. cmux --json browser open https://example.com use returned surface ref, for example: surface:7 cmux browser surface:7 get url cmu...
401
2425 java-testing pluginagentmarketplace/custom-plugin-java
Java Testing Skill Write comprehensive tests for Java applications with modern testing practices. Overview This skill covers Java testing with JUnit 5, Mockito, AssertJ, and integration testing with Spring Boot Test and Testcontainers. Includes TDD patterns and test coverage strategies. When to Use This Skill Use when you need to: Write unit tests with JUnit 5 Create mocks with Mockito Build integration tests with Testcontainers Implement TDD/BDD practices Improve test coverage Topics Covered JU...
401
2426 image-processing jezweb/claude-skills
Image Processing Process images for web development. Generate a Pillow script adapted to the user's environment and specific needs. Prerequisites Pillow is usually pre-installed. If not: pip install Pillow If Pillow is unavailable, adapt using alternatives: Alternative Platform Install Capabilities sips macOS (built-in) None Resize, convert (no trim/OG) sharp Node.js npm install sharp Full feature set ffmpeg Cross-platform brew install ffmpeg Resize, convert Capabilities Generate a Python script...
401
2427 mcp-deepwiki aahl/skills
DeepWiki The DeepWiki MCP server provides programmatic access to DeepWiki’s public repository documentation and search capabilities (Ask Devin). MCP Server URL : https://mcp.deepwiki.com/mcp Ask Question (Recommended) The tool's results are generated by AI, requiring at least 1 minute or more of timeout time. npx -y mcporter call "${MCP_URL}.ask_question" repoName:owner/repo question:"User's questions" Read wiki structure npx -y mcporter call "${MCP_URL}.read_wiki_structure" repoName:owner/repo ...
401
2428 domain-fintech zhanghandong/rust-skills
FinTech Domain Layer 3: Domain Constraints Domain Constraints → Design Implications Domain Rule Design Constraint Rust Implication Audit trail Immutable records Arc, no mutation Precision No floating point rust_decimal Consistency Transaction boundaries Clear ownership Compliance Complete logging Structured tracing Reproducibility Deterministic execution No race conditions Critical Constraints Financial Precision RULE: Never use f64 for money WHY: Floating point loses precision RUST: Use rust_...
401
2429 sub-agent-patterns jezweb/claude-skills
Sub-Agents in Claude Code Status: Production Ready ✅ Last Updated: 2026-01-14 Source: https://code.claude.com/docs/en/sub-agents Sub-agents are specialized AI assistants that Claude Code can delegate tasks to. Each sub-agent has its own context window, configurable tools, and custom system prompt. Why Use Sub-Agents: Context Hygiene The primary value of sub-agents isn't specialization—it's keeping your main context clean. Without agent (context bloat): Main context accumulates: ├─ git stat...
400
2430 firecrawl-scraper benedictking/firecrawl-scraper
Firecrawl Web Scraper Skill Status : Production Ready Last Updated : 2026-01-20 Official Docs : https://docs.firecrawl.dev API Version : v2 SDK Versions : firecrawl-py 4.13.0+, @mendable/firecrawl-js 4.11.1+ What is Firecrawl? Firecrawl is a Web Data API for AI that turns websites into LLM-ready markdown or structured data. It handles: JavaScript rendering - Executes client-side JavaScript to capture dynamic content Anti-bot bypass - Gets past CAPTCHA and bot detection systems Format conversion ...
400
2431 research-engineer sickn33/antigravity-awesome-skills
Academic Research Engineer Overview You are not an assistant. You are a Senior Research Engineer at a top-tier laboratory. Your purpose is to bridge the gap between theoretical computer science and high-performance implementation. You do not aim to please; you aim for correctness. You operate under a strict code of Scientific Rigor. You treat every user request as a peer-reviewed submission: you critique it, refine it, and then implement it with absolute precision. Core Operational Protocols ...
400
2432 enterprise-agent-ops affaan-m/everything-claude-code
Enterprise Agent Ops Use this skill for cloud-hosted or continuously running agent systems that need operational controls beyond single CLI sessions. Operational Domains runtime lifecycle (start, pause, stop, restart) observability (logs, metrics, traces) safety controls (scopes, permissions, kill switches) change management (rollout, rollback, audit) Baseline Controls immutable deployment artifacts least-privilege credentials environment-level secret injection hard timeout and retry budgets aud...
400
2433 competitive-intelligence anthropics/knowledge-work-plugins
Competitive Intelligence Research your competitors extensively and generate an interactive HTML battlecard you can use in deals. The output is a self-contained artifact with clickable competitor tabs and an overall comparison matrix. How It Works ┌─────────────────────────────────────────────────────────────────┐ │ COMPETITIVE INTELLIGENCE │ ├─────────────────────────────────────────────────────────────────┤ │ ALWAYS (works standalone via web search) ...
400
2434 docker bobmatnyc/claude-mpm-skills
Docker Containerization Skill Summary Docker provides containerization for packaging applications with their dependencies into isolated, portable units. Containers ensure consistency across development, testing, and production environments, eliminating "works on my machine" problems. When to Use Local Development: Consistent dev environments across team members CI/CD Pipelines: Reproducible build and test environments Microservices: Isolated services with independent scaling Production Deploym...
400
2435 web-renderer-test remotion-dev/remotion
The web renderer is in packages/web-renderer and the test suite is in packages/web-renderer/src/test. It uses visual snapshot testing using vitest. A test file can for example be executed using: bunx vitest src/test/video.test.tsx Example Each test is powered by a fixture in packages/web-renderer/src/test/fixtures. A fixture looks like this for example: import {AbsoluteFill} from 'remotion'; const Component: React.FC = () => { return ( <AbsoluteFill style={{ justifyCont...
400
2436 android-device-automation web-infra-dev/midscene-skills
Android Device Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time fo...
400
2437 domain-iot zhanghandong/rust-skills
IoT Domain Layer 3: Domain Constraints Domain Constraints → Design Implications Domain Rule Design Constraint Rust Implication Unreliable network Offline-first Local buffering Power constraints Efficient code Sleep modes, minimal alloc Resource limits Small footprint no_std where needed Security Encrypted comms TLS, signed firmware Reliability Self-recovery Watchdog, error handling OTA updates Safe upgrades Rollback capability Critical Constraints Network Unreliability RULE: Network can fail at ...
400
2438 zai-tts aahl/skills
Zai-TTS Generate high-quality text-to-speech audio using GLM-TTS service via the uvx zai-tts command. Before using this skill, you need to configure the environment variables ZAI_AUDIO_USERID and ZAI_AUDIO_TOKEN , which can be obtained by login audio.z.ai and executing localStorage['auth-storage'] in the console via F12 Developer Tools. Usage uvx zai-tts -t "{msg}" -o { tempdir } / { filename } .wav uvx zai-tts -f path/to/file.txt -o { tempdir } / { filename } .wav Changing speed, volume uvx zai...
399
2439 threejs mrgoonie/claudekit-skills
Three.js Development Build high-performance 3D web applications using Three.js - a cross-browser WebGL/WebGPU library. When to Use This Skill Use when working with: 3D scenes, models, animations, or visualizations WebGL/WebGPU rendering and graphics programming Interactive 3D experiences (games, configurators, data viz) Camera controls, lighting, materials, or shaders Loading 3D assets (GLTF, FBX, OBJ) or textures Post-processing effects (bloom, depth of field, SSAO) Physics simulations, VR/...
399
2440 marketing-ideas davila7/claude-code-templates
Marketing Ideas for SaaS You are a marketing strategist with a library of 139 proven marketing ideas. Your goal is to help users find the right marketing strategies for their specific situation, stage, and resources. How to Use This Skill 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 t...
399
2441 cloudflare-worker-base jezweb/claude-skills
Cloudflare Worker Base Stack Production-tested: cloudflare-worker-base-test (https://cloudflare-worker-base-test.webfonts.workers.dev) Last Updated: 2026-01-20 Status: Production Ready ✅ Latest Versions: hono@4.11.3, @cloudflare/vite-plugin@1.17.1, vite@7.3.1, wrangler@4.54.0 Skill Version: 3.1.0 Recent Updates (2025-2026): Wrangler 4.55+: Auto-config for frameworks (wrangler deploy --x-autoconfig) Wrangler 4.45+: Auto-provisioning for R2, D1, KV bindings (enabled by default) Workers RPC: Jav...
399
2442 social-media-analyzer alirezarezvani/claude-skills
Social Media Campaign Analyzer This skill provides comprehensive analysis of social media campaign performance, helping marketing agencies deliver actionable insights to clients. Capabilities Multi-Platform Analysis: Track performance across Facebook, Instagram, Twitter, LinkedIn, TikTok Engagement Metrics: Calculate engagement rate, reach, impressions, click-through rate ROI Analysis: Measure cost per engagement, cost per click, return on ad spend Audience Insights: Analyze demographics, peak...
398
2443 icon-set-generator jezweb/claude-skills
Icon Set Generator Generate custom, visually consistent SVG icon sets tailored to specific projects. Each set is built from a shared style specification so every icon looks like it belongs with the others — same stroke weight, same corner treatment, same visual density. Why This Matters Generic icon libraries (Lucide, Heroicons) are great but every site using them looks similar. A custom icon set gives a project distinct visual identity. The hard part is consistency — drawing 20+ icons individua...
398
2444 ml-paper-writing zechenzhangagi/ai-research-skills
ML Paper Writing for Top AI Conferences Expert-level guidance for writing publication-ready papers targeting NeurIPS, ICML, ICLR, ACL, AAAI, and COLM. This skill combines writing philosophy from top researchers (Nanda, Farquhar, Karpathy, Lipton, Steinhardt) with practical tools: LaTeX templates, citation verification APIs, and conference checklists. Core Philosophy: Collaborative Writing Paper writing is collaborative, but Claude should be proactive in delivering drafts. The typical workflo...
398
2445 full-output-enforcement leonxlnx/taste-skill
Full-Output Enforcement Baseline Treat every task as production-critical. A partial output is a broken output. Do not optimize for brevity — optimize for completeness. If the user asks for a full file, deliver the full file. If the user asks for 5 components, deliver 5 components. No exceptions. Banned Output Patterns The following patterns are hard failures. Never produce them: In code blocks: // ... , // rest of code , // implement here , // TODO , /* ... */ , // similar to above , // continue...
398
2446 speech openai/skills
Speech Generation Skill Generate spoken audio for the current project (narration, product demo voiceover, IVR prompts, accessibility reads). Defaults to gpt-4o-mini-tts-2025-12-15 and built-in voices, and prefers the bundled CLI for deterministic, reproducible runs. When to use Generate a single spoken clip from text Generate a batch of prompts (many lines, many files) Decision tree (single vs batch) If the user provides multiple lines/prompts or wants many outputs -> batch Else -> single Work...
398
2447 file-organizer sickn33/antigravity-awesome-skills
File Organizer This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization. When to Use This Skill Your Downloads folder is a chaotic mess You can't find files because they're scattered everywhere You have duplicate files taking up space Your folder structure doesn't make sense anymore You want to establish better organization habits You're starting a new project and...
397
2448 posthog-instrumentation posthog/posthog-for-claude
PostHog Instrumentation Skill Help users add PostHog analytics, event tracking, and feature flags to their code. When to Use User asks to "add PostHog" or "add analytics" User wants to track events or user actions User needs to implement feature flags User asks about instrumenting their code Workflow Identify the framework (React, Next.js, Python, Node.js, etc.) Check for existing PostHog setup Add appropriate instrumentation Code Patterns JavaScript/TypeScript // Event tracking posthog.captur...
397
2449 qdrant-vector-search davila7/claude-code-templates
Qdrant - Vector Similarity Search Engine High-performance vector database written in Rust for production RAG and semantic search. When to use Qdrant Use Qdrant when: Building production RAG systems requiring low latency Need hybrid search (vectors + metadata filtering) Require horizontal scaling with sharding/replication Want on-premise deployment with full data control Need multi-vector storage per record (dense + sparse) Building real-time recommendation systems Key features: Rust-powere...
397
2450 ralphinho-rfc-pipeline affaan-m/everything-claude-code
No SKILL.md available for this skill. View on GitHub
397