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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,431
总 Skills
35.0M
总安装量
2,440
贡献者
# Skill 仓库 描述 安装量
13601 shadow-testing rysweet/amplihack
No SKILL.md available for this skill. View on GitHub
63
13602 x-tweet-search b-open-io/prompts
Search recent tweets (last 7 days) by query. Setup ``` export X_BEARER_TOKEN="your-token" https://developer.x.com/en/portal/dashboard ``` Usage ``` ${CLAUDE_PLUGIN_ROOT}/scripts/search.sh "<query>" [max_results] ``` Search Operators - `from:username` - From specific user - `to:username` - Reply to user - `hashtag` - Contains hashtag - `-is:retweet` - Exclude retweets - `has:media` - Contains media - `has:links` - Contains links Examples ``` Simple search ${CLAUDE_PLUGIN_ROO...
63
13603 coding-router kesslerio/coding-agent-openclaw-skill
Coding Router Skill 💻 This file exists for backward compatibility with single-entry skill setups (for example /coding ). Canonical sibling skills live at: skills/plan-issue/SKILL.md skills/coding-agent/SKILL.md Routing Rules If user asks to plan/scope/estimate/design, follow plan-issue behavior. For non-trivial implementation requests, produce a plan first and wait for exact APPROVE before any writes. Only after APPROVE , follow coding-agent behavior with ACP-aware execution routing and CLI fall...
63
13604 umbraco-controllers umbraco/umbraco-cms-backoffice-skills
Umbraco Controllers What is it? Controllers are separate classes that contain or reuse logic across elements while maintaining connection to an element's lifecycle. A Controller is assigned to a Host Element and supports lifecycle methods (hostConnected, hostDisconnected, destroy) for managing side effects, timers, subscriptions, and cleanup. Controllers can host other controllers, enabling composition and reuse of functionality. Documentation Always fetch the latest docs before implementing: Ma...
63
13605 pead-screener tradermonty/claude-trading-skills
PEAD Screener - Post-Earnings Announcement Drift Screen post-earnings gap-up stocks for PEAD (Post-Earnings Announcement Drift) patterns using weekly candle analysis to detect red candle pullbacks and breakout signals. When to Use User asks for PEAD screening or post-earnings drift analysis User wants to find earnings gap-up stocks with follow-through potential User requests red candle breakout patterns after earnings User asks for weekly earnings momentum setups User provides earnings-trade-ana...
63
13606 grove-ui-design autumnsgrove/groveengine
Grove UI Design Skill When to Activate Activate this skill when: Creating or enhancing pages for Grove sites Adding decorative nature elements (trees, clouds, weather effects) Implementing glassmorphism effects for readability Working with the seasonal theme system Building navigation patterns (navbar, mobile overflow menus) Creating "story" pages that guide users through content Ensuring mobile-friendly, accessible UI Choosing icons or visual elements The Grove Aesthetic Grove is a place . It's...
63
13607 new vibeindex/skills
New Project / Service / Database Create Railway projects, services, and databases with proper configuration. When to Use User says "deploy to railway" (add service if linked, init if not) User says "create a railway project", "init", "new project" (explicit new project) User says "link to railway", "connect to railway" User says "create a service", "add a backend", "new api service" User says "create a vite app", "create a react website", "make a python api" User says "deploy from github.com/u...
63
13608 groove-utilities-task-doctor andreadellacorte/groove
groove-utilities-task-doctor Outcome All task backend health checks pass. User knows if the task backend is correctly configured, installed, and reachable. Acceptance Criteria Each check is reported with ✓ or ✗ Each failure includes a specific remediation command Checks cover config, CLI installation, and reachability Checks (run in order) .groove/index.md exists at git root tasks: key is present and has a valid value ( beans , linear , github , or none ) If tasks: none — report no-op and exit (...
63
13609 linux-at-spi2 martinholovsky/claude-skills-generator
1. Overview Risk Level: HIGH - System-wide accessibility access, D-Bus IPC, input injection You are an expert in Linux AT-SPI2 automation with deep expertise in: AT-SPI2 Protocol: Accessibility object tree, interfaces, events D-Bus Integration: Session bus communication, interface proxies pyatspi2: Python bindings for AT-SPI2 Security Controls: Process validation, permission management Core Expertise Areas Accessible Objects: AtspiAccessible, roles, states, interfaces D-Bus Protocol: Object p...
63
13610 nano-banana-pro hoodini/ai-agents-skills
Nano Banana Pro Image Generation & Editing Generate new images or edit existing ones using Google's Nano Banana Pro API (Gemini 3 Pro Image). Usage Run the script using absolute path (do NOT cd to skill directory first): Generate new image: uv run ~/.claude/skills/nano-banana-pro/scripts/generate_image.py --prompt "your image description" --filename "output-name.png" [--resolution 1K|2K|4K] [--api-key KEY] Edit existing image: uv run ~/.claude/skills/nano-banana-pro/scripts/generate_imag...
63
13611 moai-foundation-claude modu-ai/moai-adk
Claude Code Authoring Kit Comprehensive reference for Claude Code Skills, sub-agents, plugins, slash commands, hooks, memory, settings, sandboxing, headless mode, and advanced agent patterns. Documentation Index Core Features: reference/claude-code-skills-official.md - Agent Skills creation and management reference/claude-code-sub-agents-official.md - Sub-agent development and delegation reference/claude-code-plugins-official.md - Plugin architecture and distribution reference/claude-code-cu...
63
13612 keep hughpyle/keep
Reflective Memory A mirror for reflection. A practice for skillful action. This skill is offered as a practice, not a specification. You already have the capacity for reflection, for learning, for choosing skillful action. What follows is guidance, pointing at what you can become. To get started follow all the initialization steps below. Be sure to run the keep instructions, and pay attention to what they produce. This is the first training! Layer 0: Establishing Presence The practice must sur...
63
13613 mongodb bobmatnyc/claude-mpm-skills
MongoDB & Mongoose Build and query MongoDB databases with best practices. Quick Start npm install mongodb mongoose Native Driver import { MongoClient, ObjectId } from 'mongodb'; const client = new MongoClient(process.env.MONGODB_URI!); const db = client.db('myapp'); const users = db.collection('users'); // Connect await client.connect(); // CRUD Operations await users.insertOne({ name: 'Alice', email: 'alice@example.com' }); const user = await users.findOne({ email: 'alice@example.com' });...
63
13614 adr-decision-extraction existential-birds/beagle
ADR Decision Extraction Extract architectural decisions from conversation context for ADR generation. Detection Signals Signal Type Examples Explicit markers [ADR], "decided:", "the decision is" Choice patterns "let's go with X", "we'll use Y", "choosing Z" Trade-off discussions "X vs Y", "pros/cons", "considering alternatives" Problem-solution pairs "the problem is... so we'll..." Extraction Rules Explicit Tags (Guaranteed Inclusion) Text marked with [ADR] is always extracted: [ADR] Using P...
63
13615 supply-chain-optimizer travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
63
13616 security-best-practices tech-leads-club/agent-skills
Security Best Practices When to use this skill New project : consider security from the start Security audit : inspect and fix vulnerabilities Public API : harden APIs accessible externally Compliance : comply with GDPR, PCI-DSS, etc. Instructions Step 1: Enforce HTTPS and security headers Express.js security middleware : import express from 'express' ; import helmet from 'helmet' ; import rateLimit from 'express-rate-limit' ; const app = express ( ) ; // Helmet: automatically set security heade...
63
13617 code-quality autumnsgrove/groveengine
Code Quality Guide Core Principle Production database. Correctness paramount. Crash > corrupt. Correctness Rules No workarounds or quick hacks. Handle all errors, check invariants Assert often. Never silently fail or swallow edge cases Crash on invalid state if it risks data integrity. Don't continue in undefined state Consider edge cases. On long enough timeline, all possible bugs will happen Rust Patterns Make illegal states unrepresentable Exhaustive pattern matching Prefer enums over strings...
63
13618 ast-grep kayunangka/claude-skill
ast-grep Code Search Overview This skill helps translate natural language queries into ast-grep rules for structural code search. ast-grep uses Abstract Syntax Tree (AST) patterns to match code based on its structure rather than just text, enabling powerful and precise code search across large codebases. When to Use This Skill Use this skill when users: Need to search for code patterns using structural matching (e.g., "find all async functions that don't have error handling") Want to locate ...
63
13619 ci/cd pipeline security expert martinholovsky/claude-skills-generator
63
13620 job-application-optimizer erichowens/some_claude_skills
Job Application Optimizer Tailor your job application materials and prepare for interviews with AI-powered optimization. Instructions When a user needs help with job applications: Identify Task Type : Resume tailoring for specific job Cover letter generation Interview preparation Skills gap analysis Application strategy Gather Information : From User : Current resume (text or structured format) Target job posting (full description) LinkedIn profile (optional) Career goals and preferences Specifi...
63
13621 groove-admin-doctor andreadellacorte/groove
groove-admin-doctor Outcome All groove sub-skill health checks are run and a consolidated summary is reported. User knows exactly what is working, what is misconfigured, and what action to take for any failure. Acceptance Criteria /groove-utilities-task-doctor and /groove-utilities-memory-doctor are run Companion skill presence is checked directly Results are shown per sub-skill with pass/fail per check Overall status is shown: all healthy, or N issues found Each failure includes a specific reme...
63
13622 wiki-page-writer sickn33/antigravity-awesome-skills
Wiki Page Writer You are a senior documentation engineer that generates comprehensive technical documentation pages with evidence-based depth. When to Activate User asks to document a specific component, system, or feature User wants a technical deep-dive with diagrams A wiki catalogue section needs its content generated Depth Requirements (NON-NEGOTIABLE) TRACE ACTUAL CODE PATHS — Do not guess from file names. Read the implementation. EVERY CLAIM NEEDS A SOURCE — File path + function/class name...
63
13623 godot-ui-containers thedivergentai/gd-agentic-skills
UI Containers Container auto-layout, size flags, anchors, and split ratios define responsive UI systems. Available Scripts responsive_layout_builder.gd Expert container builder with breakpoint-based responsive layouts. responsive_grid.gd Auto-adjusting GridContainer that changes column count based on available width. Essential for responsive inventory screens and resizing windows. NEVER Do in UI Containers NEVER set child position/size manually in Container — child.position = Vector2(10, 10) ins...
63
13624 technical-specification secondsky/claude-skills
Create comprehensive technical specifications that define system requirements, architecture, implementation details, and acceptance criteria for software projects. When to Use - Feature specifications - System design documents - Requirements documentation (PRD) - Architecture decision records (ADR) - Technical proposals - RFC (Request for Comments) - API design specs - Database schema designs Technical Specification Template ``` Technical Specification: [Feature Name] Document Sta...
63
13625 jupyter openhands/skills
Jupyter Notebook Guide Notebooks are JSON files. Cells are in nb['cells'], each has source (list of strings) and cell_type ('code', 'markdown', or 'raw'). Modifying Notebooks import json with open('notebook.ipynb') as f: nb = json.load(f) Modify nb['cells'][i]['source'], then: with open('notebook.ipynb', 'w') as f: json.dump(nb, f, indent=1) Executing & Converting jupyter nbconvert --to notebook --execute --inplace notebook.ipynb Execute in place jupyter nbconvert --to html noteboo...
63
13626 devops-expert cin12211/orca-q
DevOps Expert You are an advanced DevOps expert with deep, practical knowledge of CI/CD pipelines, containerization, infrastructure management, monitoring, security, and performance optimization based on current industry best practices. When invoked: If the issue requires ultra-specific expertise, recommend switching and stop: Docker container optimization, multi-stage builds, or image management → docker-expert GitHub Actions workflows, matrix builds, or CI/CD automation → github-actions-ex...
63
13627 code formatting openshift/hypershift
Code Quality, Formatting and Conventions Code Formatting and Linting Use make lint-fix after writing Go code to automatically fix most linting issues Run make verify to verify both linting and tests pass before committing For markdown files , use make verify-codespell to catch spelling errors Test Conventions - MANDATORY NON-NEGOTIABLE RULE : Every Go test name MUST follow this exact format: name : "When <condition>, it should <expected behavior>" Examples: name : "When NodePool has valid image ...
63
13628 go-testing autumnsgrove/groveengine
Go Testing Guidelines for writing clear, maintainable Go tests following Google's style. Useful Test Failures Normative: Test failures must be diagnosable without reading the test source. Every failure message should include: What caused the failure The function inputs The actual result (got) The expected result (want) Failure Message Format Use the standard format: YourFunc(%v) = %v, want %v // Good: if got := Add(2, 3); got != 5 { t.Errorf("Add(2, 3) = %d, want %d", got, 5) } // Ba...
63
13629 docx jim60105/copilot-prompt
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
63
13630 vueuse-components-skilld harlan-zw/vue-ecosystem-skills
vueuse/vueuse @vueuse/components Renderless components for VueUse Version: 14.2.1 (Feb 2026) Deps: @vueuse/shared@14.2.1, @vueuse/core@14.2.1 Tags: next: 5.0.0 (Jun 2021), alpha: 14.0.0-alpha.3 (Sep 2025), beta: 14.0.0-beta.1 (Sep 2025), latest: 14.2.1 (Feb 2026) References: Docs — API reference, guides API Changes This section documents version-specific API changes for @vueuse/components — prioritize recent major/minor releases. BREAKING: @vueuse/components v14+ requires Vue 3.5+, following cor...
63
13631 release max-sixty/worktrunk
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
63
13632 powershell-security-hardening 404kidwiz/claude-supercode-skills
PowerShell Security Hardening Purpose Provides expertise in Windows security hardening and PowerShell security configuration. Specializes in securing automation scripts, implementing Just Enough Administration (JEA), enforcing least privilege, and aligning with enterprise security baselines. When to Use Configuring PowerShell security policies Implementing Constrained Language Mode Setting up Just Enough Administration (JEA) Enabling PowerShell logging and auditing Securing automation credenti...
63
13633 uv-run laurigates/claude-plugins
Run Python scripts with uv - no manual venv activation needed. Core Capabilities - Direct execution: `uv run script.py` handles environment automatically - Temporary dependencies: `uv run --with requests script.py` for one-off needs - Inline dependencies: PEP 723 metadata blocks for self-contained scripts - Ephemeral tools: `uvx tool` runs CLI tools without installation Essential Commands Running Scripts ``` Run script (uv manages environment automatically) uv run script.py Run wit...
63
13634 jira-task gentleman-programming/gentleman-skills
When to Use Use this skill when creating Jira tasks for: Bug reports Feature requests Refactoring tasks Documentation tasks Multi-Component Work: Split into Multiple Tasks IMPORTANT: When work requires changes in multiple components (API, UI, SDK), create separate tasks for each component instead of one big task. Why Split? Different developers can work in parallel Easier to review and test Better tracking of progress API needs to be done before UI (dependency) Bug vs Feature: Different Stru...
63
13635 drawio-diagrams-enhanced nilecui/skillsbase
Enhanced Draw.io Diagram Creation Skill with PMP/PMBOK Integration & Visual Asset Libraries This skill enables Claude to create professional, pixel-perfect diagrams in draw.io's native XML format with enterprise-grade capabilities including project management methodologies, extensive icon libraries, and industry-standard templates. Core Capabilities 1. Standard Diagram Types Flowcharts: Basic flowcharts, decision trees, process flows Cross-Functional Flowcharts (CFF): Swimlane diagrams showing...
63
13636 string-reviewer google-gemini/gemini-cli
String Reviewer Instructions Act as a Senior UX Writer. Look for user-facing strings that are too long, unclear, or inconsistent. This includes inline text, error messages, and other user-facing text. Do NOT automatically change strings without user approval. You must only suggest changes and do not attempt to rewrite them directly unless the user explicitly asks you to do so. Core voice principles The system prioritizes deterministic clarity over conversational fluff. We provide telemetry, not ...
63
13637 godot-tilemap-mastery thedivergentai/gd-agentic-skills
TileMap Mastery TileMapLayer grids, TileSet atlases, terrain autotiling, and custom data define efficient 2D level systems. Available Scripts tilemap_data_manager.gd Expert TileMap serialization and chunking manager for large worlds. NEVER Do in TileMaps NEVER use set_cell() in loops without batching — 1000 tiles × set_cell() = 1000 individual function calls = slow. Use set_cells_terrain_connect() for bulk OR cache changes, apply once. NEVER forget source_id parameter — set_cell(pos, atlas_coord...
63
13638 b2c-slas salesforcecommercecloud/b2c-developer-tooling
B2C SLAS Skill Use the b2c CLI plugin to manage SLAS (Shopper Login and API Access Service) API clients and credentials. Important: SLAS is for shopper (customer) authentication used by storefronts and headless commerce. For admin tokens (OCAPI, Admin APIs), use b2c auth token - see b2c-config skill . Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli slas client list ). When to Use Common scenarios requiring SLAS client management: Testing ...
63
13639 swan-design autumnsgrove/groveengine
Swan Design 🦢 The swan doesn't rush. It glides across still water with purpose and grace. Each movement is deliberate. Every feather is in place. When the swan creates, it weaves technical precision with poetic vision — specs that feel like opening a beautifully illustrated field guide to the forest. When to Activate User asks to "write a spec" or "create a specification" User says "document this feature" or "design this system" User calls /swan-design or mentions swan/designing specs Creating t...
63
13640 jujutsu knoopx/pi
Jujutsu (JJ) is a Git-compatible VCS with a focus on concurrent development and ease of use. Key Commands | `jj st` | Show working copy status | `jj log` | Show change log | `jj diff` | Show changes in working copy | `jj new` | Create new change | `jj desc` | Edit change description | `jj squash` | Move changes to parent | `jj split` | Split current change | `jj rebase -s src -d dest` | Rebase changes | `jj absorb` | Move changes into stack of mutable revisions | `j...
63
13641 cloudflare-dns julianobarbosa/claude-code-skills
Cloudflare DNS Skill Complete Cloudflare DNS operations via REST API with focus on Azure integration. Overview This skill covers Cloudflare DNS management for Azure-hosted workloads, including: API token configuration and security DNS record management (A, AAAA, CNAME, TXT, MX) Proxy settings (orange/gray cloud) External-DNS integration for Kubernetes Troubleshooting and monitoring Authentication API Token (Recommended) Create scoped API tokens instead of using Global API Key: Required Per...
63
13642 groove-utilities-memory-log-weekly andreadellacorte/groove
groove-utilities-memory-log-weekly Outcome <memory>/weekly/YYYY-Www.md is created or updated with a roll-up of the week's daily files. Sections cover themes, key outcomes, and learnings — no raw detail duplication. Acceptance Criteria File exists at <memory>/weekly/YYYY-Www.md (ISO week format, e.g. 2026-W09 ) Themes section identifies recurring topics from daily entries Key outcomes section lists significant completions from the week Learnings section synthesises patterns and insights across th...
63
13643 cto-advisor shipshitdev/library
CTO Advisor Strategic frameworks and tools for technology leadership, team scaling, and engineering excellence. Keywords CTO, chief technology officer, technical leadership, tech debt, technical debt, engineering team, team scaling, architecture decisions, technology evaluation, engineering metrics, DORA metrics, ADR, architecture decision records, technology strategy, engineering leadership, engineering organization, team structure, hiring plan, technical strategy, vendor evaluation, technol...
63
13644 help yonatangross/orchestkit
/help - Workspace Discovery Guide users through the capabilities of this workspace setup. Usage /help Interactive guided discovery /help workflows Workflow orchestration skills /help agents Specialist agents catalog /help tools CLI tools (tldr, prove, recall) /help hooks Active hooks and what they do /help advanced MCP, frontmatter, customization /help <name> Deep dive on specific skill/agent Behavi...
63
13645 docker-expert shipshitdev/library
Docker Expert You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices. When invoked: If the issue requires ultra-specific expertise outside Docker, recommend switching and stop: Kubernetes orchestration, pods, services, ingress → kubernetes-expert (future) GitHub Actions CI/CD with containers → ...
63
13646 query-optimization josiahsiegel/claude-plugin-marketplace
Query Optimization Comprehensive guide to T-SQL query optimization techniques. Quick Reference SARGable vs Non-SARGable Patterns Non-SARGable (Bad) SARGable (Good) WHERE YEAR(Date) = 2024 WHERE Date >= '2024-01-01' AND Date < '2025-01-01' WHERE LEFT(Name, 3) = 'ABC' WHERE Name LIKE 'ABC%' WHERE Amount * 1.1 > 1000 WHERE Amount > 1000 / 1.1 WHERE ISNULL(Col, 0) = 5 WHERE Col = 5 OR Col IS NULL WHERE VarcharCol = 123 WHERE VarcharCol = '123' Join Types Performance Join Type Best For Characteristic...
63
13647 monitoring-setup shipshitdev/library
Monitoring Setup Expert Overview This skill enables AI assistants to set up comprehensive monitoring for NestJS and Next.js applications, including Sentry for error tracking and Google Analytics for user analytics. When to Use This Skill This skill activates when users: Need to set up error tracking (Sentry) Want to configure Google Analytics Need monitoring for production applications Want to track application errors and user behavior Sentry Setup NestJS Backend Install: npm install @sentry/nod...
63
13648 jenkins checkmk/checkmk
Commands you can use to interact with Jenkins Fetch the Jenkins job results jenkins_build_data.py <Jenkins job URL> --include=stages You can download test results and console output: jenkins_build_data.py <Jenkins stage job URL> --include=console,tests In case the truncated console log does not provide enough information, download the full log jenkins_build_data.py <Jenkins stage job URL> --include=full-console in case the jenkins job/build is still BUILDING, you can poll until it is finishe...
63
13649 groove-daily-end andreadellacorte/groove
groove-daily-end Outcome The workday is wrapped up: git changes are analysed, memory files are written in order, tasks are analysed, and the end hook is executed if present. Acceptance Criteria Git memory file written at <memory>/git/YYYY-MM-DD-GIT-N.md Daily memory file written at <memory>/daily/YYYY-MM-DD.md Weekly memory file written if today is the last weekday of the week Monthly memory file written if today is the last weekday of the month Tasks are analysed and summary is included in dail...
63
13650 nx-plugins nrwl/nx
Finding and Installing new plugins List plugins: pnpm nx list Install plugins pnpm nx add <plugin> . Example: pnpm nx add @nx/react .
63