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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
8351 google-adk vladm3105/aidoc-flow-framework
Google Agent Development Kit (ADK) Skill Purpose Provide specialized guidance for developing agentic applications and multi-agent systems using Google's Agent Development Kit (ADK). Enable AI assistants to design agents, build tools, orchestrate multi-agent workflows, implement memory/state management, and deploy agent-based applications following code-first development patterns. When to Use This Skill Invoke this skill when: Building conversational AI agents with tool integration Creating m...
99
8352 blind-spot-detective jwynia/agent-skills
Blind Spot Detective Purpose Systematically identify what's missing in non-fiction writing—both blind spots (inherent limitations of your approach) and blank spots (gaps that could be addressed). Provides frameworks for finding omissions, testing assumptions, and ensuring comprehensive coverage. Core Principle What you can't see matters more than what you can. Identifying what's missing is harder than recognizing what's included. Systematic interrogation reveals gaps that casual review misses...
99
8353 local-llm-ops bobmatnyc/claude-mpm-skills
Local LLM Ops (Ollama) Overview Your localLLM repo provides a full local LLM toolchain on Apple Silicon: setup scripts, a rich CLI chat launcher, benchmarks, and diagnostics. The operational path is: install Ollama, ensure the service is running, initialize the venv, pull models, then launch chat or benchmarks. Quick Start ./setup_chatbot.sh ./chatllm If no models are present: ollama pull mistral Setup Checklist Install Ollama: brew install ollama Start the service: brew services start oll...
99
8354 agent-builder shareai-lab/learn-claude-code
Agent Builder Build AI agents for any domain - customer service, research, operations, creative work, or specialized business processes. The Core Philosophy The model already knows how to be an agent. Your job is to get out of the way. An agent is not complex engineering. It's a simple loop that invites the model to act: LOOP: Model sees: context + available capabilities Model decides: act or respond If act: execute capability, add result, continue If respond: return to user That's it. The magic...
99
8355 feishu-task m1heng/clawdbot-feishu
Feishu Task Tools Tools: feishu_task_create feishu_task_subtask_create feishu_task_get feishu_task_update feishu_task_delete feishu_task_comment_create feishu_task_comment_list feishu_task_comment_get feishu_task_comment_update feishu_task_comment_delete feishu_task_attachment_upload feishu_task_attachment_list feishu_task_attachment_get feishu_task_attachment_delete feishu_task_add_tasklist feishu_task_remove_tasklist feishu_tasklist_create feishu_tasklist_get feishu_tasklist_list feishu_taskli...
99
8356 chrome-browser oimiragieo/agent-studio
Chrome Browser Automation Installation Standalone script : No download; the skill invokes .claude/tools/chrome-browser/chrome-browser.cjs (Node.js v18+ required). MCP integrations (for full automation): Chrome DevTools MCP : Usually bundled with the environment; ensure Chrome/Chromium is installed ( google.com/chrome ). Claude-in-Chrome : Install the Claude-in-Chrome extension and run with --chrome when needed. Cheat Sheet & Best Practices Testing: Test user-visible behavior, not implementation....
99
8357 elasticsearch-file-ingest elastic/agent-skills
Elasticsearch File Ingest Stream-based ingestion and transformation of large data files (NDJSON, CSV, Parquet, Arrow IPC) into Elasticsearch. Features & Use Cases Stream-based : Handle large files without running out of memory High throughput : 50k+ documents/second on commodity hardware Cross-version : Seamlessly migrate between ES 8.x and 9.x, or replicate across clusters Formats : NDJSON, CSV, Parquet, Arrow IPC Transformations : Apply custom JavaScript transforms during ingestion (enrich, sp...
99
8358 mcp-integration aiskillstore/marketplace
MCP Integration for Claude Code Plugins Overview Model Context Protocol (MCP) enables Claude Code plugins to integrate with external services and APIs by providing structured tool access. Use MCP integration to expose external service capabilities as tools within Claude Code. Key capabilities: Connect to external services (databases, APIs, file systems) Provide 10+ related tools from a single service Handle OAuth and complex authentication flows Bundle MCP servers with plugins for automatic setu...
99
8359 sociologist-analyst rysweet/amplihack
Analyze events through the disciplinary lens of sociology, applying rigorous sociological frameworks (structural-functionalism, conflict theory, symbolic interactionism, social constructionism), methodological approaches (quantitative surveys, qualitative ethnography, comparative-historical analysis), and core concepts (social structure, institutions, stratification, culture, socialization, deviance, collective behavior) to understand social patterns, group dynamics, power relations, inequality,...
99
8360 wireframing manutej/luxor-claude-marketplace
Wireframing Skill Table of Contents When to Use This Skill Core Concepts Wireframe Types Information Architecture User Flows Wireframe Elements Annotation and Specification Tools and Technologies Iteration Process Best Practices Wireframing Examples When to Use This Skill Wireframing is essential during various phases of product development and design: Early Product Discovery Requirements gathering: Visualize stakeholder ideas and requirements Concept exploration: Quickly test multiple design ...
99
8361 components tambo-ai/tambo
Tambo Components Two component types: generative (AI creates on-demand) and interactable (pre-placed, AI updates). Quick Start // Generative: AI creates when needed const components : TamboComponent [ ] = [ { name : "WeatherCard" , component : WeatherCard , description : "Shows weather. Use when user asks about weather." , propsSchema : z . object ( { city : z . string ( ) , temp : z . number ( ) } ) , } , ] ; < TamboProvider components = { components } > < App /> </ TamboProvider > ; Generative...
99
8362 event-store-design sickn33/antigravity-awesome-skills
Event Store Design Comprehensive guide to designing event stores for event-sourced applications. When to Use This Skill Designing event sourcing infrastructure Choosing between event store technologies Implementing custom event stores Optimizing event storage and retrieval Setting up event store schemas Planning for event store scaling Core Concepts 1. Event Store Architecture ┌─────────────────────────────────────────────────────┐ │ Event Store │ ├──────...
99
8363 hono-typescript mindrally/skills
Hono TypeScript Development You are an expert in Hono and TypeScript development with deep knowledge of building ultrafast, edge-first APIs that run on Cloudflare Workers, Deno, Bun, and Node.js. TypeScript General Guidelines Basic Principles Use English for all code and documentation Always declare types for variables and functions (parameters and return values) Avoid using any type - create necessary types instead Use JSDoc to document public classes and methods Write concise, maintainable, ...
99
8364 pdf-reader childbamboo/claude-code-marketplace-sample
PDF Reader PDF ファイルをテキスト抽出して Markdown 形式に変換するスキルです。 クイックスタート 基本的な使い方 WSL環境でPythonスクリプトを実行 wsl python3 scripts/read_pdf.py "/mnt/c/path/to/file.pdf" Markdown形式で保存 スクリプトでテキスト抽出 Write ツールで .md ファイルに保存 前提条件 pdfplumber パッケージが必要です: wsl pip3 install pdfplumber 使用例 例1: PDF ファイルを読み込んで内容を表示 User: "C:\Users\keita\repos\guideline.pdf を読み込んで" Assistant: 1. Windowsパスを WSL パスに変換: /mnt/c/Users/keita/repos/guideline.pdf 2. wsl python3 scripts/read_pdf.py を実行 3. 抽出されたテキストを Markdown 形式で表示 例2: PDF を Markdown に変換して...
99
8365 styling-nativewind-v4-expo tristanmanchester/agent-skills
NativeWind v4 for Expo (React Native) Non‑negotiables (v4) Use Tailwind CSS v3 and include presets: [require("nativewind/preset")] in tailwind.config.js . Keep exactly one Tailwind entry CSS file (commonly global.css ) and keep its path consistent across: metro.config.js → withNativeWind(..., { input: "./global.css" }) your app entry → import "./global.css" (or import "../global.css" from app/_layout.tsx ) Keep nativewind/babel in Babel presets and set jsxImportSource: "nativewind" on babel-pres...
99
8366 ln-522-manual-tester levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: Story Resolution Chain. Status filter: To Review Manual Tester Manually verifies Story AC on running code and reports structured results for the quality gate. Purpose & Scope Create executable test scripts in tes...
99
8367 godot-shaders-basics thedivergentai/gd-agentic-skills
Shader Basics Fragment/vertex shaders, uniforms, and built-in variables define custom visual effects. Available Scripts vfx_port_shader.gdshader Expert shader template with parameter validation and common effect patterns. shader_parameter_animator.gd Runtime shader uniform animation without AnimationPlayer - for dynamic effects. NEVER Do in Shaders NEVER use expensive operations in fragment() — pow() , sqrt() , sin() on every pixel? 1920x1080 = 2M calls/frame = lag. Pre-calculate OR use texture ...
99
8368 playwright davila7/claude-code-templates
Playwright CLI Skill Drive a real browser from the terminal using playwright-cli . Prefer the bundled wrapper script so the CLI works even when it is not globally installed. Treat this skill as CLI-first automation. Do not pivot to @playwright/test unless the user explicitly asks for test files. Prerequisite check (required) Before proposing commands, check whether npx is available (the wrapper depends on it): command -v npx > /dev/null 2 > &1 If it is not available, pause and ask the user to in...
99
8369 tax-legal-context kazukinagata/shinkoku
税務法的コンテキスト(Tax Legal Context) このスキルは shinkoku の税務関連回答における法的・免責コンテキストを提供する。 免責事項の提示 免責事項が必要な回答を行う際は、 references/disclaimer.md を読み込んで以下を実行する: references/disclaimer.md の「標準免責文」を回答末尾に付記する 免責を強調すべきケース(グレーゾーン・高額案件等)に該当する場合は追加注意喚起を行う 税理士法第52条の観点から、個別具体的な税務代理行為に該当しないよう留意する 参照ファイル ファイル 内容 references/disclaimer.md 標準免責文・税理士法との関係・ツール制限事項・情報の正確性
99
8370 bitbucket-workflow mindrally/skills
Bitbucket Workflow Best Practices You are an expert in Bitbucket workflows, including pull requests, Bitbucket Pipelines, Jira integration, and Atlassian ecosystem best practices. Core Principles Use pull requests for all code changes with proper review processes Implement CI/CD with Bitbucket Pipelines using bitbucket-pipelines.yml Leverage Jira integration for seamless issue tracking Follow branching models like Gitflow for structured development Maintain security through branch permissions ...
99
8371 self-improving-agent kimasplund/clawdbot-skills-pack
Self-Improving Agent "An AI agent that learns from every interaction, accumulating patterns and insights to continuously improve its own capabilities." — Based on 2025 lifelong learning research Overview This is a universal self-improvement system that learns from ALL skill experiences, not just PRDs. It implements a complete feedback loop with: Multi-Memory Architecture : Semantic + Episodic + Working memory Self-Correction : Detects and fixes skill guidance errors Self-Validation : Periodicall...
99
8372 performance-engineer charon-fan/agent-playbook
You are a performance engineer specializing in modern application optimization, observability, and scalable system performance. Use this skill when Diagnosing performance bottlenecks in backend, frontend, or infrastructure Designing load tests, capacity plans, or scalability strategies Setting up observability and performance monitoring Optimizing latency, throughput, or resource efficiency Do not use this skill when The task is feature development with no performance goals There is no access to...
99
8373 gitea-workflow jwynia/agent-skills
Gitea Workflow Orchestrator A skill that guides agents through structured agile development workflows for Gitea repositories by intelligently invoking commands in sequence. Uses checkpoint-based flow control to auto-progress between steps while pausing at key decision points. When to Use This Skill Use this skill when: Working with a Gitea-hosted repository Starting work for the day ("run morning standup", "start my day") Working on a task ("implement next task", "continue working") Completing a...
99
8374 helm-chart-scaffolding sickn33/antigravity-awesome-skills
Helm Chart Scaffolding Comprehensive guidance for creating, organizing, and managing Helm charts for packaging and deploying Kubernetes applications. Purpose This skill provides step-by-step instructions for building production-ready Helm charts, including chart structure, templating patterns, values management, and validation strategies. When to Use This Skill Use this skill when you need to: Create new Helm charts from scratch Package Kubernetes applications for distribution Manage multi-envir...
99
8375 mastra-hono jwynia/agent-skills
Mastra + Hono Development Build production-ready AI agents, tools, and workflows using Mastra v1 Beta with Hono API servers. This skill covers the complete stack from agent definition to deployment. Target version: Mastra v1 Beta (stable release expected January 2026) When to Use This Skill Use when: Creating Mastra agents with tools and memory Defining tools with Zod input/output schemas Building workflows with multi-step data flow Setting up Hono API servers with Mastra adapters Implement...
99
8376 pptx iofficeai/aionui
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
99
8377 plasmo-extension-architect shipshitdev/library
Plasmo Extension Architect You design Plasmo-based extensions with MV3 service workers, content scripts, and UI surfaces. When to Use Building a Plasmo extension Adding content scripts or messaging Designing popup, options, or side panel UI Core Patterns Keep service worker stateless; persist in storage. Use explicit message types and typed payloads. Gate content script injection and make it idempotent. Keep UI small and fast; use storage sync for prefs. Typical Surfaces background.ts content-...
99
8378 database design expert martinholovsky/claude-skills-generator
Database Design Expert 0. Mandatory Reading Protocol CRITICAL : Before implementing ANY database schema, you MUST read the relevant reference files: Trigger Conditions for Reference Files Read references/advanced-patterns.md WHEN : Designing schemas for new features Implementing complex relationships (many-to-many, polymorphic) Setting up inheritance patterns Designing for high-performance queries Read references/security-examples.md WHEN : Storing sensitive user data Designing audit trails Impl...
99
8379 ln-723-seed-data-generator levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. ln-723-seed-data-generator Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-720-structure-migrator Universal seed data generator with two modes: MIGRATE (parse existing ORM schemas) or GENERATE (create from entity definitions). Outputs to any target format (C, TypeScript, Python, JSON, SQL). Purpose & Scope Aspect...
99
8380 write-spec anthropics/knowledge-work-plugins
Write Spec If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Write a feature specification or product requirements document (PRD). Usage /write-spec $ARGUMENTS Workflow 1. Understand the Feature Ask the user what they want to spec. Accept any of: A feature name ("SSO support") A problem statement ("Enterprise customers keep asking for centralized auth") A user request ("Users want to export their data as CSV") A vague idea ("We should do something...
99
8381 prd-generator ognjengt/founder-skills
PRD Generator Overview Generate comprehensive, well-structured Product Requirements Documents (PRDs) that follow industry best practices. This skill helps product managers create clear, actionable requirements documents that align stakeholders and guide development teams. Core Workflow When a user requests to create a PRD (e.g., "create a PRD for a user authentication feature"), follow this workflow: Step 1: Gather Context Before generating the PRD, collect essential information through a d...
99
8382 scraper-builder jwynia/agent-skills
Scraper Builder Generate complete, runnable web scraper projects using the PageObject pattern with Playwright and TypeScript. This skill produces site-specific scrapers with typed data extraction, Docker deployment, and optional agent-browser integration for automated site analysis. When to Use This Skill Use this skill when: Building a site-specific web scraper for data extraction Generating PageObject classes for a target website Scaffolding a complete scraper project with Docker support Using...
99
8383 systematic-debugging vudovn/antigravity-kit
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
99
8384 deep-learning mindrally/skills
Deep Learning You are an expert in deep learning, neural network architectures, and model optimization. Core Principles Design networks with clear architectural goals Implement proper training pipelines Optimize for both accuracy and efficiency Follow reproducibility best practices Network Architecture Layer Design Choose appropriate layer types for the task Implement proper normalization (BatchNorm, LayerNorm) Use activation functions appropriately Design skip connections when beneficial Mode...
99
8385 brains-trust jezweb/claude-skills
Brains Trust Consult other leading AI models for a second opinion. Not limited to code — works for architecture, strategy, prompting, debugging, writing, or any question where a fresh perspective helps. Defaults (When User Just Says "Brains Trust") If the user triggers this skill without specifying what to consult about, apply these defaults: Pattern : Consensus (2 models from different providers) — it's called "brains trust", not "single opinion" Scope : Whatever Claude has been working on in t...
99
8386 aspire-integration-testing aaronontheweb/dotnet-skills
Use this skill when: - Writing integration tests for .NET Aspire applications - Testing ASP.NET Core apps with real database connections - Verifying service-to-service communication in distributed applications - Testing with actual infrastructure (SQL Server, Redis, message queues) in containers - Combining Playwright UI tests with Aspire-orchestrated services - Testing microservices with proper service discovery and networking Core Principles - Real Dependencies - Use actual infrastruc...
99
8387 swap-curve-strategy anthropics/financial-services-plugins
Swap Curve Strategy Analysis You are an expert rates strategist specializing in swap curve analysis. Combine swap pricing, government yield curves, and inflation curves from MCP tools to analyze curve shape, compute swap spreads, decompose real rates, and identify curve trade opportunities. Focus on routing tool outputs into curve metrics and trade recommendations — let the tools price, you analyze the shape and recommend. Core Principles The swap curve prices the market's expectation of future ...
99
8388 team yeachan-heo/oh-my-claudecode
Team Skill Spawn N coordinated agents working on a shared task list using Claude Code's native team tools. Replaces the legacy /swarm skill (SQLite-based) with built-in team management, inter-agent messaging, and task dependencies -- no external dependencies required. The swarm compatibility alias was removed in 1131. Usage /oh-my-claudecode:team N:agent-type "task description" /oh-my-claudecode:team "task description" /oh-my-claudecode:team ralph "task description" Parameters N - Number of team...
99
8389 canghe-article-illustrator freestylefly/canghe-skills
Article Illustrator Analyze articles, identify illustration positions, generate images with Type × Style consistency. Two Dimensions Dimension Controls Examples Type Information structure infographic, scene, flowchart, comparison, framework, timeline Style Visual aesthetics notion, warm, minimal, blueprint, watercolor, elegant Combine freely: --type infographic --style blueprint Types Type Best For infographic Data, metrics, technical scene Narratives, emotional flowchart Processes, workflows co...
99
8390 autonomous-skill feiskyer/claude-code-settings
Autonomous Skill - Long-Running Task Execution Execute complex, long-running tasks across multiple sessions using a dual-agent pattern (Initializer + Executor) with automatic session continuation. Directory Structure All task data is stored in .autonomous/<task-name>/ under the project root: project-root/ └── .autonomous/ ├── build-rest-api/ │ ├── task_list.md │ └── progress.md ├── refactor-auth/ │ ├── task_list.md │ └── progress.md └── ... This allows m...
99
8391 react-best-practices skillcreatorai/ai-agent-skills
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
99
8392 k8s-security-policies sickn33/antigravity-awesome-skills
Kubernetes Security Policies Comprehensive guide for implementing NetworkPolicy, PodSecurityPolicy, RBAC, and Pod Security Standards in Kubernetes. Do not use this skill when The task is unrelated to kubernetes security policies You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implemen...
99
8393 gdpr-data-handling sickn33/antigravity-awesome-skills
GDPR Data Handling Practical implementation guide for GDPR-compliant data processing, consent management, and privacy controls. Use this skill when Building systems that process EU personal data Implementing consent management Handling data subject requests (DSRs) Conducting GDPR compliance reviews Designing privacy-first architectures Creating data processing agreements Do not use this skill when The task is unrelated to gdpr data handling You need a different domain or tool outside this scope ...
99
8394 key-moments jwynia/agent-skills
Key Moments: Genre-Driven Emotional Beats Skill You help writers identify and sequence the essential emotional experiences that define their story's genre, then build the world, characters, and connective tissue around those moments. Based on Robert Rodriguez's methodology of visualizing key moments first, integrated with elemental genre theory. Core Principle Stories are defined by emotional experiences, not plot mechanics. Identify the key moments your genre requires, sequence them for maxi...
98
8395 outbound-optimizer shipshitdev/library
Outbound Optimizer - Cold Outreach Revenue Machine Overview You are an outbound sales strategist specializing in Alex Hormozi's outbound principles. You help indie founders transform cold outreach from spam into revenue by leading with value, proving personalization, and making zero-commitment offers. Your job is to execute an outreach transformation—not just advise—by diagnosing current messaging and creating high-converting templates. Hormozi's Core Principle: "Outbound is the fastest way to...
98
8396 design system architect daffy0208/ai-dev-standards
Design System Architect A design system is a single source of truth that brings consistency at scale. Core Principle Design systems are not just component libraries—they're the shared language between design and engineering. A good design system: Accelerates product development (reusable components) Ensures consistency across products (unified brand) Improves accessibility (baked into components) Enables scalability (compound growth, not linear) Reduces technical debt (centralized maintenance) G...
98
8397 convex migrations waynesutton/convexskills
Convex Migrations Evolve your Convex database schema safely with patterns for adding fields, backfilling data, removing deprecated fields, and maintaining zero-downtime deployments. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/database/schemas Schema Overview: https://docs.convex.dev/database Migration Patterns: https://stack.convex.dev/migrate-data-postgres-to-convex For broader context: https://docs.convex.dev/llms.t...
98
8398 automotive-expert personamanagmentlayer/pcl
Expert guidance for automotive systems, connected vehicles, fleet management, telematics, advanced driver assistance systems (ADAS), and automotive software development. Core Concepts Automotive Systems - Telematics and fleet management - Connected car platforms - Advanced Driver Assistance Systems (ADAS) - Electric Vehicle (EV) management - Vehicle-to-Everything (V2X) communication - Infotainment systems - Diagnostic systems (OBD-II) Technologies - CAN bus and automotive networks ...
98
8399 odoo-oca-developer miquelalzanillas/odoo-oca-convention-skill
Odoo OCA Developer Expert assistant for Odoo module development following OCA conventions and best practices. Core Capabilities 1. Module Creation Create new Odoo modules from OCA template with proper structure and conventions. Quick Start: python scripts/init_oca_module.py my_module_name --path /path/to/addons --version 17.0 What this provides: Complete OCA-compliant directory structure Pre-configured __manifest__.py with required keys README structure following OCA guidelines Proper __init__.p...
98
8400 ffmpeg-analyse-video fabriqaai/ffmpeg-analyse-video-skill
FFmpeg Video Analysis Extract frames from video files with ffmpeg. Delegate frame reading to sub-agents to preserve the main context window. Synthesise a structured timestamped summary from text-only sub-agent reports. Architecture: Context-Efficient Sub-Agent Pipeline Problem : Reading dozens of images into the main conversation context consumes most of the context window, leaving little room for synthesis and follow-up. Solution : A 3-phase pipeline: Main Agent Sub-Age...
98