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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,475
总 Skills
91.6M
总安装量
2,583
贡献者
# Skill 仓库 描述 安装量
6951 qwen-coder giuseppe-trisciuoglio/developer-kit
Qwen Coder CLI Delegation Delegate selected tasks from Claude Code to Qwen Coder CLI using non-interactive commands, explicit model selection, safe permission flags, and shareable outputs. Overview This skill standardizes delegation to Qwen Coder CLI ( qwen ) for cases where Qwen's specific strengths may benefit the task. It covers: Non-interactive execution with -p / --prompt Model selection with -m / --model Approval control ( --approval-mode ) Session continuation with -c / --continue or -r /...
752
6952 asc-screenshot-resize rorkai/app-store-connect-cli-skills
asc screenshot resize Use this skill to resize screenshots to the exact pixel dimensions required by App Store Connect and validate they pass upload requirements. Uses the built-in macOS sips tool — no third-party dependencies needed. Required Dimensions iPhone Display Size Accepted Dimensions (portrait × landscape) 6.9" 1260 × 2736, 2736 × 1260, 1320 × 2868, 2868 × 1320, 1290 × 2796, 2796 × 1290 6.5" 1242 × 2688, 2688 × 1242, 1284 × 2778, 2778 × 1284 6.3" 1206 × 2622, 2622 × 1206, 1179 × 2556, ...
752
6953 asc-shots-pipeline rorkai/app-store-connect-cli-skills
asc screenshots pipeline (xcodebuild -> AXe -> frame -> asc) Use this skill for agent-driven screenshot workflows where the app is built and launched with Xcode CLI tools, UI is driven with AXe, and screenshots are uploaded with asc . Current scope Implemented now: build/run, AXe plan capture, frame composition, and upload. Device discovery is built-in via asc screenshots list-frame-devices . Local screenshot automation commands are experimental in asc cli. Framing is pinned to Koubou 0.13.0 for...
752
6954 next hairyf/skills
Next.js is a React framework for building full-stack web applications. It provides file-system based routing, Server Components, automatic code splitting, image optimization, and built-in performance optimizations. Next.js supports both static site generation (SSG) and server-side rendering (SSR), making it ideal for building modern web applications. The skill is based on Next.js v16.2.0-canary.16, generated at 2026-01-30. Core References | File-System Routing | Routes defined by folder str...
751
6955 use-cases-page-generator kostja94/marketing-skills
Pages: Use Cases Guides use case pages that bridge product features and real-world customer problems. Scenario-first is the primary organization. BOFU (bottom-of-funnel) pages for SaaS/B2B. Answer "when would I use it?" and "how does it help me?" — distinct from solutions (industry/outcome). 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 ...
751
6956 research-sources kostja94/marketing-skills
Strategies: Research Sources Guides selecting and organizing information sources for marketing research: content ideation, competitor monitoring, and industry tracking. Use this skill when planning where to gather signals for content, competitive intelligence, or market trends. 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 outpu...
751
6957 feishu-cli-import riba2534/feishu-cli
Markdown 导入技能 从本地 Markdown 文件创建或更新飞书云文档。 支持 Mermaid/PlantUML 图表转飞书画板、大表格自动拆分 。 CRITICAL: 每次创建新文档后, 必须立即 执行以下两步: 授予 full_access 权限: feishu-cli perm add <document_id> --doc-type docx --member-type email --member-id user@example.com --perm full_access --notification 转移文档所有权: feishu-cli perm transfer-owner <document_id> --doc-type docx --member-type email --member-id user@example.com --notification 详见下方"执行流程 → 创建新文档"。 核心特性 三阶段并发管道 :顺序创建块 → 并发处理图表/表格 → 失败回退 Mermaid/PlantUML → 飞书画板 : mermaid / plantum...
751
6958 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...
751
6959 github-workflow-automation ruvnet/ruflo
🔧 GitHub Workflow Automation Patterns for automating GitHub workflows with AI assistance, inspired by Gemini CLI and modern DevOps practices. When to Use This Skill Use this skill when: Automating PR reviews with AI Setting up issue triage automation Creating GitHub Actions workflows Integrating AI into CI/CD pipelines Automating Git operations (rebases, cherry-picks) 1. Automated PR Review 1.1 PR Review Action .github/workflows/ai-review.yml name: AI Code Review on: pull_request: ty...
751
6960 nextauth-authentication mindrally/skills
NextAuth Authentication You are an expert in NextAuth.js (Auth.js v5) authentication implementation. Follow these guidelines when integrating authentication in Next.js applications. Core Principles Use Auth.js v5 patterns and the universal auth() function Implement proper session management strategy based on your needs Always validate sessions server-side for sensitive operations Configure environment variables correctly with the AUTH_ prefix Installation npm install next-auth@beta Environmen...
751
6961 experiment-code lingzhi227/agent-research-skills
Experiment Code Generate and iteratively improve ML experiment code for research papers. Input $0 — Task: generate , improve , debug , plot $1 — Research plan, idea description, or error message References Experiment prompts and patterns: ~/.claude/skills/experiment-code/references/experiment-prompts.md Code patterns (error handling, repair, hill-climbing): ~/.claude/skills/experiment-code/references/code-patterns.md Action: generate Generate initial experiment code following this structure: Sho...
751
6962 nodejs-backend-typescript bobmatnyc/claude-mpm-skills
Node.js Backend Development with TypeScript progressive_disclosure: entry_point: summary: "TypeScript backend patterns with Express/Fastify, routing, middleware, database integration" when_to_use: - "When building REST APIs with TypeScript" - "When creating Express/Fastify servers" - "When needing server-side TypeScript" - "When building microservices" quick_start: - "npm init -y && npm install -D typescript @types/node tsx" - "npm install express @types/express zod" - "Create tsconfig.json with...
750
6963 zod-4 prowler-cloud/prowler
Breaking Changes from Zod 3 // ❌ Zod 3 (OLD) z.string().email() z.string().uuid() z.string().url() z.string().nonempty() z.object({ name: z.string() }).required_error("Required") // ✅ Zod 4 (NEW) z.email() z.uuid() z.url() z.string().min(1) z.object({ name: z.string() }, { error: "Required" }) Basic Schemas import { z } from "zod"; // Primitives const stringSchema = z.string(); const numberSchema = z.number(); const booleanSchema = z.boolean(); const dateSchema = z.date(); // Top-level valid...
750
6964 grid kostja94/marketing-skills
Components: Grid Layout Guides grid layout design for equal-hierarchy, multi-column content display. Grids display multiple items with equal emphasis; space-efficient and scannable. Used for products, templates, tools, features, blog indexes, and galleries. 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. When to Use Grid U...
750
6965 referral-program kostja94/marketing-skills
Referral & Affiliate Programs You are an expert in viral growth and referral marketing. Your goal is to help design and optimize programs that turn customers into growth engines. Before Starting 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 already covered or specific to this task. Gather this context (ask if not...
750
6966 woocommerce-code-review woocommerce/woocommerce
No SKILL.md available for this skill. View on GitHub
750
6967 scrape-webpage adobe/skills
Scrape Webpage Extract content, metadata, and images from a webpage for import/migration. When to Use This Skill Use this skill when: Starting a page import and need to extract content from source URL Need webpage analysis with local image downloads Want metadata extraction (Open Graph, JSON-LD, etc.) Invoked by: page-import skill (Step 1) Prerequisites Before using this skill, ensure: ✅ Node.js is available ✅ npm playwright is installed ( npm install playwright ) ✅ Chromium browser is installed...
750
6968 legalize-es-spanish-legislation aradotso/trending-skills
Legalize ES — Spanish Legislation Git Repository Skill by ara.so — Daily 2026 Skills collection. What It Is legalize-es is a Git repository containing 8,600+ Spanish laws as Markdown files, with every legislative reform recorded as a Git commit. Each law is a single .md file named by its BOE identifier (e.g. BOE-A-1978-31229.md for the Spanish Constitution). Reform history goes back to 1960. Key capabilities: Full text search across all laws with grep Exact diff between any two versions of a law...
750
6969 playcanvas-engine freshtechbro/claudedesignskills
PlayCanvas Engine Skill Lightweight WebGL/WebGPU game engine with entity-component architecture, visual editor integration, and performance-focused design. When to Use This Skill Trigger this skill when you see: "PlayCanvas engine" "WebGL game engine" "entity component system" "PlayCanvas application" "3D browser games" "online 3D editor" "lightweight 3D engine" Need for editor-first workflow Compare with: Three.js : Lower-level, more flexible but requires more setup Babylon.js : Feature-rich bu...
750
6970 workflow-skill-creator google-deepmind/science-skills
Workflow-to-Skill Distiller Turns a completed workflow into a reusable agent skill. Specifically, this skill extracts patterns from an interaction or workflow that already happened and packages them. [!CAUTION] You MUST complete Phase 1 (Brainstorming) before writing any code or SKILL.md content. Skipping brainstorming produces skills that are either too rigid or too vague. The brainstorming conversation is the most important part of this process. Phase 1: Brainstorming (MANDATORY) Have an itera...
750
6971 paper-assembly lingzhi227/agent-research-skills
Paper Assembly Orchestrate the entire paper pipeline end-to-end with state management and checkpointing. Input $0 — Paper project directory or paper plan References Orchestration patterns and state management: ~/.claude/skills/paper-assembly/references/orchestration-patterns.md Scripts Check pipeline completeness python ~/.claude/skills/paper-assembly/scripts/assembly_checker.py --dir paper/ --output checkpoint.json python ~/.claude/skills/paper-assembly/scripts/assembly_checker.py --dir paper/ ...
750
6972 asc-whats-new-writer rorkai/app-store-connect-cli-skills
asc What's New Writer Generate engaging, localized release notes from flexible input. Optionally pair with promotional text updates. Preconditions Metadata pulled locally via asc migrate export or asc localizations download (for keyword reading). OR: user provides keywords manually. Auth configured for upload ( asc auth login or ASC_* env vars). The primary locale is en-US unless the user specifies otherwise. Before You Start Read references/release_notes_guidelines.md for tone, structure, and e...
750
6973 open-code-review alibaba/open-code-review
Open Code Review A skill for invoking open-code-review ( ocr ) — an open-source AI code review CLI that reads Git diffs and generates structured, line-level review comments. Prerequisites check Before starting a review, verify the environment: 1. Check the CLI is installed which ocr || echo "NOT INSTALLED" 2. Verify LLM connectivity ocr llm test If ocr is not installed, install it first: Show more Installs 465 Repository alibaba/open-code-review GitHub Stars 5.3K First Seen 11 days ago
750
6974 app-ads kostja94/marketing-skills
Paid Ads: App Ads Guides app advertising: app install campaigns, user acquisition (UA), and in-app promotion. Use when promoting mobile apps (iOS, Android); conversion = install or in-app action, not landing page. 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. Key Platforms Platform Best for Conversion Google App Campaign...
749
6975 employee-generated-content kostja94/marketing-skills
Channels: EGC (Employee-Generated Content) Guides EGC and employee advocacy strategy for AI/SaaS products. EGC is content created by employees (social posts, videos, blogs, testimonials) that reflects authentic workplace and product insights. Employee-shared content generates ~8x more engagement than brand posts; LinkedIn employee posts reach ~561% more than brand content. When invoking : On first use , if helpful, open with 1-2 sentences on what this skill covers and why it matters, then provid...
749
6976 showcase-page-generator kostja94/marketing-skills
Pages: Showcase Guides showcase and gallery pages that display user-generated work, creator content, or "made with [product]" examples. Builds community, social proof, and inspiration. Common for design tools, no-code, and creator-focused products. 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. Initial Assessment Check fo...
749
6977 setting-up-astro-project astronomer/agents
Astro Project Setup This skill helps you initialize and configure Airflow projects using the Astro CLI. To run the local environment, see the managing-astro-local-env skill. To write DAGs, see the authoring-dags skill. Initialize a New Project astro dev init Creates this structure: project/ ├── dags/ DAG files ├── include/ SQL, configs, supporting files ├── plugins/ Custom Airflow plugins ├── tests/ Unit tests ├── Dockerfile ...
749
6978 app-store-optimization alirezarezvani/claude-skills
App Store Optimization (ASO) Skill This comprehensive skill provides complete ASO capabilities for successfully launching and optimizing mobile applications on the Apple App Store and Google Play Store. Capabilities Research & Analysis Keyword Research: Analyze keyword volume, competition, and relevance for app discovery Competitor Analysis: Deep-dive into top-performing apps in your category Market Trend Analysis: Identify emerging trends and opportunities in your app category Review Sentimen...
749
6979 ui-design-review mastepanoski/claude-skills
UI Design Review This skill enables AI agents to perform a comprehensive visual design and aesthetics evaluation of digital interfaces, analyzing elements like typography, color palettes, spacing, visual hierarchy, and overall design quality. While other UX skills focus on functionality and usability, this skill evaluates the visual polish, aesthetic appeal, and design craftsmanship that makes interfaces feel professional, trustworthy, and delightful. Use this skill to elevate visual design qual...
749
6980 flight-ticket-search nomadamas/k-skill
Flight Ticket Search What this skill does fast-flights 기반으로 Google Flights의 공개 검색 결과를 조회해 항공권 후보를 정리한다. API key, 로그인, 결제, CAPTCHA 우회 없이 무료 공개 표면만 사용한다. 제공 기능: 편도/왕복 항공권 검색 Google Flights 예약 검색 링크 생성 상위 후보 가격, 항공사, 출도착 시간, 소요시간, 경유 수 정리 날짜 범위, 월별, 연도별 샘플 비교 최저가, 평균가, 최고가 및 low / typical / high 가격 band 요약 예약 링크는 특정 판매자 결제 deep link가 아니라 Google Flights 검색 결과 링크 다. 실제 구매·결제·좌석 선택은 사용자가 브라우저에서 직접 진행해야 한다. When to use Show more
749
6981 rev-unicorn-debug p4nda0s/reverse-skills
rev-unicorn-debug - Unicorn Emulation Debugger Debug and emulate specific code fragments or functions using the Unicorn engine. Analyze context dependencies (JNI, syscalls, library functions) and simulate them through hook mechanisms to complete the user's debugging goal. Core Principles Load file raw first — do NOT parse ELF/PE/Mach-O headers. Read the file as raw bytes and map directly into Unicorn memory. We only need to emulate specific functions, not the entire binary. If raw loading fails ...
749
6982 rev-idapython p4nda0s/reverse-skills
rev-idapython - IDAPython / IDALib Script Reference IDAPython script snippets for IDA interactive use and IDALib headless analysis. Use as reference when generating IDAPython code. IDAPython : scripts run inside IDA GUI (Script Command, plugin, or IDC console) IDALib : headless mode introduced in IDA 9.0 — run analysis scripts without opening the IDA GUI Common API Register Operations idc . get_reg_value ( 'rax' ) idaapi . set_reg_val ( "rax" , 1234 ) Debug Memory Operations idc . read_dbg_byte ...
749
6983 pr-implement boshu2/agentops
PR Implement Skill Fork-based implementation for open source contributions with mandatory isolation check. Overview Execute a contribution plan with fork isolation. Ensures PRs are clean and focused by running isolation checks before and during implementation. Input : Plan artifact from $pr-plan or repo URL When to Use : Implementing a planned OSS contribution Need isolation enforcement for clean PRs After completing $pr-plan When NOT to Use : Internal project work (use $implement ) Haven't plan...
748
6984 features-page-generator kostja94/marketing-skills
Pages: Features Guides features page content, structure, and conversion optimization. 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. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exists, read it for product, differentiation, an...
748
6985 docs-page-generator kostja94/marketing-skills
Pages: Documentation Site Guides documentation site structure, navigation, and content organization. Typically hosted on docs.* or help.* subdomain. Includes Getting Started, guides, tutorials, API Reference (endpoint docs), and troubleshooting. Distinct from API introduction page (api-page-generator). 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 d...
748
6986 popup-generator kostja94/marketing-skills
Components: Popup / Modal Guides popup and modal design for conversion. Well-designed popups can achieve up to 25% conversion; poorly timed or intrusive ones hurt UX and SEO. Google penalizes intrusive mobile popups. 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. Initial Assessment Check for product marketing context firs...
748
6987 trust-badges-generator kostja94/marketing-skills
Components: Trust Badges Guides trust badge design and placement for conversion. Trust badges borrow authority from third-party organizations to signal legitimacy and reduce purchase anxiety. 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. Initial Assessment Check for product marketing context first: If .claude/product-mar...
748
6988 my-fetch-tweet ai-native-camp/camp-1
My Fetch Tweet X/Twitter URL에서 트윗 원문, 작성자 정보, 인게이지먼트 데이터를 가져오고 요약-인사이트-전체 번역 3단계 파이프라인으로 제공하는 스킬. API 연동 — FxEmbed FxEmbed 오픈소스 프로젝트의 API ( api.fxtwitter.com )를 활용한다. JavaScript 없이 트윗 데이터를 추출할 수 있다. URL 변환 규칙 URL에서 screen_name 과 status_id 를 추출한다 도메인을 api.fxtwitter.com 으로 변환한다 WebFetch로 JSON 데이터를 가져온다 https://x.com/garrytan/status/123456 → https://api.fxtwitter.com/garrytan/status/123456 지원 URL 형식 x.com , twitter.com , fxtwitter.com , fixupx.com API 응답 주요 필드 필드 설명 tweet.text 트윗 본문 (URL 확장됨) tweet...
748
6989 3-statement-model anthropics/financial-services-plugins
3-Statement Financial Model Template Completion Complete and populate integrated financial model templates with proper linkages between Income Statement, Balance Sheet, and Cash Flow Statement. ⚠️ CRITICAL PRINCIPLES — Read Before Populating Any Template Environment — Office JS vs Python: If running inside Excel (Office Add-in / Office JS): Use Office JS directly. Write formulas via range.formulas = [["=D14*(1+Assumptions!$B$5)"]] — never range.values for derived cells. No separate recalc; Excel...
748
6990 domain-fintech actionbook/rust-skills
No SKILL.md available for this skill. View on GitHub Installs 592 Repository actionbook/rust-skills GitHub Stars 1.2K First Seen Jan 23, 2026
748
6991 scientific-writing k-dense-ai/scientific-agent-skills
Scientific Writing Overview This is the core skill for the deep research and writing tool—combining AI-driven deep research with well-formatted written outputs. Every document produced is backed by comprehensive literature search and verified citations through the research-lookup skill. Scientific writing is a process for communicating research with precision and clarity. Write manuscripts using IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, and reporting guidelines (CONSORT/S...
748
6992 oauth mcollina/skills
OAuth with Portless OAuth providers validate redirect URIs against domain rules. .localhost subdomains fail on most providers because they are not in the Public Suffix List or are explicitly blocked. Portless fixes this with --tld to serve apps on real, valid domains. The Problem When portless uses the default .localhost TLD, OAuth providers reject redirect URIs like http://myapp.localhost:1355/callback : Provider localhost .localhost subdomains Reason Google Allowed Rejected Not in their bundle...
748
6993 plantuml-skill agents365-ai/365-skills
No SKILL.md available for this skill. View on GitHub Installs 431 Repository agents365-ai/365-skills GitHub Stars 5 First Seen May 6, 2026
748
6994 contest-page-generator kostja94/marketing-skills
Pages: Giveaway / Contest Guides giveaway and contest pages for promotional campaigns. Drives signups, engagement, and viral sharing. Often uses Gleam, Woobox, Viralsweep, or similar. Common for e-commerce, SaaS launches, and community growth. 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. Initial Assessment Check for pro...
747
6995 customer-stories-page-generator kostja94/marketing-skills
Pages: Customer Stories Guides customer story and case study page content, structure, and conversion. 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. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exists, read it for product, pro...
747
6996 angular-best-practices alfredoperez/angular-best-practices
Modern Angular Best Practices A comprehensive set of 112 rules covering TypeScript strictness, signal-based reactivity, component architecture, template optimization, RxJS patterns, SSR hydration, bundle optimization, accessibility, routing, forms, testing, and styling — so every component, service, template, and route you build is fast, accessible, tested, and maintainable. Below are the key patterns organized by what you're working on. For edge cases or when you need specific code examples bey...
747
6997 architecture-decision-record yonatangross/orchestkit
Architecture Decision Records Architecture Decision Records (ADRs) are lightweight documents that capture important architectural decisions along with their context and consequences. This skill provides templates, examples, and best practices for creating and maintaining ADRs in your projects. Overview Making significant technology choices (databases, frameworks, cloud providers) Designing system architecture or major components Establishing patterns or conventions for the team Evaluating trad...
747
6998 agile-product-owner davila7/claude-code-templates
Agile Product Owner Backlog management and sprint execution toolkit for product owners, including user story generation, acceptance criteria patterns, sprint planning, and velocity tracking. Table of Contents What Makes This Skill Different User Story Generation Workflow Acceptance Criteria Patterns Epic Breakdown Workflow Sprint Planning Workflow Backlog Prioritization Reference Documentation Tools Show more
747
6999 senior-security davila7/claude-code-templates
Senior Security Engineer Security engineering tools for threat modeling, vulnerability analysis, secure architecture design, and penetration testing. Table of Contents Threat Modeling Workflow Security Architecture Workflow Vulnerability Assessment Workflow Secure Code Review Workflow Incident Response Workflow Security Tools Reference Tools and References Threat Modeling Workflow Show more
747
7000 product-management vasilyu1983/ai-agents-public
Product Management (Jan 2026) This skill turns the assistant into an operator, not a lecturer. Everything here is: Executable: templates, checklists, decision flows Decision-first: measurable outcomes, explicit trade-offs, clear ownership Organized: resources for depth; templates for immediate copy-paste Modern Best Practices (Jan 2026): Evidence quality beats confidence: label signals strong/medium/weak; write what would change your mind. Outcomes > output: roadmaps are bets with measurabl...
747