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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
12351 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
12352 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
12353 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
12354 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
12355 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
12356 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
12357 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
12358 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
12359 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
12360 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
12361 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
12362 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
12363 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
12364 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
12365 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
12366 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
12367 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
12368 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
12369 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
12370 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
12371 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
12372 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
12373 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
12374 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
12375 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
12376 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
12377 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
12378 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
12379 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
12380 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
12381 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
12382 game-qa opusgamelabs/game-creator
Game QA with Playwright You are an expert QA engineer for browser games. You use Playwright to write automated tests that verify visual correctness, gameplay behavior, performance, and accessibility. Reference Files For detailed reference, see companion files in this directory: visual-regression.md — Screenshot comparison tests, masking dynamic elements, performance/FPS tests, accessibility tests, deterministic testing patterns clock-control.md — Playwright Clock API patterns for frame-precise t...
60
12383 legal-compliance travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
60
12384 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
12385 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
12386 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
12387 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
12388 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
12389 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
12390 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
12391 memory-tasks basicmachines-co/basic-memory-skills
Memory Tasks Manage work-in-progress using Basic Memory's schema system. Tasks are just notes with type: Task — they live in the knowledge graph, validate against a schema, and survive context compaction. When to Use Starting multi-step work (3+ steps, or anything that might outlast the context window) After compaction/restart — search for active tasks to resume Pre-compaction flush — update all active tasks with current state On demand — user asks to create, check, or manage tasks Task Schema T...
60
12392 druid autumnsgrove/groveengine
The Druid 🌿 The druid is not an animal. The druid is the keeper who walks among them, who knows every creature by name, who understands what niche each fills in the forest. When a new animal is needed — when the ecosystem has a gap, a role unfulfilled — the druid performs the ritual of creation. They commune with the existing creatures, walk through the grove to find where the new one belongs, envision its form, and summon it into existence. The druid creates what the forest needs. When to Activ...
60
12393 ralph civitai/civitai
ralph (Ouroboros) — Specification-First AI Development Stop prompting. Start specifying. "The beginning is the end, and the end is the beginning." The serpent doesn't repeat — it evolves. When to use this skill Before writing any code — expose hidden assumptions with Socratic interviewing Long-running tasks that need autonomous iteration until verified Vague requirements — crystallize them into an immutable spec (Ambiguity ≤ 0.2) Tasks requiring guaranteed completion — loop until verification pa...
60
12394 frontend-design shipshitdev/library
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 :...
60
12395 audit-xls anthropics/financial-services-plugins
Audit Spreadsheet Audit formulas and data for accuracy and mistakes. Scope determines depth — from quick formula checks on a selection up to full financial-model integrity audits. Step 1: Determine scope If the user already gave a scope, use it. Otherwise ask them : What scope do you want me to audit? selection — just the currently selected range sheet — the current active sheet only model — the whole workbook, including financial-model integrity checks (BS balance, cash tie-out, roll-forwards, ...
60
12396 tiltup 0xbigboss/claude-code
Tilt Up Principles (Always Active) These apply whenever working with Tiltfiles, Tilt errors, or dev environment bootstrap: Fix the Tiltfile, Not the Symptoms Fix the source config directly - Tiltfile, Dockerfile, k8s manifest, or helm values Never add shell workarounds - no wrapper scripts, no || true , no try/except pass Never hard-code ports, paths, hostnames, image tags, or container names that should be dynamic Never add fallbacks that mask the real error - if a resource fails, the failure m...
60
12397 make-game opusgamelabs/game-creator
Make Game (Full Pipeline) Build a complete browser game from scratch, step by step. This command walks you through the entire pipeline — from an empty folder to a deployed, monetized game. No game development experience needed. What you'll get: A fully scaffolded game project with clean architecture Pixel art sprites — recognizable characters, enemies, and items (optional, replaces geometric shapes) Visual polish — gradients, particles, transitions, juice A 50 FPS promo video — autonomous gamepl...
60
12398 os-use zrong/skills
OS Use - Cross-Platform OS Automation A comprehensive cross-platform toolkit for OS automation, screenshot capture, visual recognition, mouse/keyboard control, and window management. Supports macOS 12+ and Windows 10+ . Platform Support Matrix Feature macOS Implementation Windows Implementation Screenshot pyautogui + PIL pyautogui + PIL Visual Recognition opencv-python + pyautogui opencv-python + pyautogui Mouse/Keyboard pyautogui pyautogui Window Management AppleScript (native) pywinauto / pyge...
60
12399 memory-schema basicmachines-co/basic-memory-skills
Memory Schema Manage structured note types using Basic Memory's Picoschema system. Schemas define what fields a note type should have, making notes uniform, queryable, and validatable. When to Use New note type emerging — you notice several notes share the same structure (meetings, people, decisions) Validation check — confirm existing notes conform to their schema Schema drift — detect fields that notes use but the schema doesn't define (or vice versa) Schema evolution — add/remove/change field...
60
12400 define-architecture mblode/agent-skills
Define Architecture Define durable, easy-to-change architecture defaults for TypeScript apps. How to use this skill Determine context: New codebase: follow Architecture setup workflow . Existing codebase: follow Adoption workflow . Produce an architecture brief using Output template . Run Validation loop before finalizing. Load references only when needed: Stack defaults: references/stack-defaults.md Shipping and rollout: references/shipping-practices.md Engineering quality checklists: reference...
60