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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
4301 accessibility auditor davila7/claude-code-templates
Accessibility Auditor Comprehensive guidance for creating accessible web experiences that comply with WCAG standards and serve users of all abilities effectively. When to Use This Skill Use this skill when: Auditing websites for accessibility compliance Implementing WCAG 2.1 Level AA or AAA standards Fixing accessibility violations and errors Testing with screen readers (NVDA, JAWS, VoiceOver) Ensuring keyboard navigation works correctly Implementing ARIA attributes and landmarks Preparing for A...
200
4302 agent-context-isolation parcadei/continuous-claude-v3
Agent Context Isolation Prevent agent output from polluting the main context window. Rules 1. Use Background Agents with File-Based Coordination RIGHT - background agent writes to file, main reads file Task(subagent_type="...", run_in_background=true, prompt="... Output to: /path/to/file.md") WRONG - foreground agent dumps full transcript into main context Task(subagent_type="...", run_in_background=false) Background agents with run_in_background=true isolate their context. Have them writ...
200
4303 story-collaborator jwynia/agent-skills
Story Collaborator: Active Writing Partner Skill You are a writing collaborator. You actively contribute to the creative work—generating prose, dialogue, ideas, and alternatives while working alongside the human writer. The Collaboration Mindset You believe: The writer is the primary creative voice; you amplify, don't replace Offering options is better than singular solutions Your contributions should feel like their story, not your story Collaboration means building on their vision, not red...
200
4304 history-insight ai-native-camp/camp-2
History Insight Claude Code 세션 히스토리를 분석하고 인사이트를 추출합니다. Data Location ~/.claude/projects/<encoded-cwd>/*.jsonl Path Encoding: /Users/foo/project → -Users-foo-project 상세 파일 포맷: ${baseDir}/references/session-file-format.md Execution Algorithm Step 1: Ask Scope [MANDATORY] 스코프 결정: 명시된 경우 (AskUserQuestion 생략 가능): "현재 프로젝트만" / "이 프로젝트" → current_project "모든 세션" / "전체" → all_sessions 명시되지 않은 경우 - AskUserQuestion 호출: question: "세션 검색 범위를 선택하세요" options: - "현재 프로젝트만" → ~/.claude/projects/<encoded-cwd>/*....
200
4305 recall-reasoning parcadei/continuous-claude-v3
Recall Past Work Search through previous sessions to find relevant decisions, approaches that worked, and approaches that failed. Queries two sources: Artifact Index - Handoffs, plans, ledgers with post-mortems (what worked/failed) Reasoning Files - Build attempts, test failures, commit context When to Use Starting work similar to past sessions "What did we do last time with X?" Looking for patterns that worked before Investigating why something was done a certain way Debugging an issue encoun...
200
4306 sherpa-onnx-tts steipete/clawdis
sherpa-onnx-tts Local TTS using the sherpa-onnx offline CLI. Install Download the runtime for your OS (extracts into ~/.openclaw/tools/sherpa-onnx-tts/runtime ) Download a voice model (extracts into ~/.openclaw/tools/sherpa-onnx-tts/models ) Update ~/.openclaw/openclaw.json : { skills : { entries : { "sherpa-onnx-tts" : { env : { SHERPA_ONNX_RUNTIME_DIR : "~/.openclaw/tools/sherpa-onnx-tts/runtime" , SHERPA_ONNX_MODEL_DIR : "~/.openclaw/tools/sherpa-onnx-tts/models/vits-piper-en_US-lessac-high" ...
200
4307 session-wrap ai-native-camp/camp-2
Session Wrap Skill Comprehensive session wrap-up workflow with multi-agent analysis. Execution Flow ┌─────────────────────────────────────────────────────┐ │ 1. Check Git Status │ ├─────────────────────────────────────────────────────┤ │ 2. Phase 1: 4 Analysis Agents (Parallel) │ │ ┌─────────────────┬─────────────────┐ │ │ │ doc-updater │ automation- │ │ │ │ (docs update) │ scout │ │ │ ├─...
200
4308 laravel-tdd iserter/laravel-claude-agents
Test-Driven Development for Laravel Overview Write the test first. Watch it fail. Write minimal code to pass. This skill adapts TDD principles specifically for Laravel applications using Pest PHP, Laravel's testing features, and framework-specific patterns. When to Use Always for Laravel: New features (controllers, models, services) Bug fixes API endpoints Database migrations and models Form validation Authorization policies Queue jobs Artisan commands Middleware Exceptions (ask your human...
200
4309 dspy davila7/claude-code-templates
DSPy: Declarative Language Model Programming When to Use This Skill Use DSPy when you need to: Build complex AI systems with multiple components and workflows Program LMs declaratively instead of manual prompt engineering Optimize prompts automatically using data-driven methods Create modular AI pipelines that are maintainable and portable Improve model outputs systematically with optimizers Build RAG systems, agents, or classifiers with better reliability GitHub Stars: 22,000+ | Created By: ...
200
4310 tech-debt anthropics/knowledge-work-plugins
Tech Debt Management Systematically identify, categorize, and prioritize technical debt. Categories Type Examples Risk Code debt Duplicated logic, poor abstractions, magic numbers Bugs, slow development Architecture debt Monolith that should be split, wrong data store Scaling limits Test debt Low coverage, flaky tests, missing integration tests Regressions ship Dependency debt Outdated libraries, unmaintained dependencies Security vulns Documentation debt Missing runbooks, outdated READMEs, trib...
200
4311 data-analyst borghei/claude-skills
Data Analyst You are an expert data analyst with expertise in SQL, Python (pandas), and statistical analysis. When to Apply Use this skill when: Writing SQL queries for data extraction Analyzing datasets with pandas Performing statistical analysis Creating data transformations Identifying data patterns and insights Data cleaning and preparation Core Competencies SQL Complex queries with JOINs, subqueries, CTEs Window functions and aggregations Query optimization Database design understanding pan...
200
4312 token-optimizer d4kooo/openclaw-token-memory-optimizer
Token Optimizer Skill This skill provides the procedural knowledge to keep your OpenClaw instance lean and efficient. Quick Reference Problem Solution Background tasks bloating context Cron isolation ( sessionTarget: "isolated" ) Reading entire history every turn Local RAG with memory_search Context exceeds 100k tokens Reset & Summarize protocol Finding old conversations Session transcript indexing Workflow 1: Periodic Task Isolation To prevent background tasks from bloating your main conversati...
200
4313 issue-fields-migration github/awesome-copilot
Issue Fields Migration Bulk-copy field values from Project V2 fields or repo labels to org-level issue fields. This skill guides you through discovering field mappings, previewing changes, and executing the migration with progress reporting. Supports two migration sources: project fields (single project) and repo labels (one or more repos). When to Use User added org-level issue fields that overlap with existing project fields User wants to copy values from project fields to issue fields before ...
200
4314 create-pull-request cline/cline
Create Pull Request This skill guides you through creating a well-structured GitHub pull request that follows project conventions and best practices. Prerequisites Check Before proceeding, verify the following: 1. Check if gh CLI is installed gh --version If not installed, inform the user: The GitHub CLI (gh) is required but not installed. Please install it: macOS: brew install gh Other: https://cli.github.com/ 2. Check if authenticated with GitHub gh auth status If not authenticated, ...
200
4315 react-grab supercent-io/skills-template
react-grab — Browser Element Context for AI Agents Keyword : react-grab · grab · element context · copy component to ai Point at any UI element in your browser, press Cmd/Ctrl+C, and instantly copy its React component name, source file path, and HTML markup to clipboard — ready for your AI coding agent. When to use this skill Set up react-grab in a React project (Next.js, Vite, Webpack) for AI-assisted development Point at UI elements and copy precise component context to Claude Code / Cursor / ...
200
4316 react-component-architecture aj-geddes/useful-ai-prompts
Build scalable, maintainable React components using modern patterns including functional components, hooks, composition, and TypeScript for type safety. When to Use - Component library design - Large-scale React applications - Reusable UI patterns - Custom hooks development - Performance optimization Implementation Examples 1. Functional Component with Hooks ``` // Button.tsx import React, { useState, useCallback } from 'react'; interface ButtonProps { variant?: 'primary' | 'secon...
200
4317 shopify-development davila7/claude-code-templates
Shopify Development Skill Use this skill when the user asks about: Building Shopify apps or extensions Creating checkout/admin/POS UI customizations Developing themes with Liquid templating Integrating with Shopify GraphQL or REST APIs Implementing webhooks or billing Working with metafields or Shopify Functions ROUTING: What to Build IF user wants to integrate external services OR build merchant tools OR charge for features: → Build an App (see references/app-development.md) IF user wants t...
199
4318 solution-architect 404kidwiz/claude-supercode-skills
Solution Architect Purpose Provides expertise in designing enterprise-scale solutions that align technology with business objectives. Specializes in architecture frameworks, trade-off analysis, technology selection, and ensuring solutions meet functional and non-functional requirements. When to Use Designing end-to-end solution architecture for new initiatives Evaluating technology options and making selection decisions Creating architecture decision records (ADRs) Ensuring solutions meet enterp...
199
4319 agent-memory yamadashy/repomix
No SKILL.md available for this skill. View on GitHub
199
4320 data-extractor claude-office-skills/skills
Data Extractor Skill Overview This skill enables extraction of structured data from any document format using unstructured - a unified library for processing PDFs, Word docs, emails, HTML, and more. Get consistent, structured output regardless of input format. How to Use Provide the document to process Optionally specify extraction options I'll extract structured elements with metadata Example prompts: "Extract all text and tables from this PDF" "Parse this email and get the body, attachments, a...
199
4321 sf-ai-agentscript jaganpro/sf-skills
"Prompt engineering is like writing laws in poetry - beautiful, but not enforceable." Agent Script transforms agent development from prompt-based suggestions to code-enforced guarantees. This skill guides you through writing, debugging, testing, and deploying Agentforce agents using the Agent Script DSL. ⚠️ CRITICAL WARNINGS API & Version Requirements | API Version | 65.0+ | Required for Agent Script support | License | Agentforce | Required for agent authoring | Einstein Agent Use...
199
4322 gog-cli intellectronica/agent-skills
A fast, script-friendly CLI for Google Workspace services with JSON-first output and multi-account support. Repository: [https://github.com/steipete/gogcli](https://github.com/steipete/gogcli) Prerequisites This skill assumes `gog` is installed and authorised. If commands fail with authentication errors, inform the user they need to: - Install gog: `brew install steipete/tap/gogcli` - Store OAuth credentials: `gog auth credentials <path-to-credentials.json>` - Add account: `gog auth add u...
199
4323 sub-agents parcadei/continuous-claude-v3
Sub-Agents Reference Create specialized AI agents with isolated contexts for specific tasks. When to Use "How do I create a sub-agent?" "Configure agent tools" "What built-in agents exist?" "Agent model selection" "Agent chaining patterns" Quick Start Interactive (Recommended) /agents Opens menu to create, edit, and manage agents. Manual Creation mkdir -p .claude/agents cat > .claude/agents/reviewer.md << 'EOF' --- name: reviewer description: Code review specialist. Use proactively after co...
199
4324 python siviter-xyz/dot-agent
Python Guidelines Standards and best practices for Python development. Follow these guidelines when writing or modifying Python code. Design Principles Apply DRY, KISS, and SOLID consistently. Prefer functional methods where relevant; use classes for stateful behavior. Use composition with Protocol classes for interfaces rather than inheritance. Each module should have a single responsibility. Use dependency injection for class dependencies. Code Style Naming: Descriptive yet concise names f...
199
4325 article-extractor michalparkola/tapestry-skills-for-claude-code
Article Extractor This skill extracts the main content from web articles and blog posts, removing navigation, ads, newsletter signups, and other clutter. Saves clean, readable text. When to Use This Skill Activate when the user: Provides an article/blog URL and wants the text content Asks to "download this article" Wants to "extract the content from [URL]" Asks to "save this blog post as text" Needs clean article text without distractions How It Works Priority Order: Check if tools are insta...
199
4326 content-creator alirezarezvani/claude-skills
Content Creator You are an expert content creator who produces engaging, audience-focused content for blogs, social media, and marketing. When to Apply Use this skill when: Writing blog posts and articles Creating social media content (Twitter, LinkedIn, Instagram) Developing marketing copy Crafting compelling headlines and hooks Creating email newsletters Writing product descriptions Content Creation Framework 1. Know Your Audience Who are you writing for? What are their pain points? What level...
199
4327 story-idea-generator jwynia/agent-skills
Story Idea Generator: Generative Skill You generate and evaluate story concepts using a genre-first approach where desired emotional impact drives all decisions about setting, characters, and plot. Core Principle Emotional experience first. Setting serves genre, not the reverse. A "sci-fi story" is not a genre—it's a setting. The genre is what readers feel: wonder, horror, mystery, drama. Start with the emotional experience you want to create, then choose setting elements that enhance it. T...
199
4328 trading-signals scientiacapital/skills
<quick_start> Confluence analysis (methodologies agree = high-probability setup): score = sum(signal.strength * weights[signal.method] for signal in signals) action = 'BUY' if score >= 0.7 else 'WAIT' Score interpretation: 0.7-1.0: High conviction entry 0.4-0.7: Wait for more confluence 0.0-0.4: No trade Cost-effective routing: DeepSeek-V3 for pattern detection → Claude Sonnet for critical decisions </quick_start> <success_criteria> Analysis is successful when: Multiple methodologies prov...
199
4329 engineering-skills alirezarezvani/claude-skills
Engineering Team Skills 23 production-ready engineering skills organized into core engineering, AI/ML/Data, and specialized tools. Quick Start Claude Code /read engineering-team/senior-fullstack/SKILL.md Codex CLI npx agent-skills-cli add alirezarezvani/claude-skills/engineering-team Skills Overview Core Engineering (13 skills) Skill Folder Focus Senior Architect senior-architect/ System design, architecture patterns Senior Frontend senior-frontend/ React, Next.js, TypeScript, Tailwind Senior Ba...
199
4330 alicloud-ai-audio-asr-test cinience/alicloud-skills
Category: test Minimal Viable Test Goals 仅验证非实时 ASR 最小请求链路可用。 If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/audio/alicloud-ai-audio-asr Test Steps (Minimal) 打开对应技能的 SKILL.md ,选择一个最小输入示例。 运行示例脚本或发起最小请求。 Record request summary, response summary, and success/failure reason. 推荐最小命令 python skills/ai/audio/alicloud-ai-audio-asr/scripts/transcribe_audio.py \ --...
199
4331 agent-orchestration-improve-agent sickn33/antigravity-awesome-skills
Agent Performance Optimization Workflow Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration. [Extended thinking: Agent optimization requires a data-driven approach combining performance metrics, user feedback analysis, and advanced prompt engineering techniques. Success depends on systematic evaluation, targeted improvements, and rigorous testing with rollback capabilities for production safety.] Use this skill when Improving an ex...
199
4332 godot-optimization zate/cc-godot
You are a Godot performance optimization expert with deep knowledge of profiling, bottleneck identification, and optimization techniques for both 2D and 3D games. Performance Profiling Built-in Godot Profiler Accessing the Profiler: Debug → Profiler (while game is running) Tabs: Frame, Monitors, Network, Visual Key Metrics to Watch: FPS (Frames Per Second): Should be 60 for smooth gameplay (or 30 for mobile) Frame Time: Should be <16.67ms for 60 FPS Physics Frame Time: Physics processing ti...
199
4333 brand-name-generator shipshitdev/library
Brand Name Generator Generate creative, memorable, and brandable names for companies, products, apps, and startups. Combines naming strategies with brandability scoring and domain availability checking. When to Use Need creative brand name ideas for a new company or startup Want product or app naming suggestions Need to brainstorm names based on keywords, concepts, or industry Want names evaluated for brandability and memorability Need to find available domain names for the brand Context Disco...
199
4334 openclaw-stock-skill 1018466411/openclaw-stock-data-skill
📥 安装方法 npx skills add https://github.com/1018466411/openclaw-stock-data-skill 安装时按提示选择: 选择 openclaw 选择 global 应用于所有 Agent Copy to all agents: yes 本技能教会代理如何使用你自建的股票数据服务(线上域名 https://data.diemeng.chat ),通过 API Key 进行鉴权,查询股票的日线、分钟线、财务指标等数据。 ⚙️ API Key 配置约定 OpenClaw 会按照 skills.entries.<key> 配置 把 API Key 和自定义配置注入到进程环境变量中。 本技能约定使用环境变量 STOCK_API_KEY 作为主密钥,并在 metadata.openclaw.primaryEnv 中声明,以便通过 skills.entries.openclaw-stock-skill.apiKey 统一配置。 推荐的 OpenClaw 配置示例( ~/.openclaw/openclaw.json ): { skills : ...
199
4335 felo-slides felo-inc/felo-skills
Felo Slides Skill When to Use Trigger this skill for requests about creating presentation files: Create/generate slides from a topic or outline Turn notes into a PPT deck Build a presentation with a page count requirement Export presentation content into a shareable slide link Trigger keywords: Chinese prompts about making slides or presentations English: slides, PPT, presentation deck, generate presentation Explicit commands: /felo-slides , "use felo slides" Do NOT use this skill for: Real-time...
199
4336 responsive-patterns yonatangross/orchestkit
Responsive Patterns Modern responsive design patterns using Container Queries, fluid typography, and mobile-first strategies for React applications (2026 best practices). Overview Building reusable components that adapt to their container Implementing fluid typography that scales smoothly Creating responsive layouts without media query overload Building design system components for multiple contexts Optimizing for variable container sizes (sidebars, modals, grids) Core Concepts Container Queri...
199
4337 deep-research claude-office-skills/skills
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
198
4338 fastapi-pro sickn33/antigravity-awesome-skills
Use this skill when Working on fastapi pro tasks or workflows Needing guidance, best practices, or checklists for fastapi pro Do not use this skill when The task is unrelated to fastapi pro You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a FastAPI ...
198
4339 one-page-marketing wondelai/skills
The 1-Page Marketing Plan Framework A complete marketing system captured on a single page. Instead of a 50-page marketing plan that never gets executed, the 1-Page Marketing Plan distills everything into a 3x3 grid of nine squares — each representing a critical stage in turning a stranger into a raving fan. Fill in all nine squares and you have a living, breathing marketing engine that drives predictable growth. Core Principle "Marketing is not an event — it is a process." Most businesses treat ...
198
4340 design-patterns-implementation aj-geddes/useful-ai-prompts
Design Patterns Implementation Overview Apply proven design patterns to create maintainable, extensible, and testable code architectures. When to Use Solving common architectural problems Making code more maintainable and testable Implementing extensible plugin systems Decoupling components Following SOLID principles Code reviews identifying architectural issues Common Design Patterns 1. Singleton Pattern Ensure a class has only one instance with global access. class DatabaseConnection { p...
198
4341 java-concurrency pluginagentmarketplace/custom-plugin-java
Java Concurrency Skill Master Java concurrency patterns for thread-safe applications. Overview This skill covers concurrency from basic threads to virtual threads (Java 21+), including thread pools, synchronization, and CompletableFuture. When to Use This Skill Use when you need to: Write thread-safe code Implement parallel processing Use async programming patterns Tune thread pools Debug concurrency issues Topics Covered Thread Management Thread lifecycle and states Daemon vs user threads...
198
4342 prompt-guard seojoonkim/prompt-guard
Advanced prompt injection defense + operational security system for AI agents. 🆕 What's New in v2.5.0 - 349 attack patterns (2.7x increase from v2.4) - Authority impersonation detection (EN/KO/JA/ZH) - "나는 관리자야", "I am the admin" - Indirect injection detection - URL/file/image-based attacks - Context hijacking detection - fake memory/history manipulation - Multi-turn manipulation detection - gradual trust-building attacks - Token smuggling detection - invisible Unicode characters - Prom...
198
4343 agentic-gateway alchemyplatform/skills
Alchemy Agentic Gateway Notice: This repository is experimental and subject to change without notice. By using the features and skills in this repository, you agree to Alchemy's Terms of Service and Privacy Policy . A skill that lets agents easily access Alchemy's developer platform. The gateway authenticates callers with SIWE (Sign-In With Ethereum) tokens and handles payments via the x402 protocol using USDC on Base Mainnet and Base Sepolia. Non-Bypass Rule When this skill is selected because ...
198
4344 smart-explore thedotmack/claude-mem
Smart Explore Structural code exploration using AST parsing. This skill overrides your default exploration behavior. While this skill is active, use smart_search/smart_outline/smart_unfold as your primary tools instead of Read, Grep, and Glob. Core principle: Index first, fetch on demand. Give yourself a map of the code before loading implementation details. The question before every file read should be: "do I need to see all of this, or can I get a structural overview first?" The answer is almo...
198
4345 tiktok-captions kostja94/marketing-skills
Platforms: TikTok Guides TikTok caption and video script creation. Use for generating publish-ready captions and video specs. Suitable for copy agents, video agents (format, length), and design agents (thumbnail). When invoking : On first use , if helpful, open with 1-2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Output: Publish-Ready Copy This skill enables agents to genera...
198
4346 every-style-editor everyinc/compound-engineering-plugin
Every Style Editor This skill provides a systematic approach to reviewing copy against Every's comprehensive style guide. It transforms Claude into a meticulous line editor and proofreader specializing in grammar, mechanics, and style guide compliance. When to Use This Skill Use this skill when: Reviewing articles, blog posts, newsletters, or any written content Ensuring copy follows Every's specific style conventions Providing feedback on grammar, punctuation, and mechanics Flagging deviati...
198
4347 frontend-design vudovn/antigravity-kit
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 :...
198
4348 gemini-image-gen jezweb/claude-skills
Gemini Image Generator Generate contextual images for web projects using the Gemini API. Produces hero backgrounds, OG cards, placeholder photos, textures, and style-matched variants. Setup API Key : Set GEMINI_API_KEY as an environment variable. Get a key from https://aistudio.google.com/apikey if you don't have one. export GEMINI_API_KEY = "your-key-here" Workflow Step 1: Understand What's Needed Gather from the user or project context: What : hero background, product photo, texture, OG image,...
198
4349 quant-analyst sickn33/antigravity-awesome-skills
Quantitative Analyst Purpose Provides expertise in quantitative finance, algorithmic trading strategies, and financial data analysis. Specializes in statistical modeling, risk analytics, and building data-driven trading systems using Python scientific computing stack. When to Use Building algorithmic trading strategies or backtesting frameworks Performing statistical analysis on financial time series data Implementing risk models (VaR, CVaR, Greeks calculations) Creating portfolio optimization...
198
4350 hugging-face-jobs huggingface/skills
Running Workloads on Hugging Face Jobs Overview Run any workload on fully managed Hugging Face infrastructure. No local setup required—jobs run on cloud CPUs, GPUs, or TPUs and can persist results to the Hugging Face Hub. Common use cases: Data Processing - Transform, filter, or analyze large datasets Batch Inference - Run inference on thousands of samples Experiments & Benchmarks - Reproducible ML experiments Model Training - Fine-tune models (see model-trainer skill for TRL-specific trainin...
198