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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,519
总 Skills
36.8M
总安装量
2,450
贡献者
# Skill 仓库 描述 安装量
7151 wix-cli-site-widget wix/skills
Wix Site Widget Builder Creates custom element widget extensions for Wix CLI applications. Site widgets are React components converted to web components that appear in the Wix Editor, allowing site owners to add interactive, configurable widgets to their pages with a built-in settings panel. Quick Start Checklist Follow these steps in order when creating a site widget: Create widget folder: src/extensions/site/widgets/custom-elements/<widget-name>/ Create widget.tsx with React component and reac...
289
7152 wix-cli-embedded-script wix/skills
Wix Embedded Script Builder Creates embedded script extensions for Wix CLI applications. Embedded scripts are HTML code fragments that get injected into the DOM of Wix sites, enabling integration with third-party services, analytics tracking, advertising, and custom JavaScript functionality. Quick Start Checklist Follow these steps in order when creating an embedded script: Create script folder: src/extensions/site/embedded-scripts/<script-name>/ Create embedded.html with config element, styles,...
289
7153 wix-cli-dashboard-modal wix/skills
Overview Dashboard modals are popup dialogs triggered from dashboard pages or plugins. They consist of three files and use the Dashboard SDK for lifecycle control via openModal() and closeModal() . Quick Reference Task Method Example Create modal Create 3 files in src/extensions/dashboard/modals/<folder>/ See File Structure below Open modal dashboard.openModal() openModal({ modalId: "modal-id" }) Pass data to modal params in openModal() params: { userId: "123" } Read data in modal observeState()...
289
7154 wix-cli-dashboard-page wix/skills
Wix Dashboard Page Builder Creates full-featured dashboard page extensions for Wix CLI applications. Dashboard pages appear in the Wix site owner's dashboard and enable site administrators to manage data, configure settings, and perform administrative tasks. Quick Start Checklist Follow these steps in order when creating a dashboard page: Create page folder: src/dashboard/pages/<page-name>/ Create page.tsx with WDS components wrapped in WixDesignSystemProvider Create extensions.ts with ex...
289
7155 wix-cli-service-plugin wix/skills
Wix Service Plugin (SPI) Builder Creates service plugin extensions for Wix CLI applications. Service plugins are a set of APIs defined by Wix that you can use to inject custom logic into the existing backend flows of Wix business solutions or to introduce entirely new flows to Wix sites. When you implement a service plugin, Wix calls your custom functions during specific flows. Common use cases include eCommerce customization (shipping, fees, taxes, validations), but service plugins can extend...
289
7156 create-agent-skills glittercowboy/taches-cc-resources
<essential_principles> How Skills Work Skills are modular, filesystem-based capabilities that provide domain expertise on demand. This skill teaches how to create effective skills. 1. Skills Are Prompts All prompting best practices apply. Be clear, be direct, use XML structure. Assume Claude is smart - only add context Claude doesn't have. 2. SKILL.md Is Always Loaded When a skill is invoked, Claude reads SKILL.md. Use this guarantee: Essential principles go in SKILL.md (can't be skipped) Workfl...
289
7157 ai-wrapper-product davila7/claude-code-templates
AI Wrapper Product Role: AI Product Architect You know AI wrappers get a bad rap, but the good ones solve real problems. You build products where AI is the engine, not the gimmick. You understand prompt engineering is product development. You balance costs with user experience. You create AI products people actually pay for and use daily. Capabilities AI product architecture Prompt engineering for products API cost management AI usage metering Model selection AI UX patterns Output quality con...
289
7158 c4-architecture davila7/claude-code-templates
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...
289
7159 tangzhan-skill-opencodeinsights tangc/tangzhan-skills
OpenCode Insights Analyst Role You are an elite Developer Productivity Analyst and Strategic Coach. Your goal is to analyze the user's OpenCode session history to generate a "OpenCode Insights" HTML report. Capabilities You verify and analyze: Work Patterns : identifying what projects/modules the user worked on. Tool Usage : analyzing which tools (Bash, Edit, Read, etc.) were used and how. Friction Points : finding errors, interruptions, user rejections, and "babysitting" moments. Strategic Hori...
289
7160 test-writer leonardomso/33-js-concepts
Skill: Test Writer for Concept Pages Use this skill to generate comprehensive Vitest tests for all code examples in a concept documentation page. Tests verify that code examples in the documentation are accurate and work as described. When to Use After writing a new concept page When adding new code examples to existing pages When updating existing code examples To verify documentation accuracy through automated tests Before publishing to ensure all examples work correctly Test Writing Methodo...
289
7161 superpowers-lab sickn33/antigravity-awesome-skills
Superpowers Lab Overview Lab environment for Claude superpowers When to Use This Skill Use this skill when you need to work with lab environment for claude superpowers. Instructions This skill provides guidance and patterns for lab environment for claude superpowers. For more information, see the source repository .
289
7162 pine-developer traderspost/pinescript-agents
Pine Script Developer Specialized in writing production-quality Pine Script v6 code for TradingView. ⚠️ CRITICAL: Pine Script Syntax Rules BEFORE writing ANY multi-line Pine Script code, remember: TERNARY OPERATORS (? :) - MUST stay on ONE line or use intermediate variables Line continuation - ALL continuation lines must be indented MORE than the starting line Common error: "end of line without line continuation" - caused by improper line breaks // ❌ NEVER DO THIS: text = condition ? "value1...
289
7163 vector-database-engineer sickn33/antigravity-awesome-skills
Vector Database Engineer Expert in vector databases, embedding strategies, and semantic search implementation. Masters Pinecone, Weaviate, Qdrant, Milvus, and pgvector for RAG applications, recommendation systems, and similarity search. Use PROACTIVELY for vector search implementation, embedding optimization, or semantic retrieval systems. Do not use this skill when The task is unrelated to vector database engineer You need a different domain or tool outside this scope Instructions Clarify goals...
289
7164 firecrawl-scrape parcadei/continuous-claude-v3
firecrawl scrape Scrape one or more URLs. Returns clean, LLM-optimized markdown. Multiple URLs are scraped concurrently. When to use You have a specific URL and want its content The page is static or JS-rendered (SPA) Step 2 in the workflow escalation pattern : search → scrape → map → crawl → interact Quick start Basic markdown extraction firecrawl scrape "<url>" -o .firecrawl/page.md Main content only, no nav/footer firecrawl scrape "<url>" --only-main-content -o .firecrawl/page.md Wait for ...
289
7165 api-error-handling aj-geddes/useful-ai-prompts
API Error Handling Overview Build robust error handling systems with standardized error responses, detailed logging, error categorization, and user-friendly error messages. When to Use Handling API errors consistently Debugging production issues Implementing error recovery strategies Monitoring error rates Providing meaningful error messages to clients Tracking error patterns Instructions 1. Standardized Error Response Format { "error": { "code": "VALIDATION_ERROR", "message": "Input...
289
7166 time series analysis aj-geddes/useful-ai-prompts
Time Series Analysis Overview Time series analysis examines data points collected over time to identify patterns, trends, and seasonality for forecasting and understanding temporal dynamics. When to Use Forecasting future values based on historical trends Detecting seasonality and cyclical patterns in data Analyzing trends over time in sales, stock prices, or website traffic Understanding autocorrelation and temporal dependencies Making time-based predictions with confidence intervals Decomposin...
289
7167 mcp-setup yeachan-heo/oh-my-claudecode
Configure Model Context Protocol (MCP) servers to extend Claude Code's capabilities with external tools like web search, file system access, and GitHub integration. Overview MCP servers provide additional tools that Claude Code agents can use. This skill helps you configure popular MCP servers using the `claude mcp add` command-line interface. Step 1: Show Available MCP Servers Present the user with available MCP server options using AskUserQuestion: Question: "Which MCP server would you ...
289
7168 debugging mrgoonie/claudekit-skills
Debugging When to use this skill Encountering runtime errors or exceptions Code produces unexpected output or behavior Performance degradation or memory issues Intermittent or hard-to-reproduce bugs Understanding unfamiliar error messages Post-incident analysis and prevention Instructions Step 1: Gather Information Collect all relevant context about the issue: Error details : Full error message and stack trace Error type (syntax, runtime, logic, etc.) When did it start occurring? Is it reproduci...
289
7169 shape-your-agent sanity-io/agent-context
Shape Your Agent An optional, conversational workflow for creating a system prompt for an AI agent that uses the Sanity Agent Context MCP. This is for users who control the system prompt in their agent setup. Don't have access to the system prompt? Skip this skill entirely. The Instructions field (configured via the dial-your-context skill) is the primary lever and works on its own. A minimal system prompt like "You are a helpful agent." combined with good Instructions field content scores 80%+ ...
289
7170 android-emulator-skill new-silvermoon/awesome-android-agent-skills
Android Emulator Skill Build, test, and automate Android applications using accessibility-driven navigation and structured data instead of pixel coordinates. Quick Start 1. Check environment bash scripts/emu_health_check.sh 2. Launch app python scripts/app_launcher.py --launch com.example.app 3. Map screen to see elements python scripts/screen_mapper.py 4. Tap button python scripts/navigator.py --find-text "Login" --tap 5. Enter text python scripts/navigator.py --find-type EditText --enter-...
289
7171 ionic mindrally/skills
Ionic Development You are an expert in Ionic for building cross-platform mobile applications. Core Principles Write concise, technical responses with accurate Ionic examples Use feature-based organization for scalable applications Leverage Ionic's built-in components for consistent UI Follow Angular best practices for Ionic Angular projects Project Structure Feature-Based Organization src/ ├── app/ │ ├── features/ │ │ ├── auth/ │ │ ├── home/ │ │ └── settings/ │ ├── shared/ │ ...
289
7172 pair-trade-screener tradermonty/claude-trading-skills
Pair Trade Screener Overview This skill identifies and analyzes statistical arbitrage opportunities through pair trading. Pair trading is a market-neutral strategy that profits from the relative price movements of two correlated securities, regardless of overall market direction. The skill uses rigorous statistical methods including correlation analysis and cointegration testing to find robust trading pairs. Core Methodology: Identify pairs of stocks with high correlation and similar sector/indu...
289
7173 qa-game opusgamelabs/game-creator
QA Game Add automated QA testing with Playwright to an existing game project. Tests verify your game boots, scenes work, scoring functions, and visuals haven't broken — like a safety net for your game. Instructions Analyze the game at $ARGUMENTS (or the current directory if no path given). First, load the game-qa skill to get the full testing patterns and fixtures. Step 1: Audit testability Read package.json to identify the engine and dev server port Read vite.config.js for the server port Read ...
289
7174 matplotlib-best-practices mindrally/skills
Matplotlib Best Practices Expert guidelines for Matplotlib development, focusing on data visualization, plotting, and creating publication-quality figures. Code Style and Structure Write concise, technical Python code with accurate Matplotlib examples Create informative and visually appealing plots with proper labels, titles, and legends Use the object-oriented API for complex figures, pyplot for quick plots Follow PEP 8 style guidelines Consider color-blindness accessibility in all visualizat...
289
7175 clawd-code-python-port aradotso/trending-skills
clawd-code Python Port Skill by ara.so — Daily 2026 Skills collection. What This Project Does clawd-code is an independent Python rewrite of the Claude Code agent harness, built from scratch for educational purposes. It captures the architectural patterns of Claude Code — tool wiring, command dispatch, task orchestration, and agent runtime context — in clean Python, without copying any proprietary TypeScript source. The project is orchestrated end-to-end using oh-my-codex (OmX) , a workflow laye...
289
7176 interactive-fiction jwynia/agent-skills
Interactive Fiction: Diagnostic Skill You diagnose problems in branching narratives and player-driven stories. Your role is to help writers balance meaningful player agency with coherent narrative. Core Principle Agency and authorship coexist. The tension between player freedom and narrative coherence is a false dilemma. The best interactive fiction provides meaningful choices, authored emotional payoff, and constrained agency within a designed possibility space. Interactive Fiction Types T...
289
7177 architecture-diagram cocoon-ai/architecture-diagram-generator
Architecture Diagram Skill Create professional technical architecture diagrams as self-contained HTML files with inline SVG graphics and CSS styling. Design System Color Palette Use these semantic colors for component types: Component Type Fill (rgba) Stroke Frontend rgba(8, 51, 68, 0.4) 22d3ee (cyan-400) Backend rgba(6, 78, 59, 0.4) 34d399 (emerald-400) Database rgba(76, 29, 149, 0.4) a78bfa (violet-400) AWS/Cloud rgba(120, 53, 15, 0.3) fbbf24 (amber-400) Security rgba(136, 19, 55, 0.4) fb7185 ...
289
7178 tdd-guide alirezarezvani/claude-skills
TDD Guide - Test Driven Development for Engineering Teams A comprehensive Test Driven Development skill that provides intelligent test generation, coverage analysis, framework integration, and TDD workflow guidance across multiple languages and testing frameworks. Capabilities Test Generation Generate Test Cases from Requirements: Convert user stories, API specs, and business requirements into executable test cases Create Test Stubs: Generate test function scaffolding with proper naming, impor...
289
7179 wix-cli-app-validation wix/skills
Wix App Validation Validates Wix CLI applications through a four-step sequential workflow: package installation, TypeScript compilation check, build, and preview. Non-Matching Intents Do NOT use this skill for: Creating new extensions → Use wix-cli-dashboard-page, wix-cli-embedded-script, etc. Deploying to production → This is for validation/testing only Unit testing → This skill validates build and preview, not unit tests Validation Workflow Execute these steps sequentially. Stop and repor...
288
7180 wix-cli-backend-api wix/skills
Wix Backend API Builder Creates HTTP endpoints for Wix CLI applications — server-side routes that handle HTTP requests, process data, and return responses. HTTP endpoints are powered by Astro endpoints and are automatically discovered from the file system. Key facts: Files live in src/pages/api/ with .ts extension Cannot be added via npm run generate — create files directly Don't appear on the Extensions page in the app dashboard No extension registration needed (auto-discovered) Replace the leg...
288
7181 wix-cli-site-plugin wix/skills
Wix Site Plugin Builder Creates site plugin extensions for Wix CLI applications. Site plugins are custom elements that integrate into predefined slots within Wix business solutions (like Wix Stores, Wix Bookings, Wix eCommerce), extending their functionality and user experience. Site owners can place site plugins into UI slots using the plugin explorer in Wix editors. Quick Start Checklist Follow these steps in order when creating a site plugin: Create plugin folder: src/extensions/site/plugins/...
288
7182 feishu-docx leemysw/feishu-docx
Export Feishu/Lark cloud documents to Markdown format for AI analysis. Instructions Setup (One-time) - Install the tool: ``` pip install feishu-docx ``` - Configure Feishu app credentials: ``` feishu-docx config set --app-id YOUR_APP_ID --app-secret YOUR_APP_SECRET or use environment variables ``` - Authorize with OAuth (opens browser): ``` feishu-docx auth ``` Export Documents Export any Feishu document URL to Markdown: ``` feishu-docx export "<FEISHU_URL>" -o ./output ``` T...
288
7183 stock-question-refiner liangdabiao/claude-code-stock-deep-research-agent
Stock Question Refiner Role You are a Stock Investment Research Question Refiner specializing in crafting structured investment research prompts. Your primary objectives are: Ask clarifying questions first to understand the user's investment context, style, and research needs Generate structured research prompts that follow professional investment due diligence standards Eliminate vague requests by defining clear research parameters Core Directives Do Not Provide Investment Advice: Focus on re...
288
7184 notebooklm davila7/claude-code-templates
NotebookLM Research Assistant Skill Interact with Google NotebookLM to query documentation with Gemini's source-grounded answers. Each question opens a fresh browser session, retrieves the answer exclusively from your uploaded documents, and closes. When to Use This Skill Trigger when user: Mentions NotebookLM explicitly Shares NotebookLM URL ( https://notebooklm.google.com/notebook/... ) Asks to query their notebooks/documentation Wants to add documentation to NotebookLM library Uses phrases li...
288
7185 income-tax kazukinagata/shinkoku
所得税計算(Income Tax Calculation) 事業所得・各種控除から所得税額を計算するスキル。 settlement スキルで決算書の作成が完了していることを前提とする。 計算結果は /e-tax スキル(Claude in Chrome)で確定申告書等作成コーナーに入力する。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : CLI スクリプトの --db-path 引数に使用 output_dir : 進捗ファイル等の出力先ベースディレクトリ 各ディレクトリ: ファイル参照時に使用 パス解決の例 config の db_path が ./shinkoku.db で CWD が /home/user/tax-2025/ の場合: shinkoku tax calc-income --input /home/user/tax-2025/output/income...
288
7186 web-security-testing sickn33/antigravity-awesome-skills
Web Security Testing Workflow Overview Specialized workflow for testing web applications against OWASP Top 10 vulnerabilities including injection attacks, XSS, broken authentication, and access control issues. When to Use This Workflow Use this workflow when: Testing web application security Performing OWASP Top 10 assessment Conducting penetration tests Validating security controls Bug bounty hunting Workflow Phases Phase 1: Reconnaissance Skills to Invoke scanning-tools - Security scanning top...
288
7187 docs buiducnhat/agent-skills
Docs Create and maintain project documentation in docs/ with a consistent, lightweight workflow. Parameters --init : Create documentation for the first time. --update : Refresh existing documentation without rewriting from scratch. Outputs Always maintain these files: docs/project-pdr.md — product goals, users, requirements docs/code-standard.md — stack, conventions, development rules docs/codebase.md — codebase map and key files docs/architecture.md — components, interactions, data flow Also ke...
288
7188 braintrust-analyze parcadei/continuous-claude-v3
Braintrust Analysis Analyze your Claude Code sessions for patterns, issues, and insights using Braintrust tracing data. When to Use After completing a complex task (retrospective) When debugging why something failed Weekly review of productivity patterns Finding opportunities to create new skills Understanding token usage trends Commands Run from the project directory: Analyze last session - summary with tool/agent/skill breakdown uv run python -m runtime.harness scripts/braintrust_analyze....
288
7189 php-pro sickn33/antigravity-awesome-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...
288
7190 commit parcadei/continuous-claude-v3
Sentry Commit Messages Follow these conventions when creating commits for Sentry projects. Prerequisites Before committing, always check the current branch: git branch --show-current If you're on main or master , you MUST create a feature branch first — unless the user explicitly asked to commit to main. Do not ask the user whether to create a branch; just proceed with branch creation. The create-branch skill will still propose a branch name for the user to confirm. Use the create-branch skill t...
288
7191 tailwind-4 prowler-cloud/prowler
Styling Decision Tree Tailwind class exists? → className="..." Dynamic value? → style={{ width: `${x}%` }} Conditional styles? → cn("base", condition && "variant") Static only? → className="..." (no cn() needed) Library can't use class?→ style prop with var() constants Critical Rules Never Use var() in className // ❌ NEVER: var() in className <div className="bg-[var(--color-primary)]" /> <div className="text-[var(--text-color)]" /> // ✅ ALWAYS: Use Tailwind semantic cl...
288
7192 microservices-architecture aj-geddes/useful-ai-prompts
Microservices Architecture Overview Comprehensive guide to designing, implementing, and maintaining microservices architectures. Covers service decomposition, communication patterns, data management, deployment strategies, and observability for distributed systems. When to Use Designing new microservices architectures Decomposing monolithic applications Implementing service-to-service communication Setting up API gateways and service mesh Implementing service discovery Managing distributed tra...
288
7193 zustand-5 prowler-cloud/prowler
Basic Store import { create } from "zustand"; interface CounterStore { count: number; increment: () => void; decrement: () => void; reset: () => void; } const useCounterStore = create<CounterStore>((set) => ({ count: 0, increment: () => set((state) => ({ count: state.count + 1 })), decrement: () => set((state) => ({ count: state.count - 1 })), reset: () => set({ count: 0 }), })); // Usage function Counter() { const { count, increment, decrement } = useCounterStore(); retur...
288
7194 react-render-optimization patternsdev/skills
React Render Optimization Table of Contents When to Use Instructions Details Source Practical patterns for eliminating unnecessary re-renders, reducing rendering cost, and keeping React UIs responsive. These patterns apply to any React application — whether you're using Vite, Next.js, Remix, or a custom setup. When to Use Reference these patterns when: Components re-render more often than expected UI feels sluggish during typing, scrolling, or interactions Profiler shows wasted renders in the co...
288
7195 speech-to-text inference-sh/skills
ElevenLabs Speech-to-Text Transcribe audio to text with Scribe v2 - supports 90+ languages, speaker diarization, and word-level timestamps. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs import ElevenLabs client = ElevenLabs ( ) with open ( "audio.mp3" , "rb" ) as audio_file : result = client . speech_to_text . convert ( file = audio_file , model_id = "scribe_v2" ) print ( result . text ) JavaScript import { ElevenLabsClient } ...
288
7196 background-removal inference-sh/skills
Background Removal Remove backgrounds from images via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login infsh app run infsh/birefnet --input '{"image_url": "https://your-photo.jpg"}' How To Use Reve for image editing including background changes: infsh app run falai/reve --input '{ "prompt": "remove the background, make it transparent", "image_url": "https://portrait.jpg" }' Or change backg...
288
7197 pandas-best-practices mindrally/skills
Pandas Best Practices Expert guidelines for Pandas development, focusing on data manipulation, analysis, and efficient DataFrame operations. Code Style and Structure Write concise, technical responses with accurate Python examples Prioritize reproducibility in data analysis workflows Use functional programming; avoid unnecessary classes Prefer vectorized operations over explicit loops Use descriptive variable names reflecting data content Follow PEP 8 style guidelines DataFrame Creation and I/...
288
7198 kafka-development mindrally/skills
Kafka Development You are an expert in Apache Kafka event streaming and distributed messaging systems. Follow these best practices when building Kafka-based applications. Core Principles Kafka is a distributed event streaming platform for high-throughput, fault-tolerant messaging Unlike traditional pub/sub, Kafka uses a pull model - consumers pull messages from partitions Design for scalability, durability, and exactly-once semantics where needed Leave NO todos, placeholders, or missing pieces...
288
7199 observability-edot-java-instrument elastic/agent-skills
EDOT Java Instrumentation Read the setup guide before making changes: EDOT Java setup OpenTelemetry Java agent EDOT Java configuration Guidelines Use elastic-otel-javaagent.jar (download from GitHub releases, not a Maven/Gradle dependency) Attach via -javaagent:/path/to/elastic-otel-javaagent.jar or JAVA_TOOL_OPTIONS="-javaagent:/path/to/elastic-otel-javaagent.jar" — without this the agent does nothing Set exactly three required environment variables: OTEL_SERVICE_NAME OTEL_EXPORTER_OTLP_ENDPOIN...
288
7200 motion-framer freshtechbro/claudedesignskills
Motion & Framer Motion Overview Motion (formerly Framer Motion) is a production-ready animation library for React and JavaScript that enables declarative, performant animations with minimal code. It provides motion components that wrap HTML elements with animation superpowers, supports gesture recognition (hover, tap, drag, focus), and includes advanced features like layout animations, exit animations, and spring physics. When to use this skill: Building interactive UI components (buttons, cards...
288