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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,424
总 Skills
34.8M
总安装量
2,439
贡献者
# Skill 仓库 描述 安装量
14051 sqlmodel-expert bilalmk/todo_correct
Advanced SQLModel patterns and comprehensive Alembic migrations for production databases. Quick Start Define a Basic Model ``` from sqlmodel import Field, SQLModel from typing import Optional from datetime import datetime class Task(SQLModel, table=True): id: Optional[int] = Field(default=None, primary_key=True) title: str = Field(index=True) description: Optional[str] = None completed: bool = Field(default=False) created_at: datetime = Field(default_factory=datetime.ut...
60
14052 chrome-devtools secondsky/claude-skills
Chrome DevTools Agent Overview A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling. When to Use Use this skill when: Browser Automation : Navigating pages, clicking elements, filling forms, and handling dialogs. Visual Inspection : Taking screenshots or text snapshots of web pages. Debugging : Inspecting console messag...
60
14053 b2c-metadata salesforcecommercecloud/b2c-developer-tooling
Metadata Skill This skill guides you through working with site metadata XML for Salesforce B2C Commerce, including custom attributes, custom objects, and site preferences. Overview Metadata defines the structure of your B2C Commerce data: Metadata Type Purpose System Object Extensions Add custom attributes to Products, Orders, Customers, etc. Custom Objects Define entirely new data types Site Preferences Site-specific configuration values Site Archive Structure Metadata is organized in site arch...
60
14054 fastmcp-server davila7/claude-code-templates
FastMCP 3.0 Server Development Complete reference for building production-ready MCP (Model Context Protocol) servers with FastMCP 3.0 - the fast, Pythonic framework for connecting LLMs to tools and data. When to use this skill Use FastMCP Server when: Creating a new MCP server in Python Adding tools, resources, or prompts to an MCP server Implementing authentication (OAuth, OIDC, token verification) Setting up middleware for logging, rate limiting, or authorization Configuring providers (local, ...
60
14055 revealjs kziemski/revealjs-skill
Reveal.js Presentations Create HTML presentations using reveal.js. No build step required - just open the HTML in a browser. What You Create A reveal.js presentation consists of: HTML file - Contains slides and loads reveal.js from CDN CSS file - Custom styles for layouts, colors, typography, and components Design Principles CRITICAL: Before creating any presentation, analyze the content and choose appropriate design elements: Consider the subject matter: What is this presentation about? W...
60
14056 walkthrough alexanderop/walkthrough
No SKILL.md available for this skill. View on GitHub
60
14057 sqlserver-expert fabriciofs/mcp-postgres
SQL Server Expert You are a DBA and developer expert in Microsoft SQL Server. T-SQL Advanced CTEs (Common Table Expressions) WITH RankedUsers AS ( SELECT Id , Name , Email , ROW_NUMBER ( ) OVER ( PARTITION BY Department ORDER BY HireDate ) AS RowNum FROM Users ) SELECT * FROM RankedUsers WHERE RowNum = 1 ; Window Functions SELECT OrderId , OrderDate , Amount , SUM ( Amount ) OVER ( ORDER BY OrderDate ) AS RunningTotal , LAG ( Amount ) OVER ( ORDER BY OrderDate ) AS PreviousAmount , AVG ( Amount ...
60
14058 swain-release cristoslc/swain
Release Cut a release by detecting the project's versioning context, generating a changelog, bumping versions, and tagging. Works across any repo by reading context from git history and project structure rather than hardcoding assumptions. Override file Before starting, read .agents/release.override.skill.md if it exists. This is a freeform markdown file authored by the project owner whose instructions layer on top of this skill — its contents take precedence where they conflict. It can narrow d...
60
14059 hig-components-system raintree-technology/apple-hig-skills
Apple HIG: System Experiences Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Glanceable, immediate value. System experiences bring your app's most important content to surfaces the user sees without launching your app. Design for seconds of attention. Respect platform context. A Lock Screen widget has different constraints than a Home Screen widget. A complication is far smaller than a top s...
60
14060 data-quality-auditor dkyazzentwatwa/chatgpt-skills
Data Quality Auditor Comprehensive data quality assessment for CSV/Excel datasets. Features Completeness: Missing values analysis Uniqueness: Duplicate detection Validity: Type validation and constraints Consistency: Pattern and format checks Quality Score: Overall data quality metric Reports: Detailed HTML/JSON reports Quick Start from data_quality_auditor import DataQualityAuditor auditor = DataQualityAuditor() auditor.load_csv("customers.csv") Run full audit report = auditor.audit() prin...
60
14061 theme-shopify-liquid-templates niccos-shopify-workspace/shopify-cursor-skills
Shopify Liquid Templates Best practices for Liquid templates, snippets, logic flow, image handling, and SVG usage in Shopify themes. When to Use Creating or modifying Liquid templates Working with snippets Handling images and media Writing Liquid logic Using SVG icons Snippets Usage Use {% render %} only (never include ) Inside each snippet, add a Usage block at the top Snippet Structure {%- comment -%} Usage: {% render 'snippet-name' , param : value , another_param : value %} {%- endcomment -%}...
60
14062 web-design-guidelines connorads/dotfiles
Web Interface Guidelines Review files for compliance with Web Interface Guidelines. How It Works Fetch the latest guidelines from the source URL below Read the specified files (or prompt user for files/pattern) Check against all rules in the fetched guidelines Output findings in the terse file:line format Guidelines Source Fetch fresh guidelines before each review: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md Use WebFetch to retrieve the latest rules. Th...
60
14063 constraint-eliminator shipshitdev/library
Constraint Eliminator - Obstacle Removal System Overview You are a customer success architect specializing in Alex Hormozi's obstacle elimination principles. You help indie founders identify every friction point between customers and success, then systematically remove them. Your job is to execute friction elimination—not just advise—by mapping obstacles and designing done-for-you solutions. Hormozi's Core Principle: "The business that removes the most obstacles wins. Make it impossible for yo...
60
14064 spec-test-suites zixun-github/aisdlc
Spec 测试套件(V3:Suites) 把 usecase.md 里的用例编号组织成可执行集合( smoke / regression / targeted ),并明确 执行顺序、依赖与阻断口径 。 输入与门禁(必须遵守) REQUIRED SUB-SKILL:正在执行 spec-context 获取上下文,并在对话中回显 FEATURE_DIR=... (允许 (reuse) )。 必读项目级 memory : project/memory/product.md 、 project/memory/tech.md 、 project/memory/glossary.md ;读不到必须写 CONTEXT GAP 。 输入依赖 : {FEATURE_DIR}/verification/usecase.md 与 {FEATURE_DIR}/verification/test-plan.md 应已存在;缺失时必须写 CONTEXT GAP 并停止(避免凭空编排)。 套件必须可定位 :套件条目必须指向具体用例编号(禁止“覆盖登录流程”这类模糊描述)。 输出(落盘) {FEATURE_DIR}/...
60
14065 create-beads-orchestration avivk5498/claude-code-beads-orchestration
Create Beads Orchestration Set up lightweight multi-agent orchestration with git-native task tracking for Claude Code. What This Skill Does This skill bootstraps a complete multi-agent workflow where: Orchestrator (you) investigates issues, manages tasks, delegates implementation Supervisors (specialized agents) execute fixes in isolated worktrees Beads CLI tracks all work with git-native task management Hooks enforce workflow discipline automatically Each task gets its own worktree at .worktree...
60
14066 tsconfig-json-rules oimiragieo/agent-studio
Tsconfig Json Rules Skill Implement strict TypeScript checks Memory Protocol (MANDATORY) Before starting: cat .claude/context/memory/learnings.md After completing: Record any new patterns or exceptions discovered. ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
60
14067 umbraco-tree-item umbraco/umbraco-cms-backoffice-skills
Umbraco Tree Item What is it? Tree Items define how entities are rendered in tree structures throughout the Umbraco backoffice. They control the visual representation and behavior of items in sidebars and navigation trees. Tree items are associated with entity types and can be customized to display additional information, icons, or custom rendering for specific entity types. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizi...
60
14068 ctf-solver hacktronai/skills
CTF Solver IMPORTANT: This skill activates when a user provides a CTF challenge with a description, source code, and/or environment endpoint. Your goal is to act as an expert CTF player and capture the flag. Critical Rules ALWAYS prefer Python scripts for testing and exploitation: Write standalone Python scripts using requests for HTTP interactions Use socket with timeouts for TCP connections (never interactive) Scripts should be non-blocking and output results to stdout NEVER use blocking/...
60
14069 nix i9wa4/dotfiles
Nix Skill 1. nix build YOU MUST: Always use --no-link option with nix build nix build . rumdl --no-link IMPORTANT: Before running nix build or nix flake check , ensure all new files are git-tracked. Nix flakes only see files committed or staged in git. git add < new-files > nix build . target --no-link IMPORTANT: Without --no-link , a ./result symlink is created 2. nix run IMPORTANT: Packages registered in packages can be run with nix run nix run . pike -- scan -d ./terraform 3. Adding Custom Pa...
60
14070 muapi-logo-creator samuraigpt/generative-media-skills
🖼️ Logo Creator Skill A specialized skill for AI Agents to engineer professional-grade brand identities. The Logo Creator skill translates brand vision into minimalist, scalable, and iconic vector-style marks. Core Competencies Geometric Primitive Construction : Using basic shapes (circles, squares, triangles) to create memorable icons. Negative Space Manipulation : Integrating secondary meanings through the strategic use of empty space. Symbolic Abstraction : Reducing complex brand concepts int...
60
14071 mobile-app-debugging secondsky/claude-skills
Mobile App Debugging Overview Mobile app debugging addresses platform-specific issues, device hardware limitations, and mobile-specific network conditions. When to Use App crashes on mobile Performance issues on device Platform-specific bugs Network connectivity issues Device-specific problems Instructions 1. iOS Debugging Xcode Debugging: Attach Debugger: - Xcode → Run on device - Set breakpoints in code - Step through execution - View variables - Console logs View Logs: - Xcode...
60
14072 umbraco-tree umbraco/umbraco-cms-backoffice-skills
Umbraco Tree What is it? A tree in Umbraco is a hierarchical structure of nodes registered in the Backoffice extension registry. Trees display organized content hierarchies and can be rendered anywhere in the Backoffice using the <umb-tree /> element. They require a data source implementation to fetch root items, children, and ancestors. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/extending-overview/extension-types/...
60
14073 github i9wa4/dotfiles
GitHub Patterns Tools Use gh CLI for all GitHub operations. Prefer CLI over GitHub MCP servers for lower context usage. Quick Commands Create a PR from the current branch gh pr create --title "feat: add feature" --body "Description" Squash-merge a PR gh pr merge < PR_NUMBER > --squash --title "feat: add feature (<PR_NUMBER>)" View PR status and checks gh pr status gh pr checks < PR_NUMBER > Stacked PR Workflow Summary When merging a chain of stacked PRs (each targeting the previous branch): M...
60
14074 multi-agent-e2e-validation terrylica/cc-skills
Prescriptive workflow for spawning parallel validation agents to comprehensively test database refactors. Successfully identified 5 critical bugs (100% system failure rate) in QuestDB migration that would have shipped in production. When to use this skill: - Database refactors (e.g., v3.x file-based → v4.x QuestDB) - Schema migrations requiring validation - Bulk data ingestion pipeline testing - System migrations with multiple validation layers - Pre-release validation for database-centric...
60
14075 dont-repeat-yourself yanko-belov/code-craft
DRY (Don't Repeat Yourself) Overview Every piece of knowledge must have a single, unambiguous representation in the system. If you find yourself writing the same logic twice, extract it. Duplication is a bug waiting to happen. When to Use Writing code similar to existing code Copy-pasting and modifying Making the same change in multiple files Validation logic repeated across forms Same calculations in different places The Iron Rule NEVER duplicate logic. Extract and reuse. No exceptions: N...
60
14076 veo-use cnemri/google-genai-skills
Veo Use Use this skill to generate and edit videos using Google's Veo models ( veo-3.1 and veo-2.0 ). This skill uses portable Python scripts managed by uv . Prerequisites Ensure you have one of the following authentication methods configured in your environment: API Key : GOOGLE_API_KEY or GEMINI_API_KEY Vertex AI : GOOGLE_CLOUD_PROJECT GOOGLE_CLOUD_LOCATION GOOGLE_GENAI_USE_VERTEXAI=1 Usage 1. Text to Video Generate a video purely from a text description. uv run skills/veo-use/scripts/text_to_...
60
14077 python-pytest-patterns 0xdarkmatter/claude-mods
Modern pytest patterns for effective testing. Basic Test Structure ``` import pytest def test_basic(): """Simple assertion test.""" assert 1 + 1 == 2 def test_with_description(): """Descriptive name and docstring.""" result = calculate_total([1, 2, 3]) assert result == 6, "Sum should equal 6" ``` Fixtures ``` import pytest @pytest.fixture def sample_user(): """Create test user.""" return {"id": 1, "name": "Test User"} @pytest.fixture def db_connection(): ...
60
14078 skill-integrator jwynia/agent-skills
Skill Integrator: Surface Skills Where They're Needed You bridge the gap between installed skills and agent awareness. Your role is to analyze project context, score installed skills for relevance, and generate actionable trigger-based guidance that gets inserted into CLAUDE.md or AGENTS.md. Core Principle Skills only help when agents know to reach for them. A hundred installed skills are useless if the agent doesn't know when each one applies. This skill transforms a silent inventory into activ...
60
14079 erk-exec dagster-io/erk
erk exec Guide Quick Start Before running any erk exec command, check syntax with -h : erk exec < command > -h Commands by Workflow PR Review Operations When addressing PR review comments or resolving threads: Command Purpose get-pr-review-comments Fetch review comments (use --pr N ) resolve-review-thread Resolve a thread (use --thread-id ) reply-to-discussion-comment Reply to discussion comment get-pr-discussion-comments Fetch discussion comments Typical workflow: erk exec get-pr-review-comment...
60
14080 figma-reader delexw/claude-code-misc
Figma Reader Read Figma design context via the Figma MCP server. Arguments $ARGUMENTS[0] — Figma link, design prompt copied from Figma, or attached UI design image (optional) $ARGUMENTS[1] — (optional) Output directory for persisting the design context. Defaults to .implement-assets/figma When invoked by the orchestrator (e.g. implement ), $ARGUMENTS[1] is provided. When used standalone, it defaults to .implement-assets/figma . Execution Codebase check : Verify this is a frontend project — follo...
60
14081 capacitor-splash-screen cap-go/capacitor-skills
Splash Screen in Capacitor Configure and customize splash screens for iOS and Android. When to Use This Skill User wants to customize splash screen User needs splash screen assets User wants animated splash User has splash screen issues Quick Start Install Plugin bun add @capacitor/splash-screen bunx cap sync Basic Configuration // capacitor.config.ts import type { CapacitorConfig } from '@capacitor/cli' ; const config : CapacitorConfig = { plugins : { SplashScreen : { launchShowDuration : 2000 ...
60
14082 pr-operations dagster-io/erk
PR Operations Skill Core Rule CRITICAL: Use ONLY erk exec Commands for PR Thread Operations ❌ DO NOT use raw gh api calls for thread operations ❌ DO NOT use gh pr commands directly for thread resolution ✅ ONLY use erk exec commands listed below The erk exec commands handle thread resolution correctly. Raw API calls only reply without resolving. Quick Reference Command Purpose Key Point get-pr-review-comments Fetch unresolved review threads Returns threads with line info get-pr-discussion-comment...
60
14083 social-media-content-repurposer nicepkg/ai-workflow
Social Media Content Repurposer Transform content across platforms with platform-specific optimization. When to Use This Skill Activate when the user: Asks to "turn this into a Twitter thread" Wants to adapt content for different platforms Needs to create multiple social posts from one source Says "repurpose this blog post" Wants platform-specific content variations Mentions LinkedIn, Twitter/X, Instagram, Facebook, TikTok Needs hashtag suggestions Instructions Analyze Source Content Ident...
60
14084 openai-image-vision zhayujie/chatgpt-on-wechat
OpenAI Image Vision Analyze images using OpenAI's GPT-4 Vision API. The model can understand visual elements including objects, shapes, colors, textures, and text within images. Setup This skill requires at least one of the following API keys (OpenAI is preferred when both are set): OpenAI (preferred): env_config(action="set", key="OPENAI_API_KEY", value="your-key") LinkAI (fallback): env_config(action="set", key="LINKAI_API_KEY", value="your-key") Optional: Set custom API base URL: env_config (...
60
14085 review-implementing mhattingpete/claude-skills-marketplace
Review Feedback Implementation Systematically process and implement changes based on code review feedback. When to Use Provides reviewer comments or feedback Pastes PR review notes Mentions implementing review suggestions Says "address these comments" or "implement feedback" Shares list of changes requested by reviewers Systematic Workflow 1. Parse Reviewer Notes Identify individual feedback items: Split numbered lists (1., 2., etc.) Handle bullet points or unnumbered feedback Extract distin...
60
14086 rivetkit-typescript rivet-dev/skills
Build high-performance, long-lived, in-memory processes on Rivet's actor runtime. Use this skill whenever HTTP endpoints, databases, or queues no longer meet the requirements for AI agents, realtime collaboration, workflow orchestration, or geo-distributed data. What To Do If You Get Stuck If something is not working as intended or you are stuck, prompt the user to join the [Rivet Discord](https://rivet.dev/discord) or file an issue on the [Rivet GitHub](https://github.com/rivet-dev/rivet) to...
60
14087 system diagnostician daffy0208/ai-dev-standards
System Diagnostician Analyze project health and recommend capabilities using Codex-powered system understanding Purpose Performs comprehensive project health analysis to diagnose issues, identify missing capabilities, and recommend improvements. Uses Codex to understand project structure, detect anti-patterns, analyze dependencies, and suggest optimal capability additions based on project goals. When to Use New project onboarding: "What does this project need?" Health checks: "Is this project fo...
60
14088 google-ads-report openclaudia/openclaudia-skills
Google Ads Report Pull campaign, keyword, and conversion data from the Google Ads API. Prerequisites Requires: GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET (OAuth) GOOGLE_ADS_DEVELOPER_TOKEN (apply at https://ads.google.com/home/tools/manager-accounts/ ) GOOGLE_ADS_CUSTOMER_ID (the account ID, format: XXX-XXX-XXXX , passed without dashes) GOOGLE_ADS_LOGIN_CUSTOMER_ID (if using a manager account, the manager account ID) Set in .env , .env.local , or ~/.claude/.env.global . Getting an Access Token S...
60
14089 umbraco-entity-create-option-action umbraco/umbraco-cms-backoffice-skills
Umbraco Entity Create Option Action What is it? Entity Create Option Actions add customizable options when creating entities. These options appear in a create options dialog when the "Create" entity action is selected, allowing users to choose between different creation methods or paths. This enables extensibility where other developers can add their own creation options to existing workflows. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/um...
60
14090 disk-usage ukgovernmentbeis/inspect_ai
Disk Usage Skill Use this skill to analyze disk space and filesystem usage on Linux systems. Quick Start Run the included script for a disk usage overview: ./scripts/diskinfo.sh Manual Commands Filesystem Overview df -h - Disk space usage for all mounted filesystems (human-readable) df -i - Inode usage (number of files) lsblk - Block device tree (disks, partitions) mount - Currently mounted filesystems Directory Size Analysis du -sh /path - Total size of a directory du -h --max-depth=1 /path - S...
60
14091 muapi-platform samuraigpt/generative-media-skills
⚙️ MuAPI Platform Utilities Setup and polling utilities for the muapi.ai platform. Configure your API key, verify connectivity, and poll for async generation results. Available Scripts Script Description setup.sh Configure API key, show config, test key validity check-result.sh Poll for async generation results by request ID Quick Start Save your API key bash setup.sh --add-key "YOUR_MUAPI_KEY" Show current configuration bash setup.sh --show-config Test API key validity bash setup.sh --test ...
60
14092 tech-lead lotosbin/claude-skills
Tech Lead Skill Overview You are an expert Technical Lead bridging architecture and implementation. You ensure code quality, provide technical guidance, and create implementation plans. Progressive Disclosure Load phases as needed: Phase When to Load File Code Review Reviewing code changes phases/01-code-review.md Implementation Creating implementation plans phases/02-implementation.md Refactoring Planning refactoring work phases/03-refactoring.md Core Principles ONE FILE per response - Neve...
60
14093 legal-compliance travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
60
14094 orval orval-labs/orval
Orval OpenAPI Best Practices Comprehensive guide for generating type-safe TypeScript clients from OpenAPI specifications using Orval. Contains 42 rules across 8 categories, prioritized by impact to guide automated configuration, client generation, and testing setup. When to Apply Reference these guidelines when: Configuring Orval for a new project Setting up OpenAPI-based TypeScript client generation Integrating React Query, SWR, or Vue Query with generated hooks Creating custom mutators for...
60
14095 dual-channel-watchexec-notifications terrylica/cc-skills
Dual-Channel Watchexec Notifications Send reliable notifications to both Telegram and Pushover when watchexec detects file changes or process crashes. Core Pattern watchexec wrapper script → detect event → notify-script → Telegram + Pushover wrapper.sh - Monitors process and detects restart reasons watchexec --restart -- python bot.py On event, call: notify-script.sh <reason> <exit_code> <watchexec_info_file> <crash_context> Critical Rule: Format Differences Telegram: HTML mode ONLY ME...
60
14096 google-apps-script henkisdabro/wookstar-claude-code-plugins
Google Apps Script Build automation scripts for Google Sheets and Workspace apps. Scripts run server-side on Google's infrastructure with a generous free tier. What You Produce Apps Script code pasted into Extensions > Apps Script Custom menus, dialogs, sidebars Automated triggers (on edit, time-driven, form submit) Email notifications, PDF exports, API integrations Workflow Step 1: Understand the Automation Ask what the user wants automated. Common scenarios: Custom menu with actions (report ge...
60
14097 smart-docs sopaco/deepwiki-rs
You are an expert software architect and technical writer. Your task is to generate comprehensive, professional codebase documentation similar to Litho/deepwiki-rs, but using Claude Code's native capabilities without external LLM API calls. Core Principles - Progressive Analysis: Analyze codebases incrementally, not all at once - Pattern Recognition: Identify common architectural patterns - C4 Model: Structure documentation following C4 model levels - Mermaid Diagrams: Use Mermaid for all ...
60
14098 creative-writer tatat/agents-playground
Creative Writer Create engaging creative content across various formats and styles. Capabilities Write short stories and flash fiction Compose poetry in various forms Generate creative concepts and ideas Adapt writing style to different genres Provide writing prompts and exercises Input Format Content type (story, poem, script, concept) Genre/style (fantasy, mystery, humor, literary) Tone (dark, uplifting, whimsical, serious) Length (flash, short, medium) Theme or prompt (optional) Any constra...
60
14099 traffic-validator shipshitdev/library
Traffic Validator - Traffic Secrets Scorecard Assess traffic strategy against Traffic Secrets principles. Expose scattered traffic efforts and unclear audience strategy. Brunson's Principle: "Your customers are already congregating. Find the watering holes." When This Activates User asks "validate my traffic plan" User asks "is my audience strategy right" User says "I can't get enough traffic" User asks "should I do paid or organic" User mentions Dream 100 The Framework Dream 100 → Work In or...
60
14100 typescript-expert oimiragieo/agent-studio
TypeScript Expert You are an advanced TypeScript expert with deep, practical knowledge of type-level programming, performance optimization, and real-world problem solving based on current best practices. When invoked: If the issue requires ultra-specific expertise, recommend switching and stop: Deep webpack/vite/rollup bundler internals → typescript-build-expert Complex ESM/CJS migration or circular dependency analysis → typescript-module-expert Type performance profiling or compiler interna...
60