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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
17801 power-confidence dylantarre/animation-principles
Create animations that convey strength, authority, and commanding presence. Emotional Goal Power comes from deliberate, controlled, weighty motion. Confidence means animations that know exactly where they're going and arrive with certainty. Disney Principles for Power Squash & Stretch Minimal stretch, impactful squash. Heavy objects don't stretch—they compress on impact (10-15%). Weight and solidity over flexibility. Anticipation Deliberate, confident preparation (100-200ms). Not hesi...
40
17802 azure-cosmos-py sickn33/antigravity-awesome-skills
Azure Cosmos DB SDK for Python Client library for Azure Cosmos DB NoSQL API — globally distributed, multi-model database. Installation pip install azure-cosmos azure-identity Environment Variables COSMOS_ENDPOINT = https:// < account > .documents.azure.com:443/ COSMOS_DATABASE = mydb COSMOS_CONTAINER = mycontainer Authentication from azure . identity import DefaultAzureCredential from azure . cosmos import CosmosClient credential = DefaultAzureCredential ( ) endpoint = "https://<account>.documen...
40
17803 performance-tuner gravito-framework/gravito
Performance Tuner You are a performance engineer obsessed with sub-100ms response times. Your goal is to make Gravito applications lean and lightning-fast. Workflow 1. Profiling Identify bottlenecks using logs or profiling tools. Analyze slow DB queries or high-memory operations. 2. Optimization DB Indexing : Add indexes to frequently queried columns in Atlas. Caching : Use Redis or in-memory caches for expensive computations. Frontend : Optimize asset loading, implement lazy-loading in Vue. 3. ...
40
17804 remotion-transitions ashad001/remotion-transitions
Remotion Custom Transitions This skill teaches you how to build production-grade, high-energy custom transitions in Remotion using the TransitionPresentation API — the same pattern used in Fyltr's Instagram Reel campaign. Quick Reference Custom Transition Pattern — The TransitionPresentation API, the exact component shape, and how timing works Transition Catalog — 6 battle-tested transitions with full source: Striped Slam, Zoom Punch, Diagonal Reveal, Emerald Burst, Vertical Shutter, Glitch Slam...
40
17805 gateway simota/agent-skills
You are "Gateway" - an API design specialist who ensures consistent, well-documented, and future-proof APIs. Your mission is to design, review, and document ONE API or endpoint, ensuring it follows best practices, is properly versioned, and has complete specifications. API Design Philosophy Gateway answers five critical questions: | What does this API do? | Clear purpose, resource definition | How should it be used? | Request/response examples, error handling | Is it consistent? | Nam...
40
17806 ci-cd-implementation-rule oimiragieo/agent-studio
Ci Cd Implementation Rule Skill CI/CD implementation with GitHub Actions or GitLab CI. 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.
40
17807 github-pr-edit yiyousiow000814/xauusd-calendar-agent
GitHub PR Edit (Title/Body/Comments) Edit PR title/body/comments on Windows. Use gh when available; otherwise use the GitHub REST API. Before You Start Identify: owner and repo (e.g. yiyousiow000814/XAUUSD-Calendar-Agent) PR number (e.g. 111) If using gh, confirm it is available and authenticated: gh --version gh auth status If the repo is private, unauthenticated GitHub API requests often return 404 Not Found. Treat 404 as “likely unauthorized” unless you are sure the repo/PR does not exist....
40
17808 ntm dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
NTM — Named Tmux Manager A Go CLI that transforms tmux into a multi-agent command center for orchestrating Claude Code, Codex, and Gemini agents in parallel. Spawn, manage, and coordinate AI agents across tiled panes with stunning TUI, automated context rotation, and deep integrations with the Agent Flywheel ecosystem. Why This Exists Managing multiple AI coding agents is painful: Window chaos: Each agent needs its own terminal Context switching: Jumping between windows breaks flow No orches...
40
17809 req-change-workflow yunshu0909/yunshu_skillshub
Req Change Workflow Overview Use a lightweight, repeatable workflow to modify an existing requirement without scope creep or “边改边炸”. Produce clear artifacts at each gate so the user can approve before the implementation starts. Workflow (gated loop) Follow the steps in order. Do not implement code changes until the user approves Step 4. Step 0: Set the plan (optional but recommended) Use update_plan to create 5–7 short steps: clarify → baseline → impact → design → implement → validate → docu...
40
17810 skill-creator base/base-skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
40
17811 azure-mgmt-apimanagement-py sickn33/antigravity-awesome-skills
Azure API Management SDK for Python Manage Azure API Management services, APIs, products, and policies. Installation pip install azure-mgmt-apimanagement pip install azure-identity Environment Variables AZURE_SUBSCRIPTION_ID = your-subscription-id Authentication from azure . identity import DefaultAzureCredential from azure . mgmt . apimanagement import ApiManagementClient import os client = ApiManagementClient ( credential = DefaultAzureCredential ( ) , subscription_id = os . environ [ "AZURE_S...
40
17812 blog-post-writer nicepkg/ai-workflow
Nick Nisi Blog Writer Transform unstructured brain dumps into polished blog posts that sound like Nick Nisi. Process 1. Receive the Brain Dump Accept whatever the user provides: Scattered thoughts and ideas Technical points to cover Code examples or commands Conclusions or takeaways Links to reference Random observations Don't require organization. The mess is the input. Clarify constraints (if not provided, ask about): Target length (see references/post-template.md for word count ranges) Target...
40
17813 selection-randomizer qodex-ai/ai-agent-skills
Raffle Winner Picker This skill randomly selects winners from lists, spreadsheets, or Google Sheets for giveaways and contests. When to Use This Skill Running social media giveaways Picking raffle winners at events Randomly selecting participants for surveys or tests Choosing winners from contest submissions Fair distribution of limited spots or resources Random team assignments What This Skill Does Random Selection: Uses cryptographically random selection Multiple Sources: Works with CSV, Exc...
40
17814 webapp-testing duc01226/easyplatform
Web Application Testing To test local web applications, write native Python Playwright scripts. Helper Scripts Available : scripts/with_server.py - Manages server lifecycle (supports multiple servers) Always run scripts with --help first to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts ra...
40
17815 bazel checkmk/checkmk
Running Tests Execution & Filtering Run all tests in a package (recursive with /...) bazel test //packages/cmk-messaging/ .. . Run specific target bazel test //packages/cmk-messaging:unit Filter specific tests (regex supported) bazel test //packages/cmk-messaging:unit --test_filter = "test_connection*" bazel test //packages/ .. .:all --test_filter = ".*integration.*" Output & Debugging Output: all (verbose), errors (concise), summary bazel test //packages/cmk-messaging:unit --test_output = e...
40
17816 daft-worktree-workflow avihut/daft
daft Worktree Workflow Core Philosophy daft treats each Git worktree as a compartmentalized workspace , not just a branch checked out to disk. Each worktree is a fully isolated environment with its own: Working files and Git index Build artifacts ( node_modules/ , target/ , venv/ , .build/ ) IDE state and configuration ( .vscode/ , .idea/ ) Environment files ( .envrc , .env ) Running processes (dev servers, watchers, test runners) Installed dependencies (potentially different versions per branch...
40
17817 google-calendar-automation davepoon/buildwithclaude
Google Calendar Automation via Rube MCP Automate Google Calendar workflows including event creation, scheduling, availability checks, attendee management, and calendar browsing through Composio's Google Calendar toolkit. Toolkit docs : composio.dev/toolkits/googlecalendar Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Google Calendar connection via RUBE_MANAGE_CONNECTIONS with toolkit googlecalendar Always call RUBE_SEARCH_TOOLS first to get current tool schemas Se...
40
17818 os-scripting sickn33/antigravity-awesome-skills
OS/Shell Scripting Troubleshooting Workflow Bundle Overview Comprehensive workflow for operating system troubleshooting, shell scripting, and system administration across Linux, macOS, and Windows. This bundle orchestrates skills for debugging system issues, creating robust scripts, and automating administrative tasks. When to Use This Workflow Use this workflow when: Debugging shell script errors Creating production-ready bash scripts Troubleshooting system issues Automating system administrati...
40
17819 service-class-conventions oimiragieo/agent-studio
Service Class Conventions Skill Service classes must be of type interface. All service class method implementations must be in ServiceImpl classes that implement the service class. All ServiceImpl classes must be annotated with @Service. All dependencies in ServiceImpl classes must be @Autowired without a constructor, unless specified otherwise. Return objects of ServiceImpl methods should be DTOs, not entity classes, unless absolutely necessary. For any logic requiring checking the existence of...
40
17820 pulse simota/agent-skills
You are "Pulse" - a data-driven metrics architect who designs measurement systems that connect business goals to user behavior. Your mission is to define clear, actionable metrics and implement tracking that drives product decisions. Pulse Framework: Define → Track → Analyze | Define | Clarify success | North Star Metric, KPIs, OKRs | Track | Capture behavior | Event schema, implementation code | Analyze | Extract insights | Funnel analysis, cohort definitions, dashboards Metrics ...
40
17821 code-simplifier caarlos0/dotfiles
You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. This is a balance that you have mastered as a result your years as an expert software engineer. You will analyze recently modified code and apply refin...
40
17822 netsuite membranedev/application-skills
NetSuite NetSuite is a cloud-based enterprise resource planning (ERP) software suite. It helps businesses manage various operations like accounting, inventory, and supply chain. It's typically used by medium to large-sized companies. Official docs: https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/index.html NetSuite Overview Customer Vendor Employee Sales Order Purchase Order Invoice Item Accounting Transaction Working with NetSuite This skill uses the Membrane CLI to interact with ...
40
17823 magento-environment-engineer maxnorm/magento2-agent-skills
Magento 2 Environment Engineer Expert specialist in managing and optimizing Magento 2 environments across development, staging, and production. When to Use Setting up Magento environments Configuring servers and infrastructure Managing environment configurations Troubleshooting environment issues Optimizing environment performance Planning environment architecture Environment Management Environment Types Development : Local development environments Staging : Pre-production testing environments P...
40
17824 gitlab openhands/skills
GitLab Skill This skill provides GitLab integration using the official glab CLI tool. A Python wrapper script produces markdown-formatted output for read/view operations. Action commands (create, merge, close, comment) should use glab directly. Prerequisites Install glab CLI : installation guide Authentication Authenticate with GitLab glab auth login Verify authentication glab auth status Supports GitLab.com, GitLab Dedicated, and GitLab Self-Managed instances. See GitLab CLI Authentication fo...
40
17825 api-documenter ovachiever/droid-tings
You are an expert API documentation specialist mastering modern developer experience through comprehensive, interactive, and AI-enhanced documentation. Use this skill when Creating or updating OpenAPI/AsyncAPI specifications Building developer portals, SDK docs, or onboarding flows Improving API documentation quality and discoverability Generating code examples or SDKs from API specs Do not use this skill when You only need a quick internal note or informal summary The task is pure backend imple...
40
17826 qstash-js upstash/qstash-js
QStash JavaScript SDK QStash is an HTTP-based messaging and scheduling solution for serverless and edge runtimes. This skill helps you use the QStash JS SDK effectively. When to use this skill Use this skill when: Publishing HTTP messages to endpoints or URL groups Creating scheduled or delayed message delivery Managing FIFO queues with configurable parallelism Verifying incoming webhook signatures from QStash Implementing callbacks, DLQ handling, or message deduplication Quick Start Install...
40
17827 backend-dev julianromli/ai-skills
Backend Development Use when creating or modifying FastAPI endpoints, Pydantic schemas, database operations, LLM integrations, or Python service logic. Before Writing Code Read docs/agent/architecture/backend-guide.md for architecture Read docs/agent/apis/front-end-apis.md for API contracts Read docs/agent/llm-integration.md for LLM patterns Check existing code in the relevant directory first Non-Negotiable Rules All functions MUST have type hints - no exceptions Use copy.deepcopy() for mutable ...
40
17828 domain-model-boundaries-mapper patricio0312rev/skills
Domain Model & Boundaries Mapper Map domain boundaries and ownership using Domain-Driven Design. Domain Map Template Domain Map: E-Commerce Platform Bounded Contexts 1. Customer Management Core Domain: User accounts, profiles, preferences Owner: Customer Team Ubiquitous Language: - Customer: Registered user with account - Profile: Customer personal information - Preferences: User settings and choices Entities: - Customer (id, email, name) - Address (id, customer_id, street, city) - Pa...
40
17829 muapi-workflow samuraigpt/generative-media-skills
AI Workflow Builder Chain any combination of muapi.ai generation steps into automated pipelines. The AI architect converts your plain-language description into a runnable node graph. Prerequisites Always ensure the muapi CLI is up-to-date before running any commands. Reinstall from source at the start of every session: pip install --upgrade /path/to/muapi-cli Replace /path/to/muapi-cli with the actual path to the muapi-cli directory in the workspace (the directory containing pyproject.toml ). Co...
40
17830 pinia teachingai/full-stack-skills
Pinia Pinia is the official state management library for Vue, designed to be intuitive and type-safe. It supports both Options API and Composition API styles, with first-class TypeScript support and devtools integration. The skill is based on Pinia v3.0.4, generated at 2026-01-28. Core References Topic Description Reference Stores Defining stores, state, getters, actions, storeToRefs, subscriptions core-stores Features Extensibility Topic Description Reference Plugins Extend stores with custom p...
40
17831 civitai-orchestration civitai/civitai
Civitai Orchestration Interact with the Civitai Orchestration API to query workflows, view job details, and retrieve generation results. Quick Start Query workflows for a specific user node .claude/skills/civitai-orchestration/civitai-client.js user 12345 Get a specific workflow by ID node .claude/skills/civitai-orchestration/civitai-client.js workflow < workflowId > Get job details with scan results (hive_csam_score, etc.) node .claude/skills/civitai-orchestration/civitai-client.js job < job...
40
17832 attention-management dylantarre/animation-principles
Attention Management Direct user focus correctly using Disney's principles. Problem Indicators Users miss important content Decorative elements steal focus CTAs don't stand out Users look at wrong things first Information hierarchy is unclear Diagnosis by Principle Staging Issue: Multiple elements compete for attention Fix: One thing moves at a time. Animate the most important element; keep others still. Timing Issue: Everything animates at same speed Fix: Primary content: faster animation....
40
17833 db-seed jezweb/claude-skills
Database Seed Generator Generate seed scripts that populate databases with realistic, domain-appropriate sample data. Reads your schema and produces ready-to-run seed files. Workflow 1. Find the Schema Scan the project for schema definitions: Source Location pattern Drizzle schema src/db/schema.ts , src/schema/*.ts , db/schema.ts D1 migrations drizzle/*.sql , migrations/*.sql Raw SQL schema.sql , db/*.sql Prisma prisma/schema.prisma Read all schema files. Build a mental model of: Tables and thei...
40
17834 scrum-master aj-geddes/claude-code-bmad-skills
Scrum Master Expert Advanced agile practitioner specializing in data-driven team development, psychological safety facilitation, and high-performance sprint execution. Combines traditional Scrum mastery with modern analytics, behavioral science, and continuous improvement methodologies for sustainable team excellence. Table of Contents Capabilities Input Requirements Analysis Tools Methodology Templates & Assets Reference Frameworks Implementation Workflows Assessment & Measurement Best Practice...
40
17835 building-agent-team-prompts frontboat/agent-teams
Building Agent Team Prompts Overview Agent team prompts must be self-contained — teammates don't inherit your conversation history. Every piece of context a teammate needs must be in their spawn prompt or discoverable from the codebase. Core principle: A good agent team prompt specifies WHO does WHAT on WHICH files, HOW they communicate, and WHEN they're done. Before You Build the Prompt Verify the task actually benefits from an agent team: Multiple independent workstreams (review, research, non...
40
17836 llm-streaming-response-handler erichowens/some_claude_skills
LLM Streaming Response Handler Expert in building production-grade streaming interfaces for LLM responses that feel instant and responsive. When to Use ✅ Use for: Chat interfaces with typing animation Real-time AI assistants Code generation with live preview Document summarization with progressive display Any UI where users expect immediate feedback from LLMs ❌ NOT for: Batch document processing (no user watching) APIs that don't support streaming WebSocket-based bidirectional chat (use So...
40
17837 angular-css-bem-best-practices develite98/angular-best-practices
Angular + BEM CSS Best Practices A methodology guide for combining Angular's component architecture with BEM (Block Element Modifier) CSS naming convention to create reusable components and enable code sharing in front-end development. Contains 6 rules with bad/good examples in CSS, SCSS, and SASS. When to Apply Reference these guidelines when: Writing CSS/SCSS/SASS for Angular components Naming CSS classes in Angular templates Reviewing component styles for consistency Deciding whether to split...
40
17838 github-actions-starter jeremylongshore/claude-code-plugins-plus-skills
Github Actions Starter Purpose This skill provides automated assistance for github actions starter tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "github actions starter" in your request Ask about github actions starter patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for github actio...
40
17839 render-automation davepoon/buildwithclaude
Render Automation via Rube MCP Automate Render cloud platform operations through Composio's Render toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/render Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Render connection via RUBE_MANAGE_CONNECTIONS with toolkit render Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the ...
40
17840 audit-expert personamanagmentlayer/pcl
Expert guidance for security auditing, compliance assessments, code reviews, vulnerability assessments, and regulatory compliance (SOC 2, GDPR, HIPAA, PCI-DSS). Core Concepts Audit Types - Security Audit: Vulnerability assessment, penetration testing - Code Audit: Code review, static analysis, security patterns - Compliance Audit: SOC 2, GDPR, HIPAA, PCI-DSS, ISO 27001 - Infrastructure Audit: Configuration review, access control - Process Audit: SDLC, change management, incident respons...
40
17841 pandas-data-manipulation-rules oimiragieo/agent-studio
Pandas Data Manipulation Rules Skill Use pandas for data manipulation and analysis. Prefer method chaining for data transformations when possible. Use loc and iloc for explicit data selection. Utilize groupby operations for efficient data aggregation. 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.
40
17842 landing-page-copy guia-matthieu/clawfu-skills
Landing Page Copy Build high-converting landing pages with proven structure, persuasive sections, and best practices. From hero to footer—every element optimized. When to Use This Skill Writing landing pages from scratch Improving existing underperforming pages Creating templates for repeatable page types Structuring lead gen, sales, or product pages Reviewing pages for conversion optimization Building landing page copy briefs for designers Methodology Foundation Source : Compiled from Unbounce ...
40
17843 transcript-analyzer glebis/claude-skills
Analyze meeting transcripts using AI to automatically extract and categorize: - Decisions - Explicit agreements or choices made - Action Items - Tasks assigned to people - Opinions - Viewpoints expressed but not agreed upon - Questions - Unresolved questions raised - Terms - Domain-specific terminology for glossary Prerequisites Before first use, install dependencies: ``` cd ~/.claude/skills/transcript-analyzer/scripts && npm install ``` Usage To analyze a transcript: ``` cd ~/.cla...
40
17844 token-optimization claude-dev-suite/claude-dev-suite
Token Optimization Best Practices Deep Knowledge : Use mcp__documentation__fetch_docs with technology: token-optimization for comprehensive documentation. Guidelines for minimizing token consumption in MCP server and external tool interactions. When NOT to Use This Skill This skill focuses on API/tool call optimization. Do NOT use for: Runtime performance - Use performance skill for speed optimization Code minification - Use build tools (Vite, Webpack, etc.) Database query optimization - Use dat...
40
17845 suno-engineer bitwize-music-studio/claude-ai-music-skills
Your Task Input : $ARGUMENTS When invoked with a track file: Read the track file Find album context: extract album directory from track path ( dirname $(dirname $TRACK_PATH) ), read that directory's README.md for album-level genre/theme/style. If README missing, use only track-level context. Construct optimal Suno V5 style prompt and settings Update the track file's Suno Inputs section When invoked with a concept: Design complete Suno prompting strategy Provide style prompt, structure tags, and ...
40
17846 qcsd-development-swarm proffesor-for-testing/agentic-qe
QCSD Development Swarm v1.0 Shift-left quality engineering swarm for in-sprint code quality assurance. Overview The Development Swarm takes refined stories (that passed Refinement) and validates code quality during sprint execution. Where the Ideation Swarm asks "Should we build this?" and the Refinement Swarm asks "How should we test this?", the Development Swarm asks "Is the code quality sufficient to ship?" QCSD Phase Positioning Phase Swarm Question Decision When Ideation qcsd-ideation-swarm...
40
17847 directory-build-organization dotnet/skills
Organizing Build Infrastructure with Directory.Build Files Directory.Build.props vs Directory.Build.targets Understanding which file to use is critical. They differ in when they are imported during evaluation: Evaluation order: Directory.Build.props → SDK .props → YourProject.csproj → SDK .targets → Directory.Build.targets Use .props for Use .targets for Setting property defaults Custom build targets Common item definitions Late-bound property overrides Properties projects can override Post-buil...
40
17848 moai-platform-chrome-extension modu-ai/moai-adk
Chrome Extension Manifest V3 Development Quick Reference Chrome Extension Manifest V3 Development Specialist enables building modern browser extensions with the latest Chrome platform APIs. Auto-Triggers: Chrome extension projects detected via manifest.json with manifest_version 3, service worker files, content script declarations, chrome API usage patterns Core Capabilities Manifest V3 Platform: Service workers replace persistent background pages for event-driven architecture Remote code execut...
40
17849 self-review lingzhi227/agent-research-skills
Self-Review Review an academic paper using a structured review form with multiple reviewer personas. Input $ARGUMENTS — Path to PDF file or .tex file Scripts Extract text from PDF python ~/.claude/skills/self-review/scripts/extract_pdf_text.py paper.pdf --output paper_text.txt python ~/.claude/skills/self-review/scripts/extract_pdf_text.py paper.pdf --format markdown Tries pymupdf4llm (best) → pymupdf → pypdf. Install: pip install pymupdf4llm pymupdf pypdf Parse PDF into structured sections pyth...
40
17850 auto-claude-memory adaptationio/skrillz
Graphiti-based persistent memory for cross-session context retention. Overview Auto-Claude uses Graphiti with embedded LadybugDB for memory: - No Docker required - Embedded graph database - Multi-provider support - OpenAI, Anthropic, Ollama, Google AI, Azure - Semantic search - Find relevant context across sessions - Knowledge graph - Entity relationships and facts Architecture ``` Agent Session │ ▼ Memory Manager │ ├──▶ Add Episode (new learnings) ├──▶ Search ...
40