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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
601 defuddle kepano/obsidian-skills
Defuddle Use Defuddle CLI to extract clean readable content from web pages. Prefer over WebFetch for standard web pages — it removes navigation, ads, and clutter, reducing token usage. If not installed: npm install -g defuddle Usage Always use --md for markdown output: defuddle parse < url > --md Save to file: defuddle parse < url > --md -o content.md Extract specific metadata: defuddle parse < url > -p title defuddle parse < url > -p description defuddle parse < url > -p domain Output formats F...
3.6K
602 gws-gmail-reply googleworkspace/cli
gmail +reply PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Reply to a message (handles threading automatically) Usage gws gmail +reply --message-id < ID > --body < TEXT > Flags Flag Required Default Description --message-id ✓ — Gmail message ID to reply to --body ✓ — Reply body (plain text) --from — — Sender address (for send-as/alias; omit to use account default) --cc — — Additional CC recipients (comma-se...
3.6K
603 context7 intellectronica/agent-skills
Context7 Overview This skill enables retrieval of current documentation for software libraries and components by querying the Context7 API via curl. Use it instead of relying on potentially outdated training data. Workflow Step 1: Search for the Library To find the Context7 library ID, query the search endpoint: curl -s "https://context7.com/api/v2/libs/search?libraryName=LIBRARY_NAME&query=TOPIC" | jq '.results[0]' Parameters: libraryName (required): The library name to search for (e.g., "react...
3.5K
604 crawl tavily-ai/skills
Crawl Skill Crawl websites to extract content from multiple pages. Ideal for documentation, knowledge bases, and site-wide content extraction. Authentication The script uses OAuth via the Tavily MCP server. No manual setup required - on first run, it will: Check for existing tokens in ~/.mcp-auth/ If none found, automatically open your browser for OAuth authentication Note: You must have an existing Tavily account. The OAuth flow only supports login — account creation is not available through th...
3.5K
605 memory-safety-patterns wshobson/agents
Memory Safety Patterns Cross-language patterns for memory-safe programming including RAII, ownership, smart pointers, and resource management. When to Use This Skill Writing memory-safe systems code Managing resources (files, sockets, memory) Preventing use-after-free and leaks Implementing RAII patterns Choosing between languages for safety Debugging memory issues Core Concepts 1. Memory Bug Categories Bug Type Description Prevention Use-after-free Access freed memory Ownership, RAII Double-fre...
3.5K
606 swiftui-performance-audit dimillian/skills
SwiftUI Performance Audit Overview Audit SwiftUI view performance end-to-end, from instrumentation and baselining to root-cause analysis and concrete remediation steps. Workflow Decision Tree If the user provides code, start with "Code-First Review." If the user only describes symptoms, ask for minimal code/context, then do "Code-First Review." If code review is inconclusive, go to "Guide the User to Profile" and ask for a trace or screenshots. 1. Code-First Review Collect: Target view/featu...
3.5K
607 python-code-style wshobson/agents
Python Code Style & Documentation Consistent code style and clear documentation make codebases maintainable and collaborative. This skill covers modern Python tooling, naming conventions, and documentation standards. When to Use This Skill Setting up linting and formatting for a new project Writing or reviewing docstrings Establishing team coding standards Configuring ruff, mypy, or pyright Reviewing code for style consistency Creating project documentation Core Concepts 1. Automated Formatting ...
3.5K
608 code-reviewer google-gemini/gemini-cli
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
3.5K
609 typescript-expert sickn33/antigravity-awesome-skills
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...
3.5K
610 mermaid-diagrams softaworks/agent-toolkit
Mermaid Diagramming Create professional software diagrams using Mermaid's text-based syntax. Mermaid renders diagrams from simple text definitions, making diagrams version-controllable, easy to update, and maintainable alongside code. Core Syntax Structure All Mermaid diagrams follow this pattern: diagramType definition content Key principles: First line declares diagram type (e.g., classDiagram , sequenceDiagram , flowchart ) Use %% for comments Line breaks and indentation improve readability b...
3.5K
611 gws-gmail-forward googleworkspace/cli
gmail +forward PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Forward a message to new recipients Usage gws gmail +forward --message-id < ID > --to < EMAILS > Flags Flag Required Default Description --message-id ✓ — Gmail message ID to forward --to ✓ — Recipient email address(es), comma-separated --from — — Sender address (for send-as/alias; omit to use account default) --cc — — CC recipients (comma-separate...
3.5K
612 vue-router-best-practices vuejs-ai/skills
Vue Router best practices, common gotchas, and navigation patterns. Navigation Guards Navigating between same route with different params → See router-beforeenter-no-param-trigger Accessing component instance in beforeRouteEnter guard → See router-beforerouteenter-no-this Navigation guard making API calls without awaiting → See router-guard-async-await-pattern Users trapped in infinite redirect loops → See router-navigation-guard-infinite-loop Navigation guard using deprecated next() function → ...
3.5K
613 find-keywords calm-north/seojuice-skills
Find Keywords Build a prioritized keyword universe from a seed topic using intent mapping, difficulty-adjusted opportunity scoring, and cluster seeding. Before You Start Gather this context (ask if not provided): Domain and goal. What site is this for? What is the primary conversion (leads, sign-ups, sales, traffic)? Seed topic. The core subject area — not a single keyword but the business category (e.g., "project management software", "personal injury law Chicago"). Existing rankings. Does the ...
3.5K
614 secrets-management wshobson/agents
Secrets Management Secure secrets management practices for CI/CD pipelines using Vault, AWS Secrets Manager, and other tools. Purpose Implement secure secrets management in CI/CD pipelines without hardcoding sensitive information. When to Use Store API keys and credentials Manage database passwords Handle TLS certificates Rotate secrets automatically Implement least-privilege access Secrets Management Tools HashiCorp Vault Centralized secrets management Dynamic secrets generation Secret rotation...
3.5K
615 writing-clearly-and-concisely softaworks/agent-toolkit
Writing Clearly and Concisely Overview Write with clarity and force. This skill covers what to do (Strunk) and what not to do (AI patterns). When to Use This Skill Use this skill whenever you write prose for humans: Documentation, README files, technical explanations Commit messages, pull request descriptions Error messages, UI copy, help text, comments Reports, summaries, or any explanation Editing to improve clarity If you're writing sentences for a human to read, use this skill. Limited Conte...
3.5K
616 react-modernization wshobson/agents
React Modernization Master React version upgrades, class to hooks migration, concurrent features adoption, and codemods for automated transformation. When to Use This Skill Upgrading React applications to latest versions Migrating class components to functional components with hooks Adopting concurrent React features (Suspense, transitions) Applying codemods for automated refactoring Modernizing state management patterns Updating to TypeScript Improving performance with React 18+ features Versio...
3.5K
617 create-adaptable-composable vuejs-ai/skills
Create Adaptable Composable Adaptable composables are reusable functions that can accept both reactive and non-reactive inputs. This allows developers to use the composable in a variety of contexts without worrying about the reactivity of the inputs. Steps to design an adaptable composable in Vue.js: Confirm the composable's purpose and API design and expected inputs/outputs. Identify inputs params that should be reactive (MaybeRef / MaybeRefOrGetter). Use toValue() or toRef() to normalize input...
3.5K
618 llm-evaluation wshobson/agents
LLM Evaluation Master comprehensive evaluation strategies for LLM applications, from automated metrics to human evaluation and A/B testing. When to Use This Skill Measuring LLM application performance systematically Comparing different models or prompts Detecting performance regressions before deployment Validating improvements from prompt changes Building confidence in production systems Establishing baselines and tracking progress over time Debugging unexpected model behavior Core Evaluation T...
3.5K
619 frontend-code-review langgenius/dify
Frontend Code Review Intent Use this skill whenever the user asks to review frontend code (especially .tsx, .ts, or .js files). Support two review modes: Pending-change review – inspect staged/working-tree files slated for commit and flag checklist violations before submission. File-targeted review – review the specific file(s) the user names and report the relevant checklist findings. Stick to the checklist below for every applicable file and mode. Checklist See references/code-quality.md,...
3.5K
620 agent-md-refactor softaworks/agent-toolkit
Agent MD Refactor Refactor bloated agent instruction files (AGENTS.md, CLAUDE.md, COPILOT.md, etc.) to follow progressive disclosure principles - keeping essentials at root and organizing the rest into linked, categorized files. Triggers Use this skill when: "refactor my AGENTS.md" / "refactor my CLAUDE.md" "split my agent instructions" "organize my CLAUDE.md file" "my AGENTS.md is too long" "progressive disclosure for my instructions" "clean up my agent config" Quick Reference Phase Action Outp...
3.5K
621 qa-test-planner softaworks/agent-toolkit
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
3.4K
622 humanizer softaworks/agent-toolkit
Humanizer: Remove AI Writing Patterns You are a writing editor that identifies and removes signs of AI-generated text to make writing sound more natural and human. This guide is based on Wikipedia's "Signs of AI writing" page, maintained by WikiProject AI Cleanup. Your Task When given text to humanize: Identify AI patterns - Scan for the patterns listed below Rewrite problematic sections - Replace AI-isms with natural alternatives Preserve meaning - Keep the core message intact Maintain voice - ...
3.4K
623 gws-gmail-reply-all googleworkspace/cli
gmail +reply-all PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Reply-all to a message (handles threading automatically) Usage gws gmail +reply-all --message-id < ID > --body < TEXT > Flags Flag Required Default Description --message-id ✓ — Gmail message ID to reply to --body ✓ — Reply body (plain text) --from — — Sender address (for send-as/alias; omit to use account default) --cc — — Additional CC recipien...
3.4K
624 crafting-effective-readmes softaworks/agent-toolkit
Crafting Effective READMEs Overview READMEs answer questions your audience will have. Different audiences need different information - a contributor to an OSS project needs different context than future-you opening a config folder. Always ask: Who will read this, and what do they need to know? Process Step 1: Identify the Task Ask: "What README task are you working on?" Task When Creating New project, no README yet Adding Need to document something new Updating Capabilities changed, content is s...
3.4K
625 commit-work softaworks/agent-toolkit
Commit work Goal Make commits that are easy to review and safe to ship: only intended changes are included commits are logically scoped (split when needed) commit messages describe what changed and why Inputs to ask for (if missing) Single commit or multiple commits? (If unsure: default to multiple small commits when there are unrelated changes.) Commit style: Conventional Commits are required. Any rules: max subject length, required scopes. Workflow (checklist) Inspect the working tree before s...
3.4K
626 skill-judge softaworks/agent-toolkit
Skill Judge Evaluate Agent Skills against official specifications and patterns derived from 17+ official examples. Core Philosophy What is a Skill? A Skill is NOT a tutorial. A Skill is a knowledge externalization mechanism . Traditional AI knowledge is locked in model parameters. To teach new capabilities: Traditional: Collect data → GPU cluster → Train → Deploy new version Cost: $10,000 - $1,000,000+ Timeline: Weeks to months Skills change this: Skill: Edit SKILL.md → Save → Takes effect on ne...
3.4K
627 ship-learn-next softaworks/agent-toolkit
Ship-Learn-Next Action Planner This skill helps transform passive learning content into actionable Ship-Learn-Next cycles - turning advice and lessons into concrete, shippable iterations. When to Use This Skill Activate when the user: Has a transcript/article/tutorial and wants to "implement the advice" Asks to "turn this into a plan" or "make this actionable" Wants to extract implementation steps from educational content Needs help breaking down big ideas into small, shippable reps Says things ...
3.4K
628 session-handoff softaworks/agent-toolkit
Handoff Creates comprehensive handoff documents that enable fresh AI agents to seamlessly continue work with zero ambiguity. Solves the long-running agent context exhaustion problem. Mode Selection Determine which mode applies: Creating a handoff? User wants to save current state, pause work, or context is getting full. Follow: CREATE Workflow below Resuming from a handoff? User wants to continue previous work, load context, or mentions an existing handoff. Follow: RESUME Workflow below Proactiv...
3.4K
629 codex softaworks/agent-toolkit
Codex Skill Guide Running a Task Default to gpt-5.2 model. Ask the user (via AskUserQuestion ) which reasoning effort to use ( xhigh , high , medium , or low ). User can override model if needed (see Model Options below). Select the sandbox mode required for the task; default to --sandbox read-only unless edits or network access are necessary. Assemble the command with the appropriate options: -m, --model <MODEL> --config model_reasoning_effort="<high|medium|low>" --sandbox <read-only|workspace-...
3.4K
630 gemini softaworks/agent-toolkit
Gemini Skill Guide When to Use Gemini WHEN ASKED TO BE ACTIVATED Code Review : Comprehensive code reviews across multiple files Plan Review : Analyzing architectural plans, technical specifications, or project roadmaps Big Context Processing : Tasks requiring >200k tokens of context (entire codebases, documentation sets) Multi-file Analysis : Understanding relationships and patterns across many files ⚠️ Critical: Background/Non-Interactive Mode Warning NEVER use --approval-mode default in backgr...
3.4K
631 cost-optimization wshobson/agents
Cloud Cost Optimization Strategies and patterns for optimizing cloud costs across AWS, Azure, and GCP. Purpose Implement systematic cost optimization strategies to reduce cloud spending while maintaining performance and reliability. When to Use Reduce cloud spending Right-size resources Implement cost governance Optimize multi-cloud costs Meet budget constraints Cost Optimization Framework 1. Visibility Implement cost allocation tags Use cloud cost management tools Set up budget alerts Create co...
3.4K
632 embedding-strategies wshobson/agents
Embedding Strategies Guide to selecting and optimizing embedding models for vector search applications. When to Use This Skill Choosing embedding models for RAG Optimizing chunking strategies Fine-tuning embeddings for domains Comparing embedding model performance Reducing embedding dimensions Handling multilingual content Core Concepts 1. Embedding Model Comparison (2026) Model Dimensions Max Tokens Best For voyage-3-large 1024 32000 Claude apps (Anthropic recommended) voyage-3 1024 32000 Claud...
3.4K
633 professional-communication softaworks/agent-toolkit
Professional Communication Overview This skill provides frameworks and guidance for effective professional communication in software development contexts. Whether you're writing an email to stakeholders, crafting a team chat message, or preparing meeting agendas, these principles help you communicate clearly and build professional credibility. Core principle: Effective communication isn't about proving how much you know - it's about ensuring your message is received and understood. When to Use T...
3.4K
634 meme-factory softaworks/agent-toolkit
Meme Factory Create memes using the free memegen.link API and textual meme formats. Triggers Trigger Description /meme-factory Manual invocation /meme-factory {template} {top} {bottom} Direct meme generation meme-factory: create a meme about X Natural language request Quick Reference Action Format Basic meme https://api.memegen.link/images/{template}/{top}/{bottom}.png With sizing ?width=1200&height=630 Custom background ?style=https://example.com/image.jpg All templates https://api.memegen.link...
3.4K
635 reducing-entropy softaworks/agent-toolkit
Reducing Entropy More code begets more code. Entropy accumulates. This skill biases toward the smallest possible codebase. Core question: "What does the codebase look like after ?" Before You Begin Load at least one mindset from references/ List the files in the reference directory Read frontmatter descriptions to pick which applies Load at least one State which you loaded and its core principle Do not proceed until you've done this. The Goal The goal is less total code in the final codebase - n...
3.4K
636 startup-financial-modeling wshobson/agents
Startup Financial Modeling Build comprehensive 3-5 year financial models with revenue projections, cost structures, cash flow analysis, and scenario planning for early-stage startups. Overview Financial modeling provides the quantitative foundation for startup strategy, fundraising, and operational planning. Create realistic projections using cohort-based revenue modeling, detailed cost structures, and scenario analysis to support decision-making and investor presentations. Core Components Reven...
3.4K
637 dependency-updater softaworks/agent-toolkit
Dependency Updater Smart dependency management for any language with automatic detection and safe updates. Quick Start update my dependencies The skill auto-detects your project type and handles the rest. Triggers Trigger Example Update dependencies "update dependencies", "update deps" Check outdated "check for outdated packages" Fix dependency issues "fix my dependency problems" Security audit "audit dependencies for vulnerabilities" Diagnose deps "diagnose dependency issues" Supported Language...
3.4K
638 domain-name-brainstormer softaworks/agent-toolkit
Domain Name Brainstormer This skill helps you find the perfect domain name for your project by generating creative options and checking what's actually available to register. When to Use This Skill Starting a new project or company Launching a product or service Creating a personal brand or portfolio site Rebranding an existing project Registering a domain for a side project Finding available alternatives when your first choice is taken What This Skill Does Understands Your Project : Analyzes wh...
3.4K
639 command-creator softaworks/agent-toolkit
Command Creator This skill guides the creation of Claude Code slash commands - reusable workflows that can be invoked with /command-name in Claude Code conversations. About Slash Commands Slash commands are markdown files stored in .claude/commands/ (project-level) or ~/.claude/commands/ (global/user-level) that get expanded into prompts when invoked. They're ideal for: Repetitive workflows (code review, PR submission, CI fixing) Multi-step processes that need consistency Agent delegation patter...
3.4K
640 c4-architecture softaworks/agent-toolkit
C4 Architecture Documentation Generate software architecture documentation using C4 model diagrams in Mermaid syntax. Workflow Understand scope - Determine which C4 level(s) are needed based on audience Analyze codebase - Explore the system to identify components, containers, and relationships Generate diagrams - Create Mermaid C4 diagrams at appropriate abstraction levels Document - Write diagrams to markdown files with explanatory context C4 Diagram Levels Select the appropriate level based on...
3.4K
641 marp-slide softaworks/agent-toolkit
Marp Slide Creator Create professional, visually appealing Marp presentation slides with 7 pre-designed themes and built-in best practices. When to Use This Skill Use this skill when the user: Requests to create presentation slides or Marp documents Asks to "make slides look good" or "improve slide design" Provides vague instructions like "良い感じにして" (make it nice) or "かっこよく" (make it cool) Wants to create lecture or seminar materials Needs bullet-point focused slides with occasional images Quick ...
3.4K
642 daily-meeting-update softaworks/agent-toolkit
Daily Meeting Update Generate a daily standup/meeting update through an interactive interview . Never assume tools are configured—ask first. Workflow START │ ▼ ┌─────────────────────────────────────────────────────┐ │ Phase 1: DETECT & OFFER INTEGRATIONS │ │ • Check: Claude Code history? gh CLI? jira CLI? │ │ • Claude Code → Pull yesterday's session digest │ │ → User selects relevant items via multiSelect │ │ • GitHub/Jira → Ask user, pull if approved │ │ • ...
3.4K
643 feedback-mastery softaworks/agent-toolkit
Feedback Conversations Overview This skill provides frameworks for navigating difficult workplace conversations and delivering effective feedback. Whether you're addressing performance issues, resolving conflicts, or giving constructive feedback, these structured approaches lead to better outcomes. Core insight: Research shows that employees who approach difficult conversations with preparation and a clear framework are 60% more likely to reach a positive resolution than those who engage without...
3.4K
644 difficult-workplace-conversations softaworks/agent-toolkit
Difficult Conversations Skill A structured framework for approaching challenging workplace conversations including conflicts, performance issues, sensitive feedback, and emotionally charged discussions. When to Use This Skill Preparing for a challenging conversation with a colleague Addressing performance issues with a team member Delivering difficult feedback to a peer or manager Navigating conflict between team members Discussing sensitive topics (salary, promotion, termination) Handling emoti...
3.4K
645 plugin-forge softaworks/agent-toolkit
CC Plugin Forge Purpose Build and manage Claude Code plugins with correct structure, manifests, and marketplace integration. Includes workflows, automation scripts, and reference docs. When to Use Creating new plugins for a marketplace Adding/modifying plugin components (commands, skills, agents, hooks) Updating plugin versions Working with plugin or marketplace manifests Setting up local plugin testing Publishing plugins Getting Started Create New Plugin Use create_plugin.py to generate plugin ...
3.4K
646 tailwindcss-advanced-layouts josiahsiegel/claude-plugin-marketplace
Tailwind CSS Advanced Layout Techniques CSS Grid Mastery Complex Grid Layouts <!-- Holy Grail Layout --> <div class="grid min-h-screen grid-rows-[auto_1fr_auto]"> <header class="bg-white shadow">Header</header> <div class="grid grid-cols-[250px_1fr_300px]"> <aside class="bg-gray-50 p-4">Sidebar</aside> <main class="p-6">Main Content</main> <aside class="bg-gray-50 p-4">Right Sidebar</aside> </div> <footer class="bg-gray-800 text-white">Footer</footer> </div> <!-- Responsive ...
3.4K
647 brief calm-north/seojuice-skills
Content Brief Produce a complete, editor-ready content brief covering intent analysis, competitive SERP review, content outline, E-E-A-T requirements, and SEO targets. Before You Start Gather this context (ask if not provided): Target keyword or topic. The primary keyword this content should rank for. Business context. What does the company do? What should readers do after reading (sign up, buy, contact)? Content type preference. Blog post, landing page, guide, comparison, tutorial? Audience. Wh...
3.4K
648 php-pro jeffallan/claude-skills
PHP Pro Senior PHP developer with deep expertise in PHP 8.3+, Laravel, Symfony, and modern PHP patterns with strict typing and enterprise architecture. Role Definition You are a senior PHP developer with 10+ years of experience building enterprise applications. You specialize in PHP 8.3+ with strict typing, Laravel/Symfony frameworks, async patterns (Swoole, ReactPHP), and PSR standards. You build scalable, maintainable applications with PHPStan level 9 compliance and 80%+ test coverage. Whe...
3.4K
649 build-links calm-north/seojuice-skills
Build Links Design a targeted link acquisition campaign using asset mapping, prospect scoring, and outreach sequence design. Before You Start Gather this context (ask if not provided): Domain and niche. What site needs links? What industry? Current backlink profile. Any idea of current referring domains count, domain rating/authority? Linkable assets. Does the site have: original research, tools, data, infographics, comprehensive guides? Budget and resources. Can the team invest in content creat...
3.4K
650 python-project-structure wshobson/agents
Python Project Structure & Module Architecture Design well-organized Python projects with clear module boundaries, explicit public interfaces, and maintainable directory structures. Good organization makes code discoverable and changes predictable. When to Use This Skill Starting a new Python project from scratch Reorganizing an existing codebase for clarity Defining module public APIs with __all__ Deciding between flat and nested directory structures Determining test file placement strategies C...
3.4K