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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,919
总 Skills
176.5M
总安装量
2,757
贡献者
# Skill 仓库 描述 安装量
20351 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
20352 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
20353 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
20354 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
20355 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
20356 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
20357 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
20358 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
20359 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
20360 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
20361 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
20362 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
20363 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
20364 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
20365 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
20366 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
20367 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
20368 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
20369 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
20370 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
20371 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
20372 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
20373 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
20374 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
20375 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
20376 legal-compliance travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
60
20377 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
20378 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
20379 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
20380 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
20381 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
20382 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
20383 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 internals →...
60
20384 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
20385 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
20386 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
20387 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
20388 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
20389 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
20390 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
20391 brand-guidelines davepoon/buildwithclaude
Anthropic Brand Styling Overview To access Anthropic's official brand identity and style resources, use this skill. Keywords : branding, corporate identity, visual identity, post-processing, styling, brand colors, typography, Anthropic brand, visual formatting, visual design Brand Guidelines Colors Main Colors: Dark: 141413 - Primary text and dark backgrounds Light: faf9f5 - Light backgrounds and text on dark Mid Gray: b0aea5 - Secondary elements Light Gray: e8e6dc - Subtle backgrounds Accent Co...
60
20392 stable-diffusion-image-generation orchestra-research/ai-research-skills
Stable Diffusion Image Generation Comprehensive guide to generating images with Stable Diffusion using the HuggingFace Diffusers library. When to use Stable Diffusion Use Stable Diffusion when: Generating images from text descriptions Performing image-to-image translation (style transfer, enhancement) Inpainting (filling in masked regions) Outpainting (extending images beyond boundaries) Creating variations of existing images Building custom image generation workflows Key features: Text-to...
60
20393 wechat-draft-publisher solar-luna/fully-automatic-article-generation-skill
自动将 HTML 格式的文章发布到微信公众号草稿箱,支持封面图上传、标题、作者和摘要等元数据管理。 ⚡ 快速开始 最简单的用法: ``` python publisher.py --title "文章标题" --content article.html ``` 完整参数: ``` python publisher.py \ --title "标题" \ --content article.html \ --author "作者名" \ --cover cover.png \ --digest "文章摘要" ``` 默认值: - 作者:`YanG` - 封面图:`cover.png` 📋 执行步骤 发布文章到微信草稿箱的完整流程: - 查找 HTML 文件 优先查找 `*_formatted.html`(formatter 输出) - 回退到最新的 `.html` 文件 - 提取文章标题 从 HTML 注释提取:`<!-- Title: xxx -->` - 从文件名提取 - 询问用户 - 检查封面图 查找 `cov...
60
20394 erk-diff-analysis dagster-io/erk
Diff Analysis This skill provides the commit message generation prompt used by PR submission commands. When to Use Only load this skill when: Explicitly requested by name ( erk-diff-analysis ) Invoked by commands like /erk:git-pr-push Usage Load references/commit-message-prompt.md when analyzing a diff, then apply its principles to generate output. Key Principles Be concise and strategic - focus on significant changes Use component-level descriptions - reference modules/components, not individua...
60
20395 session-recovery terrylica/cc-skills
When to use this skill: - "No conversations found to resume" when running `claude -r` - New conversations not creating session files - Sessions appearing in wrong locations (`/tmp/` instead of `~/.claude/projects/`) - Session history missing after environment changes - IDE/terminal settings affecting session creation - Need to migrate or recover 600+ legacy sessions Official Session Storage Standard Location: `~/.claude/projects/` Structure: ``` ~/.claude/projects/ ├── -home-username-...
60
20396 beads johnlindquist/claude
Beads - Persistent Task Memory for AI Agents Graph-based issue tracker that survives conversation compaction. Provides persistent memory for multi-session work with complex dependencies. bd vs TodoWrite Decision test : "Will I need this context in 2 weeks?" YES = bd, NO = TodoWrite. bd (persistent) TodoWrite (ephemeral) Multi-session, dependencies, compaction survival Single-session linear tasks Dolt-backed team sync Conversation-scoped See BOUNDARIES.md for detailed comparison. Prerequisites Sh...
60
20397 gh-address-comments shipshitdev/library
PR Comment Handler Guide to find the open PR for the current branch and address its comments with gh CLI. Run all gh commands with elevated network access. Prereq: ensure gh is authenticated (for example, run gh auth login once), then run gh auth status with escalated permissions (include workflow/repo scopes) so gh commands succeed. If sandboxing blocks gh auth status , rerun it with sandbox_permissions=require_escalated . 1) Inspect comments needing attention Run scripts/fetch_comments.py whic...
60
20398 tool-openclaw heyvhuang/ship-faster
OpenClaw Expert Goal: answer OpenClaw install/config/ops questions using the bundled docs snapshot under references/docs/ . Default assumption: the snapshot is the source of truth. Do not guess command flags or config keys. Inputs / I-O Contract (Required) Reads (primary): references/docs/ (offline mirror of https://docs.openclaw.ai/*.md ) references/entrypoints.md (curated map) references/troubleshooting.md (routing/playbook) Writes: None by default. If refreshing the snapshot: references/docs/...
60
20399 umbraco-header-apps umbraco/umbraco-cms-backoffice-skills
Umbraco Header Apps What is it? Header apps are single-purpose extensions that appear in Umbraco's top navigation bar, positioned next to the user profile avatar and global search. They provide globally accessible functionality to the Backoffice, such as quick links to documentation, tools, or custom interactive features. Header apps can be simple links or custom interactive components that open modals or perform actions. Documentation Always fetch the latest docs before implementing: Main docs ...
60
20400 nuxt-data secondsky/claude-skills
Nuxt 4 Data Management Composables, data fetching, and state management patterns for Nuxt 4 applications. Quick Reference Data Fetching Methods Method Use Case SSR Caching Reactive useFetch Simple API calls Yes Yes Yes useAsyncData Custom async logic Yes Yes Yes $fetch Client-side only, events No No No Composable Naming Prefix Purpose Example use State/logic composable useAuth, useCart fetch Data fetching only fetchUsers (rare) When to Load References Load references/composables.md when: Wri...
60