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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
7251 story-idea-generator jwynia/agent-skills
Story Idea Generator: Generative Skill You generate and evaluate story concepts using a genre-first approach where desired emotional impact drives all decisions about setting, characters, and plot. Core Principle Emotional experience first. Setting serves genre, not the reverse. A "sci-fi story" is not a genre—it's a setting. The genre is what readers feel: wonder, horror, mystery, drama. Start with the emotional experience you want to create, then choose setting elements that enhance it. T...
469
7252 youtube-transcript michalparkola/tapestry-skills-for-claude-code
YouTube Transcript Extract transcripts from YouTube videos using the youtube-transcript-api. Usage Run the script with a YouTube URL or video ID: uv run scripts/get_transcript.py "VIDEO_URL_OR_ID" With timestamps: uv run scripts/get_transcript.py "VIDEO_URL_OR_ID" --timestamps Defaults Without timestamps (default): Plain text, one line per caption segment With timestamps: [MM:SS] text format (or [HH:MM:SS] for longer videos) Supported URL Formats https://www.youtube.com/watch?v=VIDEO_ID ...
469
7253 setup subframeapp/subframe
Parallel Plugin Setup Install CLI See https://docs.parallel.ai/integrations/cli for the supported install methods (pipx, Homebrew, npm, native binary). Walk the user through whichever they pick. Authenticate parallel-cli login Verify parallel-cli auth If parallel-cli not found, add ~/.local/bin to PATH. Show more
468
7254 supabase-backend-platform bobmatnyc/claude-mpm-skills
Supabase Backend Platform Skill progressive_disclosure: entry_point: summary: "Open-source Firebase alternative with Postgres, authentication, storage, and realtime" when_to_use: - "When building full-stack applications" - "When auth, database, and storage are required" - "When realtime subscriptions are needed" - "When using Next.js, React, or Vue" quick_start: - "Create project on Supabase console" - "npm install @supabase/supabase-js" - "Initialize client with URL and anon key" - "Use auth, d...
468
7255 trigger-refactor-pipeline forcedotcom/afv-library
When to Use This Skill Use this skill when you need to: Modernize legacy triggers with DML/SOQL operations inside loops Refactor triggers that lack clear separation of concerns Implement bulk-safe patterns in existing trigger code Generate comprehensive test coverage for refactored triggers Prerequisites Before starting, ensure you have: Salesforce CLI installed and authenticated to your target org Python 3.9 or higher installed The baseline trigger deployed (see Setup section) Setup Deploy the ...
468
7256 wechat-binding starchild-ai-agent/official-skills
📱 WeChat Binding Connect / reconnect / disconnect the user's WeChat account so the agent can push messages via send_to_wechat . The wechat tool stays built-in. This SKILL.md is the reference doc. See also config/context/references/messaging-channels.md — how to actually send messages once bound skills/tg-bot-binding/SKILL.md — analogous Telegram flow Typical binding flow qrcode → user scans → qrcode_status(qrcode=...) → connect(bot_token=...) Show more
468
7257 quarkus-patterns affaan-m/everything-claude-code
Quarkus Development Patterns Quarkus 3.x architecture and API patterns for cloud-native, event-driven services with Apache Camel. When to Activate Building REST APIs with JAX-RS or RESTEasy Reactive Structuring resource → service → repository layers Implementing event-driven patterns with Apache Camel and RabbitMQ Configuring Hibernate Panache, caching, or reactive streams Adding validation, exception mapping, or pagination Setting up profiles for dev/staging/production environments (YAML config...
468
7258 quality-documentation-manager alirezarezvani/claude-skills
Senior Quality Documentation Manager Expert-level quality documentation management with comprehensive document control system design, regulatory documentation oversight, change management, and configuration control for medical device organizations. Core Documentation Management Competencies 1. Document Control System Design (ISO 13485 Clause 4.2.3) Design and implement comprehensive document control systems ensuring systematic document management and regulatory compliance. Document Control S...
468
7259 websocket-implementation aj-geddes/useful-ai-prompts
WebSocket Implementation Overview Build scalable WebSocket systems for real-time communication with proper connection management, message routing, error handling, and horizontal scaling support. When to Use Building real-time chat and messaging Implementing live notifications Creating collaborative editing tools Broadcasting live data updates Building real-time dashboards Streaming events to clients Live multiplayer games Instructions 1. Node.js WebSocket Server (Socket.IO) const express = req...
468
7260 mqtt-development mindrally/skills
MQTT Development You are an expert in MQTT (Message Queuing Telemetry Transport) protocol development for IoT and real-time messaging systems. Follow these best practices when building MQTT-based applications. Core Principles MQTT is designed as an extremely lightweight publish/subscribe messaging transport Ideal for connecting remote devices with small code footprint and minimal network bandwidth MQTT requires up to 80% less network bandwidth than HTTP for transmitting the same amount of data...
468
7261 scipy-best-practices mindrally/skills
SciPy Best Practices Expert guidelines for SciPy development, focusing on scientific computing, optimization, signal processing, and statistical analysis. Code Style and Structure Write concise, technical Python code with accurate SciPy examples Prioritize numerical accuracy and computational efficiency Use functional programming patterns for mathematical operations Prefer vectorized operations over explicit loops Use descriptive variable names reflecting scientific context Follow PEP 8 style ...
468
7262 ads-generate agricidaniel/claude-ads
Ads Generate: AI Ad Image Generator Generates platform-sized ad creative images from your campaign brief and brand profile. Uses banana-claude as the image generation provider. Quick Reference Command What it does /ads generate Generate all images from campaign-brief.md /ads generate --platform meta Generate Meta assets only /ads generate --prompt "text" --ratio 9:16 Standalone generation without brief Environment Setup Required before running: Requires banana-claude (v1.4.1+) with nanobanana-mc...
468
7263 ads-create agricidaniel/claude-ads
Ads Create: Campaign Concept & Copy Brief Generator Generates structured campaign concepts and platform-specific copy from your brand profile and optional audit data. Outputs campaign-brief.md for use by /ads generate . Quick Reference Command What it does /ads create Full campaign brief → campaign-brief.md /ads create --platforms meta google Brief for specific platforms only /ads create --objective leads Brief optimized for lead generation Process Step 1: Check for Brand Profile Look for brand-...
468
7264 environment-setup-guide sickn33/antigravity-awesome-skills
Environment Setup Guide Overview Help developers set up complete development environments from scratch. This skill provides step-by-step guidance for installing tools, configuring dependencies, setting up environment variables, and verifying the setup works correctly. When to Use This Skill Use when starting a new project and need to set up the development environment Use when onboarding new team members to a project Use when switching to a new machine or operating system Use when troubleshoot...
468
7265 reflexion:memorize neolabhq/context-engineering-kit
Memory Consolidation: Curate and Update CLAUDE.md Output must add precise, actionable bullets that future tasks can immediately apply. Memory Consolidation Workflow Phase 1: Context Harvesting First, gather insights from recent reflection and work: Identify Learning Sources : Recent conversation history and decisions Reflection outputs from /reflexion:reflect Critique findings from /reflexion:critique Problem-solving patterns that emerged Failed approaches and why they didn't work If scope is un...
467
7266 quarkus-tdd affaan-m/everything-claude-code
Quarkus TDD Workflow TDD guidance for Quarkus 3.x services with 80%+ coverage (unit + integration). Optimized for event-driven architectures with Apache Camel. When to Use New features or REST endpoints Bug fixes or refactors Adding data access logic, security rules, or reactive streams Testing Apache Camel routes and event handlers Testing event-driven services with RabbitMQ Testing conditional flow logic Validating CompletableFuture async operations Testing LogContext propagation Workflow Show...
467
7267 ruby-rails-application aj-geddes/useful-ai-prompts
Ruby Rails Application Overview Build comprehensive Ruby on Rails applications with proper model associations, RESTful controllers, Active Record queries, authentication systems, middleware chains, and view rendering following Rails conventions. When to Use Building Rails web applications Implementing Active Record models with associations Creating RESTful controllers and actions Integrating authentication and authorization Building complex database relationships Implementing Rails middleware ...
467
7268 pdf tfriedel/claude-office-skills
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...
467
7269 dt-obs-frontends dynatrace/dynatrace-for-ai
Frontend Observability Skill Monitor web and mobile frontends using Real User Monitoring (RUM) with DQL queries. This skill targets the new RUM experience only; do not use classic RUM data. Overview This skill helps you: Monitor Core Web Vitals and frontend performance Track user sessions, engagement, and behavior Analyze errors and correlate with backend traces Optimize mobile app startup and stability Diagnose performance issues with detailed timing analysis Data Sources: Metrics : timeseries ...
467
7270 fastapi-development aj-geddes/useful-ai-prompts
FastAPI Development Overview Create fast, modern Python APIs using FastAPI with async/await support, automatic API documentation, type validation using Pydantic, dependency injection, JWT authentication, and SQLAlchemy ORM integration. When to Use Building high-performance Python REST APIs Creating async API endpoints Implementing automatic OpenAPI/Swagger documentation Leveraging Python type hints for validation Building microservices with async support Integrating Pydantic for data validatio...
467
7271 java-spring-development mindrally/skills
Java Spring Development Best Practices Core Principles Write clean, efficient, and well-documented Java code with accurate Spring Boot examples Use Spring Boot 3.x with Java 17+ features (records, sealed classes, pattern matching) Prefer constructor injection over field injection for better testability Follow SOLID principles and RESTful API design patterns Design for microservices architecture suitability Project Structure Organize code using the standard layered pattern: project/ ├── control...
467
7272 clickhousectl-cloud-deploy clickhouse/agent-skills
Deploy to ClickHouse Cloud This skill walks through deploying to ClickHouse Cloud using clickhousectl . It covers account setup, CLI authentication, service creation, schema migration, and connecting your application. Follow these steps in order. When to Apply Use this skill when the user wants to: Deploy their ClickHouse application to production Host ClickHouse as a managed cloud service Migrate from a local ClickHouse setup to ClickHouse Cloud Create a ClickHouse Cloud service Set up ClickHou...
467
7273 mobile-developer sickn33/antigravity-awesome-skills
Use this skill when Working on mobile developer tasks or workflows Needing guidance, best practices, or checklists for mobile developer Do not use this skill when The task is unrelated to mobile developer 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/implementation-playbook.md . You...
467
7274 design-game opusgamelabs/game-creator
Design Game Run a UI/UX design pass on an existing game to improve visuals, atmosphere, and game feel. No design experience needed — this command analyzes your game and applies proven visual patterns. Instructions Analyze the game at $ARGUMENTS (or the current directory if no path given). First, load the game-designer skill to get the full design vocabulary and patterns. Step 1: Audit Read package.json to identify the engine Read src/core/Constants.js for the current color palette and config Rea...
467
7275 react-pdf molefrog/skills
@json-render/react-pdf React PDF renderer that generates PDF documents from JSON specs using @react-pdf/renderer . Installation npm install @json-render/core @json-render/react-pdf Quick Start import { renderToBuffer } from "@json-render/react-pdf" ; import type { Spec } from "@json-render/core" ; const spec : Spec = { root : "doc" , elements : { doc : { type : "Document" , props : { title : "Invoice" } , children : [ "page" ] } , page : { type : "Page" , props : { size : "A4" } , children : [ "...
467
7276 customaize-agent:thought-based-reasoning neolabhq/context-engineering-kit
Thought-Based Reasoning Techniques for LLMs Overview Chain-of-Thought (CoT) prompting and its variants encourage LLMs to generate intermediate reasoning steps before arriving at a final answer, significantly improving performance on complex reasoning tasks. These techniques transform how models approach problems by making implicit reasoning explicit. Quick Reference Technique When to Use Complexity Accuracy Gain Zero-shot CoT Quick reasoning, no examples available Low +20-60% Few-shot CoT Have g...
466
7277 gpt-image skills-shell/skills
No SKILL.md available for this skill. View on GitHub
466
7278 dingtalk-connection xiaomingx/moltbot-connector-feishu-dingtalk
Bridge DingTalk bot messages to Clawdbot Gateway over a local WebSocket connection. Architecture ``` DingTalk user -> DingTalk cloud -> webhook (bridge.py) -> Clawdbot Gateway -> AI agent ``` Setup 1. Create DingTalk bot Create a bot that can send outgoing webhooks and set the callback URL to your public endpoint. 2. Run bridge ``` cd <skill-dir>/dingtalk-connection uv sync DINGTALK_SIGNING_SECRET=your_secret uv run python bridge.py ``` 3. Auto-start (macOS) ``` uv run python set...
466
7279 quarkus-verification affaan-m/everything-claude-code
Quarkus Verification Loop Run before PRs, after major changes, and pre-deploy. When to Activate Before opening a pull request for a Quarkus service After major refactoring or dependency upgrades Pre-deployment verification for staging or production Running full build → lint → test → security scan → native compilation pipeline Validating test coverage meets thresholds (80%+) Testing native image compatibility Phase 1: Build Maven mvn clean verify -DskipTests Show more
466
7280 nextjs vercel/vercel-plugin
Next.js Best Practices Apply these rules when writing or reviewing Next.js code. File Conventions See file-conventions.md for: Project structure and special files Route segments (dynamic, catch-all, groups) Parallel and intercepting routes Middleware rename in v16 (middleware → proxy) RSC Boundaries Detect invalid React Server Component patterns. See rsc-boundaries.md for: Async client component detection (invalid) Non-serializable props detection Server Action exceptions Async Patterns Next.js ...
466
7281 tong-jincheng-interpersonal-skill aradotso/trending-skills
童锦程.skill Skill by ara.so — Daily 2026 Skills collection. 用深情祖师爷童锦程的直白人性洞察,帮你看透关系、读懂人心。基于9个一手视频字幕、约20万字原始素材提炼的思维框架——不是复读语录,是用他看世界的方式帮你分析问题。 安装 npx skills add hotcoffeeshake/tong-jincheng-skill 安装后在 Claude Code 或兼容 Agent 中使用以下触发词激活: > 童锦程 > 深情祖师爷 > 用童锦程的方式 > 从童锦程视角 > 景辰怎么看 项目是什么 tong-jincheng-skill 是一个 skills.sh 兼容的 AI Agent Skill,核心文件是 SKILL.md 。它将童锦程的认知框架注入 AI coding agent,使其能以童锦程的思维方式回答人际关系、恋爱、人性、个人成长类问题。 不是 :角色扮演、语录复读机、情感鸡汤生成器 是 :基于真实素材提炼的思维框架,用于分析具体问题 仓库结构 tong-jincheng-skill/ ├── SKILL.md ...
466
7282 pair-trade-screener tradermonty/claude-trading-skills
Pair Trade Screener Overview This skill identifies and analyzes statistical arbitrage opportunities through pair trading. Pair trading is a market-neutral strategy that profits from the relative price movements of two correlated securities, regardless of overall market direction. The skill uses rigorous statistical methods including correlation analysis and cointegration testing to find robust trading pairs. Core Methodology: Identify pairs of stocks with high correlation and similar sector/indu...
466
7283 webgpu-threejs-tsl dgreenheck/webgpu-claude-skill
WebGPU Three.js with TSL TSL (Three.js Shading Language) is a node-based shader abstraction that lets you write GPU shaders in JavaScript instead of GLSL/WGSL strings. Quick Start import * as THREE from 'three/webgpu'; import { color, time, oscSine } from 'three/tsl'; const renderer = new THREE.WebGPURenderer(); await renderer.init(); const material = new THREE.MeshStandardNodeMaterial(); material.colorNode = color(0xff0000).mul(oscSine(time)); Skill Contents Documentation docs/core-concept...
466
7284 domain-iot actionbook/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 ...
466
7285 langfuse sickn33/antigravity-awesome-skills
Langfuse This skill helps you use Langfuse effectively across all common workflows: instrumenting applications, migrating prompts, debugging traces, and accessing data programmatically. Core Principles Follow these principles for ALL Langfuse work: Documentation First : NEVER implement based on memory. Always fetch current docs before writing code (Langfuse updates frequently) See the section below on how to access documentation. CLI for Data Access : Use langfuse-cli when querying/modifying Lan...
466
7286 remotion-best-practices sickn33/antigravity-awesome-skills
When to use Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge. Captions When dealing with captions or subtitles, load the ./rules/subtitles.md file for more information. Using FFmpeg For some video operations, such as trimming videos or detecting silence, FFmpeg should be used. Load the ./rules/ffmpeg.md file for more information. Audio visualization When needing to visualize audio (spectrum bars, waveforms, bass-reactive effects), load the ./rul...
466
7287 email-systems sickn33/antigravity-awesome-skills
Email Systems You are an email systems engineer who has maintained 99.9% deliverability across millions of emails. You've debugged SPF/DKIM/DMARC, dealt with blacklists, and optimized for inbox placement. You know that email is the highest ROI channel when done right, and a spam folder nightmare when done wrong. You treat deliverability as infrastructure, not an afterthought. Patterns Transactional Email Queue Queue all transactional emails with retry logic and monitoring Email Event Trackin...
466
7288 live-activities dpearson2699/swift-ios-skills
Live Activities and Dynamic Island Build real-time, glanceable experiences on the Lock Screen, Dynamic Island, StandBy, CarPlay, and Mac menu bar using ActivityKit. Patterns target iOS 26+ with Swift 6.2, backward-compatible to iOS 16.1 unless noted. See references/live-activity-patterns.md for complete code patterns including push payload formats, concurrent activities, state observation, and testing. Contents Workflow ActivityAttributes Definition Activity Lifecycle Lock Screen Presentation Dy...
465
7289 playwriter supercent-io/skills-template
Quick Start Get a session ID first playwriter session new => 1 Execute code with your session playwriter -s 1 -e "await page.goto('https://example.com')" playwriter -s 1 -e "console.log(await accessibilitySnapshot({ page }))" playwriter -s 1 -e "await page.screenshot({ path: 'shot.png', scale: 'css' })" If playwriter is not found, use npx playwriter@latest or bunx playwriter@latest. Full Documentation Always run playwriter skill to get the complete, up-to-date skill instructions. The sk...
465
7290 frontend-patterns sickn33/antigravity-awesome-skills
Frontend Development Patterns Modern frontend patterns for React, Next.js, and performant user interfaces. When to Activate Building React components (composition, props, rendering) Managing state (useState, useReducer, Zustand, Context) Implementing data fetching (SWR, React Query, server components) Optimizing performance (memoization, virtualization, code splitting) Working with forms (validation, controlled inputs, Zod schemas) Handling client-side routing and navigation Building accessible,...
465
7291 react-component-architecture aj-geddes/useful-ai-prompts
Build scalable, maintainable React components using modern patterns including functional components, hooks, composition, and TypeScript for type safety. When to Use - Component library design - Large-scale React applications - Reusable UI patterns - Custom hooks development - Performance optimization Implementation Examples 1. Functional Component with Hooks ``` // Button.tsx import React, { useState, useCallback } from 'react'; interface ButtonProps { variant?: 'primary' | 'secon...
465
7292 notion-knowledge-capture davila7/claude-code-templates
Knowledge Capture Convert conversations and notes into structured, linkable Notion pages for easy reuse. Quick start Clarify what to capture (decision, how-to, FAQ, learning, documentation) and target audience. Identify the right database/template in reference/ (team wiki, how-to, FAQ, decision log, learning, documentation). Pull any prior context from Notion with Notion:notion-search → Notion:notion-fetch (existing pages to update/link). Draft the page with Notion:notion-create-pages using the ...
465
7293 ux-writing owl-listener/designer-skills
UX Writing Write clear, concise, user-centered interface copy (UX text/microcopy) for digital products and experiences. This skill provides frameworks, patterns, and best practices for creating text that helps users accomplish their goals. Compatible with: Claude Desktop, Claude Code, and Codex (CLI and IDE extensions) Note: This skill works with Codex CLI/IDE, not ChatGPT. ChatGPT cannot install or use skills. When to Use This Skill Use this skill when: Writing interface copy (buttons, la...
465
7294 sequelize mindrally/skills
Sequelize Development Guidelines You are an expert in Sequelize ORM, Node.js, and database design with a focus on model associations, migrations, and data integrity. Core Principles Sequelize is a promise-based ORM for Node.js and TypeScript Supports PostgreSQL, MySQL, MariaDB, SQLite, and Microsoft SQL Server Uses model definitions with DataTypes for schema declaration Provides comprehensive support for associations, transactions, and hooks Migrations should be used for all schema changes in ...
465
7295 react-best-practices sickn33/antigravity-awesome-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...
465
7296 architecture davila7/claude-code-templates
/architecture If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Create an Architecture Decision Record (ADR) or evaluate a system design. Usage /architecture $ARGUMENTS Modes Create an ADR : "Should we use Kafka or SQS for our event bus?" Evaluate a design : "Review this microservices proposal" System design : "Design the notification system for our app" See the system-design skill for detailed frameworks on requirements gathering, scalability ana...
465
7297 brainstorming davila7/claude-code-templates
Brainstorming Ideas Into Designs Help turn ideas into fully formed designs and specs through natural collaborative dialogue. Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval. Anti-Pattern: "This Is Too Simple To Need A Design" Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are ...
465
7298 data-engineering-data-pipeline sickn33/antigravity-awesome-skills
Data Pipeline Architecture You are a data pipeline architecture expert specializing in scalable, reliable, and cost-effective data pipelines for batch and streaming data processing. Use this skill when Working on data pipeline architecture tasks or workflows Needing guidance, best practices, or checklists for data pipeline architecture Do not use this skill when The task is unrelated to data pipeline architecture You need a different domain or tool outside this scope Requirements $ARGUMENTS Core...
465
7299 msgraph merill/msgraph
Microsoft Graph Agent Skill Search, look up, and call any of the 27,700+ Microsoft Graph APIs — all locally, no network calls needed. Use the three search commands to find the right endpoint, check permissions and parameters, then optionally execute calls directly or hand off to a Graph MCP server. What's Included The Microsoft Graph API has 27,700+ endpoints updated weekly — well past LLM training cutoffs. This skill bundles the complete API surface as local indexes that you search instantly wi...
465
7300 pulumi-terraform-to-pulumi pulumi/agent-skills
First establish scope and plan the migration by working out with the user: - where the Terraform sources are (`${terraform_dir}`) - where the migrated Pulumi project lives (`${pulumi_dir}`) - what is the target Pulumi language (such as TypeScript, Python, YAML) - whether migration aims to setup Pulumi stack states, or only translate source code Confirm the plan with the user before proceeding. Create a new Pulumi project in `${pulumi_dir}` in the chosen language. Edit sources to be empty a...
465