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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
7401 social-media-trends-research drshailesh88/integrated_content_os
Programmatic trend research using three free tools: - pytrends: Google Trends data (velocity, volume, related queries) - yars: Reddit scraping without API keys - Perplexity MCP: Twitter/TikTok/Web trends (via Claude's built-in MCP) This skill provides executable code for trend research. Use alongside `content-marketing-social-listening` for strategy and `perplexity-search` for deep queries. Quick Setup ``` Install dependencies (one-time) pip install pytrends requests --break-system-packa...
456
7402 widgets-ui inference-sh/skills
Widget Renderer Declarative UI from JSON via ui.inference.sh . Quick Start npx shadcn@latest add https://ui.inference.sh/r/widgets.json Basic Usage import { WidgetRenderer } from "@/registry/blocks/widgets/widget-renderer" import type { Widget , WidgetAction } from "@/registry/blocks/widgets/types" const widget : Widget = { type : 'ui' , title : 'My Widget' , children : [ { type : 'text' , value : 'Hello World' } , { type : 'button' , label : 'Click me' , onClickAction : { type : 'click' } } , ]...
455
7403 dsl-dynamic-stop-loss senpi-ai/senpi-skills
Dynamic Stop Loss (DSL) v5 Scope — DSL only. This skill is responsible only for setting up dynamic/trailing stop loss (DSL). It does not handle normal (static) stop loss. If the user refers to "stop loss" without clearly meaning DSL or normal SL, ask for clarification (e.g. "Do you want a trailing stop that moves up with profit, or a fixed price stop loss?") before acting. Communication with users. When explaining or confirming setup to the end user, use plain language (e.g. "trailing stop", "dy...
455
7404 grepai-troubleshooting yoanbernabeu/grepai-skills
This skill provides solutions for common GrepAI issues and diagnostic procedures. When to Use This Skill - GrepAI not working as expected - Search returning poor results - Index not updating - Connection or configuration errors Quick Diagnostics Run these commands to understand your setup: ``` Check GrepAI version grepai version Check project status grepai status Check Ollama (if using) curl http://localhost:11434/api/tags Check config cat .grepai/config.yaml ``` Common Issue...
455
7405 grepai-config-reference yoanbernabeu/grepai-skills
This skill provides a complete reference for all GrepAI configuration options in `.grepai/config.yaml`. When to Use This Skill - Understanding all available configuration options - Optimizing GrepAI for your specific use case - Troubleshooting configuration issues - Setting up advanced configurations Configuration File Location ``` /your/project/.grepai/config.yaml ``` Complete Configuration Schema ``` version: 1 ═══════════════════════════════════════════════════════════════ EMB...
455
7406 weibo-hot-search agentbay-ai/agentbay-skills
微博热搜查询 依赖 python3 -m pip install wuying-agentbay-sdk 安装步骤 在使用此技能之前,请确保已安装必要的依赖包: python3 -m pip install wuying-agentbay-sdk 使用场景 用户想查询微博热搜榜单 用户想了解文娱类热搜话题 用户想筛选特定热度以上的热搜内容 使用方法 python3 scripts/browser-use.py "<任务执行步骤>" 快速示例 python3 scripts/browser-use.py " \ 1. 前往微博网站 https://weibo.com/ \ 2. 点击左侧菜单中的微博热搜下的文娱分类 \ 3. 你需要提取榜单中前十条热搜消息 \ 4. 以markdown格式返回所有符合条件的热搜信息 " 输出格式 微博热搜 - 文娱分类 热搜列表(热度 ≥ 50000) 1. 话题名称 - 热度: xxx - 排名: xxx 2. 话题名称 - 热度: xxx - 排名: xxx 统计信息 - 总计: xx条热搜 - 最高热度: xxxxx - 最低热度: ...
455
7407 ce-sessions everyinc/compound-engineering-plugin
Contains Shell Commands This skill contains shell command directives ( !`command` ) that may execute system commands. Review carefully before installing. /ce-sessions Search session history across Claude Code, Codex, and Cursor and synthesize findings about what was worked on, tried, decided, or learned in prior sessions. Usage /ce-sessions [question or topic] /ce-sessions Pre-resolved context Git branch (pre-resolved): ! git rev-parse --abbrev-ref HEAD 2>/dev/null || true If the line above reso...
455
7408 threejs-skills sickn33/antigravity-awesome-skills
Threejs Skills Overview Three.js skills for creating 3D elements and interactive experiences When to Use This Skill Use this skill when you need to work with three.js skills for creating 3d elements and interactive experiences. Instructions This skill provides guidance and patterns for three.js skills for creating 3d elements and interactive experiences. For more information, see the source repository .
455
7409 docx davila7/claude-code-templates
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
455
7410 playwright-skill davila7/claude-code-templates
IMPORTANT - Path Resolution: This skill can be installed in different locations (plugin system, manual installation, global, or project-specific). Before executing any commands, determine the skill directory based on where you loaded this SKILL.md file, and use that path in all commands below. Replace $SKILL_DIR with the actual discovered path. Common installation paths: Plugin system: ~/.claude/plugins/marketplaces/playwright-skill/skills/playwright-skill Manual global: ~/.claude/skills/playwri...
455
7411 ddd:setup-code-formating neolabhq/context-engineering-kit
Setup Architecture Memory Create or update CLAUDE.md in with following content, write it strictly as it is, do not summaraise or introduce and new additional information: Code Style Rules Code Formatting - No semicolons (enforced) - Single quotes (enforced) - No unnecessary curly braces (enforced) - 2-space indentation - Import order: external → internal → types
454
7412 cypress bobmatnyc/claude-mpm-skills
Cypress (E2E + Component Testing) Overview Cypress runs browser automation with first-class network control, time-travel debugging, and a strong local dev workflow. Use it for critical path E2E tests and for component tests when browser-level rendering matters. Quick Start Install and open npm i -D cypress npx cypress open Minimal spec // cypress/e2e/health.cy.ts describe("health", () => { it("loads", () => { cy.visit("/"); cy.contains("Hello").should("be.visible"); }); }); Core ...
454
7413 rev-struct p4nda0s/reverse-skills
rev-struct - Structure Recovery Recover data structure definitions by analyzing memory access patterns in functions and their call chains. Pre-check Determine which IDA access method is available: Option A — IDA Pro MCP (preferred if connected): Check if the IDA Pro MCP server is connected (look for an active ida-pro or equivalent MCP connection). If connected, you can query IDA directly via MCP tools — no exported files needed. Proceed with the analysis using MCP. Option B — IDA-NO-MCP exported...
454
7414 code-documentation bytedance/deer-flow
Code Documentation Skill Overview This skill generates professional, comprehensive documentation for software projects, codebases, libraries, and APIs. It follows industry best practices from projects like React, Django, Stripe, and Kubernetes to produce documentation that is accurate, well-structured, and useful for both new contributors and experienced developers. The output ranges from single-file READMEs to multi-document developer guides, always matched to the project's complexity and the u...
454
7415 video starchild-ai-agent/official-skills
No SKILL.md available for this skill. View on GitHub
454
7416 ce-ideate everyinc/compound-engineering-plugin
Generate Improvement Ideas Note: The current year is 2026. Use this when dating ideation documents and checking recent ideation artifacts. ce-ideate precedes ce-brainstorm . ce-ideate answers: "What are the strongest ideas worth exploring?" ce-brainstorm answers: "What exactly should one chosen idea mean?" ce-plan answers: "How should it be built?" This workflow produces a ranked ideation artifact in docs/ideation/ . It does not produce requirements, plans, or code. Interaction Method Use the pl...
454
7417 muapi-cinema-director samuraigpt/generative-media-skills
🎬 AI Cinema Director Skill A specialized skill for AI Agents to direct high-fidelity cinematic video. The Cinema Director skill translates high-level creative intent into technical cinematographic directives for state-of-the-art video models (Veo3, Kling, Luma). Core Competencies Shot Composition Analysis : Mapping emotional beats to appropriate framing (e.g., Extreme Close-Up for intimacy, Wide Shot for isolation). Camera Movement Orchestration : Directing complex physical movements (Dolly, Tru...
454
7418 autopilot yeachan-heo/oh-my-claudecode
Autopilot Skill Full autonomous execution from idea to working code. Overview Autopilot is the ultimate hands-off mode. Give it a brief product idea (2-3 lines) and it handles everything: Understands your requirements (Analyst) Designs the technical approach (Architect) Plans the implementation (Critic-validated) Builds with parallel agents (Ralph + Ultrawork) Tests until everything passes (UltraQA) Validates quality and security (Multi-architect review) Usage /oh-my-claudecode:autopilot <yo...
454
7419 ce-slack-research everyinc/compound-engineering-plugin
/ce-slack-research Search Slack for organizational context and receive an interpreted research digest. Usage /ce-slack-research [topic or question] /ce-slack-research Examples /ce-slack-research free trial /ce-slack-research What did we say about free trial recently? /ce-slack-research free trial in proj-reverse-trial /ce-slack-research onboarding flow after:2026-03-01 Show more
454
7420 processize slavingia/skills
You are a business advisor channeling the philosophy of The Minimalist Entrepreneur by Sahil Lavingia. Help the user turn their product idea into a manual process they can start delivering today - before they write a single line of code. Core Principle Processize before you productize. Every great product started as someone doing the work by hand. Gumroad started with Sahil collecting PayPal emails and sending payments to creators one by one. Your product should start the same way. "Most apps on...
454
7421 zustand-state-management mindrally/skills
Zustand State Management Last Updated: 2026-01-21 Latest Version: zustand@5.0.10 (released 2026-01-12) Dependencies: React 18-19, TypeScript 5+ Quick Start npm install zustand TypeScript Store (CRITICAL: use create<T>()() double parentheses): import { create } from 'zustand' interface BearStore { bears: number increase: (by: number) => void } const useBearStore = create<BearStore>()((set) => ({ bears: 0, increase: (by) => set((state) => ({ bears: state.bears + by })), })) Use in...
454
7422 android-testing new-silvermoon/awesome-android-agent-skills
No SKILL.md available for this skill. View on GitHub
454
7423 competitor-alternatives sickn33/antigravity-awesome-skills
Competitor & Alternative Pages You are an expert in creating competitor comparison and alternative pages. Your goal is to build pages that rank for competitive search terms, provide genuine value to evaluators, and position your product effectively. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not...
454
7424 cloudbase-guidelines tencentcloudbase/skills
CloudBase Development Guidelines 💡 Recommended: MCP Installation For enhanced CloudBase development experience, we recommend installing CloudBase MCP (Model Context Protocol). CloudBase MCP provides essential tools for CloudBase development, including environment management, function deployment, database operations, and more. While not required, installing MCP will significantly improve your development workflow. MCP Configuration Instructions Most Coding Agents support project-level MCP configu...
453
7425 muapi-media-generation samuraigpt/generative-media-skills
🎨 MuAPI Media Generation Schema-driven generation primitives for images, videos, and audio. Generate professional-grade media directly from the terminal using 100+ state-of-the-art AI models. All scripts are powered by schema_data.json for dynamic model and endpoint resolution. Available Scripts Script Description Default Model generate-image.sh Text-to-image generation flux-dev generate-video.sh Text-to-video generation minimax-pro image-to-video.sh Animate a static image into video kling-pro c...
453
7426 tvos-design-guidelines ehmo/platform-design-skills
tvOS Design Guidelines Apple TV is a living room device driven entirely by focus-based navigation and the Siri Remote. There is no pointer, no touch screen, and no mouse. Every design decision must account for the 10-foot viewing distance, the simplicity of the remote, and the lean-back nature of TV consumption. 1. Focus-Based Navigation (CRITICAL) The focus system is the foundation of all tvOS interaction. There is no cursor -- users move focus between elements using the Siri Remote touch surfa...
453
7427 design-qa-checklist owl-listener/designer-skills
Design QA Checklist You are an expert in creating systematic QA checklists for verifying design implementation. What You Do You create checklists that help designers systematically verify that implementations match design specifications. QA Categories Visual Accuracy Colors match design tokens Typography matches specified styles Spacing and sizing match specs Border radius, shadows, opacity correct Icons are correct size and color Images are correct aspect ratio and quality Layout Grid alignment...
453
7428 competitor-analysis aj-geddes/useful-ai-prompts
Competitor Analysis SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · aler...
453
7429 skill-creation-guide davila7/claude-code-templates
Skill Creator This skill provides guidance for creating effective skills. About Skills Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge that no model can fully possess. What Skills Provide Specialized workflows - Multi-step procedu...
453
7430 react-ui-patterns davila7/claude-code-templates
React UI Patterns Core Principles Never show stale UI - Loading spinners only when actually loading Always surface errors - Users must know when something fails Optimistic updates - Make the UI feel instant Progressive disclosure - Show content as it becomes available Graceful degradation - Partial data is better than no data Loading State Patterns The Golden Rule Show loading indicator ONLY when there's no data to display. // CORRECT - Only show loading when no data exists const { data , loadin...
453
7431 yuque-personal-knowledge-connect yuque/yuque-plugin
Knowledge Connect — Discover Document Relationships & Build Knowledge Networks Help the user discover hidden connections between their documents, find related content, and build a knowledge network with bidirectional links across their personal Yuque knowledge base. When to Use User wants to find documents related to a specific topic User says "有哪些相关文档", "find related docs", "帮我建立知识关联" User wants to build a knowledge map or graph for a topic User says "这个主题还有哪些相关的", "帮我串联一下知识", "构建知识图谱" Required...
453
7432 customaize-agent:agent-evaluation neolabhq/context-engineering-kit
Evaluation Methods for Claude Code Agents Evaluation of agent systems requires different approaches than traditional software or even standard language model applications. Agents make dynamic decisions, are non-deterministic between runs, and often lack single correct answers. Effective evaluation must account for these characteristics while providing actionable feedback. A robust evaluation framework enables continuous improvement, catches regressions, and validates that context engineering cho...
452
7433 git:worktrees neolabhq/context-engineering-kit
Git Worktrees Overview Git worktrees enable checking out multiple branches simultaneously in separate directories, all sharing the same repository. Create a worktree instead of stashing changes or cloning separately. Core principle: One worktree per active branch. Switch contexts by changing directories, not branches. Core Concepts Concept Description Main worktree Original working directory from git clone or git init Linked worktree Additional directories created with git worktree add Shared .g...
452
7434 mdr-745-specialist alirezarezvani/claude-skills
MDR 2017/745 Specialist EU MDR compliance patterns for medical device classification, technical documentation, and clinical evidence. Table of Contents Device Classification Workflow Technical Documentation Clinical Evidence Post-Market Surveillance EUDAMED and UDI Reference Documentation Tools Device Classification Workflow Classify device under MDR Annex VIII: Identify device duration (transient, short-term, long-term) Determine invasiveness level (non-invasive, body orifice, surgical) Assess ...
452
7435 ce-setup everyinc/compound-engineering-plugin
Contains Shell Commands This skill contains shell command directives ( !`command` ) that may execute system commands. Review carefully before installing. Compound Engineering Setup Interaction Method Ask the user each question below using the platform's blocking question tool: AskUserQuestion in Claude Code (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded), request_user_input in Codex, ask_user in Gemini, ask_user in Pi (requires the pi-ask-user extension). Fall back...
452
7436 php-development mindrally/skills
PHP Development You are an expert PHP developer with deep knowledge of PHP 8+, object-oriented programming, and SOLID principles. Core Principles Write concise, technically accurate PHP code with proper examples Follow SOLID principles for object-oriented programming Follow the DRY (Don't Repeat Yourself) principle Adhere to PSR coding standards Design for maintainability and scalability PHP Standards Use PHP 8.1+ features (typed properties, match expressions, named arguments, enums) Follow PS...
452
7437 chakra-ui-refactor chakra-ui/chakra-ui
Chakra UI Refactor & Review You are reviewing and improving UI code using Chakra UI v3. Depending on what the developer needs, you produce a structured critique, rewritten code, or both. Read the code and project context fully before producing any output. Step 1 — Orient and determine intent Before any output, establish: Chakra UI version — check package.json ; use v3 by default Framework — Next.js App Router, Pages Router, Vite, plain React Source type — existing Chakra, plain HTML/CSS, Tailwin...
452
7438 wireframe-spec owl-listener/designer-skills
Wireframe Spec You are an expert in creating annotated wireframe specifications. What You Do You specify wireframe layouts defining content priority, component placement, behavior annotations, and responsive considerations. Wireframe Components Content Blocks Headers and navigation Hero/feature areas Content sections (text, media, cards) Forms and input areas Footers and secondary navigation Annotations Content priority numbers (what loads/appears first) Interaction notes (what happens on click/...
452
7439 agent-architecture ruvnet/ruflo
name: architecture type: architect color: purple description: SPARC Architecture phase specialist for system design capabilities: system_design component_architecture interface_design scalability_planning technology_selection priority: high sparc_phase: architecture hooks: pre: | echo "🏗️ SPARC Architecture phase initiated" memory_store "sparc_phase" "architecture" Retrieve pseudocode designs memory_search "pseudo_complete" | tail -1 post: | echo "✅ Architecture phase complete" memory_store "arc...
452
7440 ads-photoshoot agricidaniel/claude-ads
Ads Photoshoot: AI Product Photography Transforms a product image or description into professional ad-ready photography in 5 distinct visual styles. Each style generates at two sizes: 1:1 (Meta/LinkedIn) and 9:16 (TikTok/Reels/Stories). Quick Reference Command What it does /ads photoshoot Interactive: ask for product + styles /ads photoshoot --styles studio floating Generate only selected styles /ads photoshoot --product shoe.jpg Start with a product image file /ads photoshoot --all-platforms Ge...
452
7441 react-spring-physics freshtechbro/claudedesignskills
React Spring Physics Physics-based animation for React applications combining React Spring's declarative spring animations with Popmotion's low-level physics utilities. Overview React Spring provides spring-physics animations that feel natural and interruptible. Unlike duration-based animations, springs calculate motion based on physical properties (mass, tension, friction), resulting in organic, realistic movement. Popmotion complements this with composable animation functions for keyframes, de...
452
7442 create-plan davila7/claude-code-templates
Create Plan Goal Turn a user prompt into a single, actionable plan delivered in the final assistant message. Minimal workflow Throughout the entire workflow, operate in read-only mode. Do not write or update files. Scan context quickly Read README.md and any obvious docs (docs/, CONTRIBUTING.md, ARCHITECTURE.md). Skim relevant files (the ones most likely touched). Identify constraints (language, frameworks, CI/test commands, deployment shape). Ask follow-ups only if blocking Ask at most 1...
452
7443 dodo-best-practices dodopayments/skills
Dodo Payments Integration Guide Always consult docs.dodopayments.com for the latest API reference and code examples. Dodo Payments is the all-in-one engine to launch, scale, and monetize worldwide. Designed for SaaS and AI products, it handles payments, billing, subscriptions, and distribution without extra engineering. Quick Reference Environment Variables DODO_PAYMENTS_API_KEY - Your API key from the dashboard DODO_PAYMENTS_WEBHOOK_SECRET - Webhook signing secret for verification API Enviro...
452
7444 electron-chromium-upgrade electron/electron
Electron Chromium Upgrade: Phase One Summary Run e sync --3 repeatedly, fixing patch conflicts as they arise, until it succeeds. Then run e patches all and commit changes atomically. Success Criteria Phase One is complete when: e sync --3 exits with code 0 (no patch failures) e patches all has been run to export all changes All changes are committed per the commit guidelines below Do not stop until these criteria are met. CRITICAL Do not delete or skip patches unless 100% certain the patch...
452
7445 skill-security-audit smartchainark/skill-security-audit
Skill Security Audit Detect malicious patterns in installed Claude and OpenClaw skills. Based on SlowMist's analysis of 472+ malicious skills on ClawHub platform. Triggers Use this skill when the user mentions: 安全审计, security audit, skill 检查, 技能安全, scan skills, supply chain security, 扫描技能, 恶意检测, malicious skill, skill 安全扫描 Quick Audit Workflow When the user requests a security audit, follow these 5 steps: Step 1: Run the Scanner python3 ~/.claude/skills/skill-security-audit/scripts/skill_audit.p...
452
7446 content-design n8n-io/n8n
n8n content design You are a Senior Content Designer specializing in SaaS tools. You've written UI copy for complex products — whiteboard tools, workflow automation, enterprise software — where terminology precision directly impacts user success. You treat content as interface: every label, error message, and tooltip is a design decision. You think about what the user needs to know first. In any UI surface — modal, tooltip, banner, empty state — you lead with the action or outcome, then add cont...
451
7447 flux-image inference-sh/skills
FLUX Image Generation Generate images with FLUX models 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 falai/flux-dev-lora --input '{"prompt": "a futuristic city at night"}' FLUX Models Model App ID Speed Quality Use Case FLUX Dev LoRA falai/flux-dev-lora Medium Highest Production, custom styles FLUX.2 Klein LoRA falai/flux-2-klein-lora Fastest Good Fast iteration, 4B/9B...
451
7448 sadd:do-in-steps neolabhq/context-engineering-kit
do-in-steps CRITICAL: You are the orchestrator - you MUST NOT perform the subtasks yourself. Your role is to: Analyze and decompose the task Select optimal models and agents for each subtask Dispatch sub-agents with proper prompts Dispatch judge to verify step completion Iterate if judge fails the step (max 2 retries) Collect outputs and pass context forward Report final results RED FLAGS - Never Do These NEVER: Read implementation files to understand code details (let sub-agents do this) Write ...
451
7449 nestjs-clean-typescript mindrally/skills
NestJS Clean TypeScript Guidelines by Alberto Basalo for developing clean NestJS APIs using TypeScript. These rules emphasize strong typing, clean code principles, and architectural best practices. TypeScript General Principles Always declare the type of each variable and function (parameters and return value) Avoid using any; create necessary types instead Use JSDoc for public classes and methods One export per file Naming Conventions PascalCase for classes camelCase for variables and functio...
451
7450 core-data dpearson2699/swift-ios-skills
Core Data Build and maintain data persistence using Core Data for apps that have not adopted SwiftData. Covers stack setup, concurrency, batch operations, NSFetchedResultsController, persistent history tracking, staged migration, and testing. Contents Stack Setup Concurrency and Threading NSFetchedResultsController Batch Operations Persistent History Tracking Staged Migration Composite Attributes Testing Common Mistakes Review Checklist References Stack Setup NSPersistentContainer encapsulates t...
451