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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,660
总 Skills
168.0M
总安装量
2,751
贡献者
# Skill 仓库 描述 安装量
16051 context-mate jezweb/claude-skills
Context Mate A toolkit that works with Claude Code's natural flow. Use what helps, ignore what doesn't. When This Skill Activates When context-mate is invoked, analyze the project first before recommending tools. Step 1: Quick Project Scan Check for these files (use Glob, don't read contents yet): File/Pattern Indicates SESSION.md Session tracking active IMPLEMENTATION_PHASES.md Phased planning in use PROJECT_BRIEF.md Project explored/planned CLAUDE.md or .claude/ AI context exists .claude/rules...
144
16052 security-review zackkorman/skills
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management Show more Installs 1.9K Repository affaan-m/ecc GitHub Stars 239.2K First Se...
144
16053 commit casper-studios/casper-marketplace
Sentry Commit Messages Follow these conventions when creating commits for Sentry projects. Prerequisites Before committing, always check the current branch: git branch --show-current If you're on main or master , you MUST create a feature branch first — unless the user explicitly asked to commit to main. Do not ask the user whether to create a branch; just proceed with branch creation. The create-branch skill will still propose a branch name for the user to confirm. Use the create-branch skill t...
143
16054 stripe-subscriptions andrelandgraf/fullstackrecipes
Stripe Subscriptions Complete subscription billing system with Stripe integration, feature flags for plan gating, webhook handling, and billing portal. Prerequisites Complete these recipes first (in order): Type-Safe Environment Configuration Type-safe environment variable validation using Zod with a Drizzle-like schema API. Supports server/public fields, feature flags, either-or constraints, and client-side protection. curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recip...
143
16055 devtu-create-tool mims-harvard/tooluniverse
ToolUniverse Tool Creator Create new scientific tools following established patterns. Top 7 Mistakes (90% of Failures) Missing default_config.py Entry — tools silently won't load Non-nullable Mutually Exclusive Parameters — validation errors (1 issue in 2026) Fake test_examples — tests fail, agents get bad examples Single-level Testing — misses registration bugs Skipping test_new_tools.py — misses schema/API issues Tool Names > 55 chars — breaks MCP compatibility Raising Exceptions — should retu...
143
16056 create-handoff casper-studios/casper-marketplace
Create Handoff You are tasked with writing a handoff document to hand off your work to another agent in a new session. You will create a handoff document that is thorough, but also concise. The goal is to compact and summarize your context without losing any of the key details of what you're working on. Process 1. Filepath & Metadata Use the following information to understand how to create your document: First, determine the session name from existing handoffs: ls -td thoughts/shared/hando...
143
16057 implement-plan casper-studios/casper-marketplace
Implement Plan You are tasked with implementing an approved technical plan from .claude/scratchpad/{plan_name}.md . These plans contain phases with specific changes and success criteria. If no file is provided, ask for one. Getting Started When given a plan path: Read the plan completely and check for any existing checkmarks (- [x]) Read the original ticket and all files mentioned in the plan Read files fully - never use limit/offset parameters, you need complete context Think deeply about how t...
142
16058 pseudo-elements raphaelsalaja/userinterface-wiki
Pseudo Elements Modern CSS pseudo-elements provide direct styling hooks into browser-native features—dialogs, popovers, view transitions—reducing the need for JavaScript. Sometimes you don't need to install a library; the browser has you covered. When to Apply Reference these guidelines when: Adding decorative elements without DOM nodes Implementing view transitions (image lightboxes, page transitions) Building hover/focus states Styling native browser UI components Reducing JavaScript for v...
142
16059 polishing casper-studios/casper-marketplace
Polishing A comprehensive workflow for finalizing code changes before creating a PR. This skill ensures code quality, consistency with codebase patterns, and removes common AI-generated artifacts. Workflow Step 1: Recover Branch Context Use the Skill tool to invoke recover-branch-context to understand what the branch is trying to accomplish. This provides essential context about: The purpose and goals of the current branch What changes have been made The intended functionality being implemented ...
142
16060 ai-tech-rss-fetch tiangong-ai/skills
AI Tech RSS Fetch Core Goal Subscribe to RSS/Atom sources. Persist feed and entry metadata to SQLite. Deduplicate entries with layered identity keys plus content fingerprints. Keep only metadata; do not fetch full article bodies and do not summarize. Triggering Conditions Receive a request to subscribe RSS feeds from URLs or OPML. Receive a request to run incremental RSS sync reliably. Need stable metadata persistence for downstream processing. Need dedupe-safe storage of feed items over repeate...
142
16061 terminaluse terminaluse/agent-skills
TerminalUse Build, deploy, interact with agents. Flow: init → deploy → create task → send messages. Full docs: https://docs.terminaluse.com/llms-full.txt Default Rule For New Agents When creating a new agent, use tu init by default. Only skip tu init if the user explicitly instructs another approach (for example, modifying an existing agent template or a pre-scaffolded repository). CLI Setup The tu CLI is provided by the terminaluse Python package. Before running any tu commands: Verify tu is av...
142
16062 create-tooluniverse-skill mims-harvard/tooluniverse
Create ToolUniverse Skill Systematic workflow for creating production-ready ToolUniverse skills. Core Principles Build on the 10 pillars from devtu-optimize-skills : TEST FIRST - never document untested tools Verify tool contracts - don't trust function names Handle SOAP tools - add operation parameter Implementation-agnostic docs - no Python/MCP code in SKILL.md Foundation first - query aggregators before specialized tools Disambiguate carefully - resolve IDs properly Implement fallbacks - Prim...
141
16063 csv-data-wrangler 404kidwiz/claude-supercode-skills
CSV Data Wrangler Purpose Provides expertise in efficient CSV file processing, data cleaning, and transformation. Handles large files, encoding issues, malformed data, and performance optimization for tabular data workflows. When to Use Processing large CSV files efficiently Cleaning and validating CSV data Transforming and reshaping datasets Handling encoding and delimiter issues Merging or splitting CSV files Converting between tabular formats Querying CSV with SQL (DuckDB) Quick Start Invo...
141
16064 webapp-testing skillcreatorai/ai-agent-skills
Web Application Testing To test local web applications, write native Python Playwright scripts. Helper Scripts Available : scripts/with_server.py - Manages server lifecycle (supports multiple servers) Always run scripts with --help first to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts ra...
141
16065 angular-rxjs-patterns thebushidocollective/han
Angular RxJS Patterns Master RxJS in Angular for handling async operations, data streams, and reactive programming patterns. Observable Creation Basic Observable Creation import { Observable, of, from, interval, fromEvent } from 'rxjs'; // of - emit values in sequence const numbers$ = of(1, 2, 3, 4, 5); // from - convert array, promise, or iterable const fromArray$ = from([1, 2, 3]); const fromPromise$ = from(fetch('/api/data')); // interval - emit numbers at intervals const timer$ = interv...
141
16066 tooluniverse-protein-therapeutic-design mims-harvard/tooluniverse
Therapeutic Protein Designer AI-guided de novo protein design using RFdiffusion backbone generation, ProteinMPNN sequence optimization, and structure validation for therapeutic protein development. KEY PRINCIPLES : Structure-first design - Generate backbone geometry before sequence Target-guided - Design binders with target structure in mind Iterative validation - Predict structure to validate designs Developability-aware - Consider aggregation, immunogenicity, expression Evidence-graded - Grade...
141
16067 recover-branch-context casper-studios/casper-marketplace
Recover Branch Context You are tasked with understanding the intent and current state of an existing branch so you can resume or continue work effectively. The code state is your primary source of truth - it may have drifted from any associated Linear ticket. Initial Response When this command is invoked, respond with: I'll help you understand the context of this branch. Let me analyze the commits and changes. Do you have a Linear ticket ID or URL for this work? (optional - I can proceed without...
141
16068 devtu-optimize-descriptions mims-harvard/tooluniverse
ToolUniverse Tool Description Optimization Optimize tool descriptions in ToolUniverse JSON configuration files to ensure they are clear, complete, and user-friendly. When to Apply This Skill Use when: Reviewing newly created tool descriptions User asks "are these tools easy to understand?" Improving existing tool documentation Adding new tools to ToolUniverse User mentions tool usability, clarity, or documentation Quick Optimization Checklist Tool Description Review: - [ ] Prerequisites stated (...
141
16069 skill-install cexll/myclaude
Skill Install Overview Install Claude skills from GitHub repositories with built-in security scanning to protect against malicious code, backdoors, and vulnerabilities. When to Use Trigger this skill when the user: Provides a GitHub repository URL and wants to install skills Asks to "install skills from GitHub" Wants to browse and select skills from a repository Needs to add new skills to their Claude environment Workflow Step 1: Parse GitHub URL Accept a GitHub repository URL from the user...
141
16070 openclaw-watchdog abdullah4ai/openclaw-watchdog
openclaw-watchdog Description: Self-healing monitoring system for OpenClaw gateway. Monitors health, auto-restarts on failure, and sends Telegram alerts. Diagnostics and log analysis run locally on-device. Alert notifications are sent to the user's Telegram bot. Use when user wants to set up gateway monitoring, watchdog, or auto-recovery. Prerequisites Telegram Bot Token — Create via @BotFather Telegram Chat ID — Your personal chat ID for receiving alerts Python 3 — Required for the watchdog ser...
141
16071 ccxt 2025emma/vibe-coding-cn
Ccxt Skill Comprehensive assistance with ccxt development, generated from official documentation. When to Use This Skill This skill should be triggered when: Working with ccxt Asking about ccxt features or APIs Implementing ccxt solutions Debugging ccxt code Learning ccxt best practices Quick Reference Common Patterns Pattern 1: Frequently Asked Questions I'm trying to run the code, but it's not working, how do I fix it? If your question is formulated in a short manner like the above, we wo...
141
16072 bump-deps casper-studios/casper-marketplace
Bump Dependencies Skill Update Node.js dependencies using taze CLI with smart prompting: auto-apply MINOR/PATCH updates, prompt for MAJOR updates individually, skip fixed-version packages. When package names are provided as arguments (e.g. /bump-deps react typescript ), scope all taze commands to only those packages using --include . When --dry-run is passed (e.g. /bump-deps --dry-run or /bump-deps --dry-run react ), scan for updates and present a summary table without applying any changes . See...
140
16073 pptx skillcreatorai/ai-agent-skills
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 → ...
140
16074 extract-my-action-items casper-studios/casper-marketplace
Extract Action Items Extract action items from a Fireflies transcript using parallel subagents. Catches items automated summaries miss. Two modes: All attendees (default): No target specified — extract action items for every participant Single person: Target specified — extract action items for that person only Phase 1: Determine Mode Parse the user's invocation: If a target person is specified → single-person mode Otherwise → all-attendees mode Extract the search criteria (date, keyword, or tra...
140
16075 workflow-orchestration vxcozy/workflow-orchestration
Workflow Orchestration Apply these practices for disciplined, high-quality task execution. Quick Reference Practice When to Apply Plan Mode Any task with 3+ steps or architectural decisions Subagents Research, exploration, parallel analysis Lessons After ANY user correction Verification Before marking any task complete Elegance Check Non-trivial changes only 1. Plan Mode Default Enter plan mode for ANY non-trivial task (3+ steps or architectural decisions) If something goes sideways, STOP and re...
140
16076 tooluniverse-drug-repurposing mims-harvard/tooluniverse
Drug Repurposing with ToolUniverse Systematically identify and evaluate drug repurposing candidates using multiple computational strategies. IMPORTANT : Always use English terms in tool calls. Respond in the user's language. Core Strategies Target-Based : Disease targets -> Find drugs that modulate those targets Compound-Based : Approved drugs -> Find new disease indications Disease-Driven : Disease -> Targets -> Match to existing drugs Workflow Overview Phase 1: Disease & Target Analysis Get di...
139
16077 frontend-engineer siviter-xyz/dot-agent
Frontend Engineer Comprehensive guide for modern React development, emphasizing Suspense-based data fetching, lazy loading, proper file organization, and performance optimization. When to Use Creating new components or pages Building new features Fetching data with TanStack Query Setting up routing with TanStack Router Styling components Performance optimization Organizing frontend code TypeScript best practices Quick Start New Component Checklist Use React.FC<Props> pattern with TypeScript ...
139
16078 nansen-search nansen-ai/nansen-cli
Search nansen research search "jupiter" --type token nansen research search "Vitalik" --type entity --limit 5 nansen research search "bonk" --chain solana --fields address,name,symbol,chain Flag Purpose --type token or entity --chain Filter by chain --limit Number of results (default 25, max 50) --fields Select specific output fields Case-insensitive. Does NOT match by address — use profiler labels for address lookup.
139
16079 typography petekp/agent-skills
Typography Professional typography for user interfaces, grounded in principles from the masters. "Typography exists to honor content." — Robert Bringhurst Reference Files For detailed guidance on specific topics, consult these references: Topic When to Read masters.md Seeking authoritative backing, making nuanced judgments, understanding "why" variable-fonts.md Using variable fonts, fluid weight, performance optimization font-loading.md FOIT/FOUT issues, preloading, Core Web Vitals, self-ho...
139
16080 deep-research actionbook/actionbook
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
139
16081 business analyst aj-geddes/claude-code-bmad-skills
Business Analyst Role: Phase 1 - Analysis specialist Function: Conduct product discovery, research, and create product briefs Responsibilities Execute analysis workflows Conduct stakeholder interviews Perform market/competitive research Discover user needs and problems Create product briefs Guide problem-solution exploration Set foundation for planning phase Core Principles Start with Why - Understand the problem before solutioning Data Over Opinions - Base decisions on research and evidence Use...
138
16082 fullstack-developer 404kidwiz/claude-supercode-skills
Full-Stack Developer You are an expert full-stack web developer specializing in modern JavaScript/TypeScript stacks with React, Node.js, and databases. When to Apply Use this skill when: Building complete web applications Developing REST or GraphQL APIs Creating React/Next.js frontends Setting up databases and data models Implementing authentication and authorization Deploying and scaling web applications Integrating third-party services Technology Stack Frontend React - Modern component pattern...
138
16083 frontend-designer jamesrochabrun/skills
Frontend Designer A comprehensive skill for frontend designers and developers to build beautiful, accessible, and performant user interfaces with modern best practices. What This Skill Does Helps frontend designers/developers with: Component Design & Development - Build reusable, accessible components Design Systems - Implement tokens, patterns, and documentation Responsive Design - Mobile-first, fluid layouts Accessibility (WCAG 2.1) - Inclusive design patterns Modern CSS - Flexbox, Grid, c...
138
16084 tooluniverse-infectious-disease mims-harvard/tooluniverse
Infectious Disease Outbreak Intelligence Rapid response system for emerging pathogens using taxonomy analysis, target identification, structure prediction, and computational drug repurposing. KEY PRINCIPLES : Speed is critical - Optimize for rapid actionable intelligence Target essential proteins - Focus on conserved, essential viral/bacterial proteins Leverage existing drugs - Prioritize FDA-approved compounds for repurposing Structure-guided - Use NvidiaNIM for rapid structure prediction and d...
138
16085 marketing-content-strategy vasilyu1983/ai-agents-public
CONTENT STRATEGY - POSITIONING & TRUST OS (OPERATIONAL) Built as a no-fluff execution skill for content strategy, positioning, and trust-building. Structure: Core frameworks first. Fintech/sensitive data examples throughout. AI-specific automation in clearly labeled "Optional: AI / Automation" sections. Modern Best Practices (Jan 2026): Start from positioning (who you're for, what you replace, why you win), then derive messaging hierarchy. Build trust signals before scaling traffic. Low trus...
138
16086 tooluniverse-binder-discovery mims-harvard/tooluniverse
Small Molecule Binder Discovery Strategy Systematic discovery of novel small molecule binders using 60+ ToolUniverse tools across druggability assessment, known ligand mining, similarity expansion, ADMET filtering, and synthesis feasibility. KEY PRINCIPLES : Report-first approach - Create report file FIRST, then populate progressively Target validation FIRST - Confirm druggability before compound searching Multi-strategy approach - Combine structure-based and ligand-based methods ADMET-aware fil...
138
16087 codeagent cexll/myclaude
Codeagent Wrapper Integration Overview Execute codeagent-wrapper commands with pluggable AI backends (Codex, Claude, Gemini). Supports file references via @ syntax, parallel task execution with backend selection, and configurable security controls. When to Use Complex code analysis requiring deep understanding Large-scale refactoring across multiple files Automated code generation with backend selection Usage HEREDOC syntax (recommended): codeagent-wrapper --backend codex - [ working_dir ] << 'E...
138
16088 threejs-pro 404kidwiz/claude-supercode-skills
Three.js & WebGL Developer Purpose Provides 3D web graphics expertise specializing in Three.js, React Three Fiber (R3F), and custom GLSL shader development. Creates immersive 3D experiences for the web with performance optimization and declarative scene management. When to Use Building 3D product configurators or landing pages Implementing custom shaders (GLSL) for visual effects Optimizing 3D scenes (Draco compression, texture resizing) Developing React Three Fiber (R3F) applications Integrat...
138
16089 axiom-ios-graphics charleswiltgen/axiom
iOS Graphics Router You MUST use this skill for ANY GPU rendering, graphics programming, or display performance work. When to Use Use this router when: Porting OpenGL/OpenGL ES code to Metal Porting DirectX code to Metal Converting GLSL/HLSL shaders to Metal Shading Language Setting up MTKView or CAMetalLayer Debugging GPU rendering issues (black screen, wrong colors, crashes) Evaluating translation layers (MetalANGLE, MoltenVK) Optimizing GPU performance or fixing thermal throttling App stu...
137
16090 parallel-research casper-studios/casper-marketplace
Parallel Research Overview Deep web research, competitive intelligence, entity discovery, and data enrichment using Parallel AI's specialized APIs. Quick Decision Tree What do you need? │ ├── Quick factual answer (3-5 seconds) │ └── Chat API ($0.005/request) │ └── Script: scripts/parallel_research.py chat "question" │ ├── Comprehensive research report (5min-2hr) │ └── Deep Research API ($0.30/report for ultra) │ └── Script: scripts/parallel_research.py research "topic" │ ├── Find entitie...
137
16091 landing-page-vercel shipshitdev/library
Landing Page (Vercel) Create a production-ready static landing page with: Structure: Semantic HTML5 + Modern CSS + Vanilla JS Form: Working email capture (Formspree or custom endpoint) Analytics: Plausible/Fathom ready Design: Responsive, accessible, performant Deploy: One-click Vercel deployment What Makes This Different This skill generates working landing pages, not empty templates: Real email capture form that actually submits Analytics integration ready to activate Responsive design tes...
137
16092 axiom-swiftui-containers-ref charleswiltgen/axiom
SwiftUI Containers Reference Stacks, grids, outlines, and scroll enhancements. iOS 14 through iOS 26. Sources: WWDC 2020-10031, 2022-10056, 2023-10148, 2024-10144, 2025-256 Quick Decision Use Case Container iOS Fixed views vertical/horizontal VStack / HStack 13+ Overlapping views ZStack 13+ Large scrollable list LazyVStack / LazyHStack 14+ Multi-column grid LazyVGrid 14+ Multi-row grid (horizontal) LazyHGrid 14+ Static grid, precise alignment Grid 16+ Hierarchical data (tree) List with childr...
137
16093 axiom-xctest-automation charleswiltgen/axiom
XCUITest Automation Patterns Comprehensive guide to writing reliable, maintainable UI tests with XCUITest. Core Principle Reliable UI tests require three things: Stable element identification (accessibilityIdentifier) Condition-based waiting (never hardcoded sleep) Clean test isolation (no shared state) Element Identification The Accessibility Identifier Pattern ALWAYS use accessibilityIdentifier for test-critical elements. // SwiftUI Button("Login") { ... } .accessibilityIdentifier("l...
137
16094 regression-testing proffesor-for-testing/agentic-qe
<default_to_action> When verifying changes don't break existing functionality: - ANALYZE what changed (git diff, impact analysis) - SELECT tests based on change + risk (not everything) - RUN in priority order (smoke → selective → full) - OPTIMIZE execution (parallel, sharding) - MONITOR suite health (flakiness, execution time) Quick Regression Strategy: - Per-commit: Smoke + changed code tests (5-10 min) - Nightly: Extended regression (30-60 min) - Pre-release: Full regression (2-4 hour...
137
16095 nansen-token nansen-ai/nansen-cli
Token Deep Dive All commands: nansen research token <sub> [options] --chain required for spot endpoints. Use --token <address> for token-specific endpoints. Info & Price nansen research token info --token < addr > --chain solana nansen research token ohlcv --token < addr > --chain solana --timeframe 1h Timeframes: 1m , 5m , 15m , 30m , 1h , 2h , 4h , 1d , 1w , 1M Holders nansen research token holders --token < addr > --chain solana nansen research token holders --token < addr > --chain solana --...
136
16096 ci-cd ahmedasmar/devops-claude-skills
CI/CD Pipelines Comprehensive guide for CI/CD pipeline design, optimization, security, and troubleshooting across GitHub Actions, GitLab CI, and other platforms. When to Use This Skill Use this skill when: Creating new CI/CD workflows or pipelines Debugging pipeline failures or flaky tests Optimizing slow builds or test suites Implementing caching strategies Setting up deployment workflows Securing pipelines (secrets, OIDC, supply chain) Implementing DevSecOps security scanning (SAST, DAST, ...
136
16097 frontend-design skillcreatorai/ai-agent-skills
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
136
16098 apify-scrapers casper-studios/casper-marketplace
Apify Scrapers Overview Scrape content from major social platforms using Apify actors. Each platform has optimized settings for cost and quality. Quick Decision Tree What do you want to scrape? │ ├── Social Media Posts │ ├── Twitter/X → references/twitter.md │ │ └── Script: scripts/scrape_twitter_ai_trends.py │ │ │ ├── Reddit → references/reddit.md │ │ └── Script: scripts/scrape_reddit_ai_tech.py │ │ │ ├── LinkedIn → references/linkedin.md │ │ └── Script: scripts/scrape_lin...
136
16099 postgresql 2025emma/vibe-coding-cn
PostgreSQL Table Design Use this skill when Designing a schema for PostgreSQL Selecting data types and constraints Planning indexes, partitions, or RLS policies Reviewing tables for scale and maintainability Do not use this skill when You are targeting a non-PostgreSQL database You only need query tuning without schema changes You require a DB-agnostic modeling guide Instructions Capture entities, access patterns, and scale targets (rows, QPS, retention). Choose data types and constraints that e...
136
16100 nestjs-queue-architect shipshitdev/library
NestJS Queue Architect - BullMQ Expert You are a senior queue architect specializing in BullMQ with NestJS. Design resilient, scalable job processing systems for media-heavy workflows. Technology Stack BullMQ: 5.61.0 (Redis-backed job queue) @nestjs/bullmq: 11.0.4 @bull-board/nestjs: 6.13.1 (Queue monitoring UI) Project Context Discovery Before implementing: Check .agent/SYSTEM/ARCHITECTURE.md for queue patterns Review existing queue services and constants Look for [project]-queue-architect ...
136