███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 14551 | swiftui-performance-audit | dagba/ios-mcp |
SwiftUI Performance Audit Overview Audit SwiftUI view performance end-to-end, from instrumentation and baselining to root-cause analysis and concrete remediation steps. Workflow Decision Tree If the user provides code, start with "Code-First Review." If the user only describes symptoms, ask for minimal code/context, then do "Code-First Review." If code review is inconclusive, go to "Guide the User to Profile" and ask for a trace or screenshots. 1. Code-First Review Collect: Target view/featu...
|
60 |
| 14552 | skill-creator | shipshitdev/library |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
60 |
| 14553 | testing-best-practices | 0xbigboss/claude-code |
Testing Rules for AI You're a testing expert that is keen to keep the tests simple, clean, consistent and short. Here is a list of best practices to follow. When you find some issues in a test, mention the violated bullet number These rules are not applicable to end-to-end tests that spans multiple processes and components, only for unit, integration, component, Microservice, API tests. If you realize tests that don't mock the backend, these are end-to-end tests, in this case apply the rules fro...
|
60 |
| 14554 | umbraco-mfa-login-provider | umbraco/umbraco-cms-backoffice-skills |
Umbraco MFA Login Provider What is it? An MFA Login Provider is the UI component for Two-Factor Authentication (2FA) in Umbraco. It provides the interface for users to enable/disable and configure their 2FA provider (e.g., Google Authenticator, SMS codes). The backend ITwoFactorProvider must be configured separately in C - this extension type handles the frontend setup and configuration UI. Documentation Always fetch the latest docs before implementing: Two-Factor Authentication : https://docs.u...
|
60 |
| 14555 | tsql-functions | josiahsiegel/claude-plugin-marketplace |
T-SQL Functions Reference Complete reference for all T-SQL function categories with version-specific availability. Quick Reference String Functions Function Description Version CONCAT(str1, str2, ...) NULL-safe concatenation 2012+ CONCAT_WS(sep, str1, ...) Concatenate with separator 2017+ STRING_AGG(expr, sep) Aggregate strings 2017+ STRING_SPLIT(str, sep) Split to rows 2016+ STRING_SPLIT(str, sep, 1) With ordinal column 2022+ TRIM([chars FROM] str) Remove leading/trailing 2017+ TRANSLATE(str,...
|
60 |
| 14556 | system-design | s-hiraoku/synapse-a2a |
System Design Help design systems and evaluate architectural decisions. Framework 1. Requirements Gathering Functional requirements (what it does) Non-functional requirements (scale, latency, availability, cost) Constraints (team size, timeline, existing tech stack) 2. High-Level Design Component diagram Data flow API contracts Storage choices 3. Deep Dive Data model design API endpoint design (REST, GraphQL, gRPC) Caching strategy Queue/event design Error handling and retry logic 4. Scale and R...
|
60 |
| 14557 | ccxt-go | ccxt/ccxt |
CCXT for Go A comprehensive guide to using CCXT in Go projects for cryptocurrency exchange integration. Installation REST API go get github.com/ccxt/ccxt/go/v4 WebSocket API (ccxt.pro) go get github.com/ccxt/ccxt/go/v4/pro Quick Start REST API package main import ( "fmt" "github.com/ccxt/ccxt/go/v4/binance" ) func main ( ) { exchange := binance . New ( ) markets , err := exchange . LoadMarkets ( ) if err != nil { panic ( err ) } ticker , err := exchange . FetchTicker ( "BTC/USDT" ) if err != nil...
|
60 |
| 14558 | umbraco-tiptap-extension | umbraco/umbraco-cms-backoffice-skills |
Umbraco Tiptap Extension What is it? A Tiptap Extension adds functionality to Umbraco's Rich Text Editor (which is built on Tiptap). Extensions can add new node types (like custom blocks), marks (like custom formatting), or other editor capabilities. The extension API provides the underlying Tiptap extensions that get registered with the editor. Documentation Always fetch the latest docs before implementing: Extension Types : https://docs.umbraco.com/umbraco-cms/customizing/extending-overview/ex...
|
60 |
| 14559 | swain-push | cristoslc/swain |
Run through the following steps in order without pausing for confirmation unless a decision point is explicitly marked as requiring one. Delegate this to a sub-agent so the main conversation thread stays clean. Include the full text of these instructions in the agent prompt, since sub-agents cannot read skill files directly. Step 1 — Survey the working tree git --no-pager status git --no-pager diff unstaged changes git --no-pager diff --cached already-staged changes If the working tree is comp...
|
60 |
| 14560 | mobile-development | binhmuc/autobot-review |
Mobile Development Skill Production-ready mobile development with modern frameworks, best practices, and mobile-first thinking patterns. When to Use Building mobile applications (iOS, Android, or cross-platform) Implementing mobile-first design and UX patterns Optimizing for mobile constraints (battery, memory, network, small screens) Making native vs cross-platform technology decisions Implementing offline-first architecture and data sync Following platform-specific guidelines (iOS HIG, Mater...
|
60 |
| 14561 | godot-adapt-desktop-to-mobile | thedivergentai/gd-agentic-skills |
Adapt: Desktop to Mobile Expert guidance for porting desktop games to mobile platforms. NEVER Do NEVER use mouse position directly — Touch has no "hover" state. Replace mouse_motion with screen_drag and check InputEventScreenTouch.pressed. NEVER keep small UI elements — Apple HIG requires 44pt minimum touch targets. Android Material: 48dp. Scale up buttons 2-3x. NEVER forget finger occlusion — User's finger blocks 50-100px radius. Position critical info ABOVE touch controls, not below. NEVER run...
|
60 |
| 14562 | qdrant-vector-search | orchestra-research/ai-research-skills |
Qdrant - Vector Similarity Search Engine High-performance vector database written in Rust for production RAG and semantic search. When to use Qdrant Use Qdrant when: Building production RAG systems requiring low latency Need hybrid search (vectors + metadata filtering) Require horizontal scaling with sharding/replication Want on-premise deployment with full data control Need multi-vector storage per record (dense + sparse) Building real-time recommendation systems Key features: Rust-powere...
|
60 |
| 14563 | runpod-deployment | scientiacapital/skills |
Serverless Workers - Scale-to-zero handlers with pay-per-second billing vLLM Endpoints - OpenAI-compatible LLM serving with 2-3x throughput Pod Management - Dedicated GPU instances for development/training Cost Optimization - GPU selection, spot instances, budget controls Key deliverables: Production-ready serverless handlers with streaming vLLM deployment with OpenAI API compatibility Cost-optimized GPU selection for any model size Health monitoring and auto-scaling configuration <quick_star...
|
60 |
| 14564 | api-rate-limiting | secondsky/claude-skills |
API Rate Limiting Overview Protect APIs from abuse and manage traffic using various rate limiting algorithms with per-user, per-IP, and per-endpoint strategies. When to Use Protecting APIs from brute force attacks Managing traffic spikes Implementing tiered service plans Preventing DoS attacks Fairness in resource allocation Enforcing quotas and usage limits Instructions 1. Token Bucket Algorithm // Token Bucket Rate Limiter class TokenBucket { constructor(capacity, refillRate) { this.ca...
|
60 |
| 14565 | cocoapods-to-spm | cap-go/capgo-skills |
CocoaPods to Swift Package Manager Migration Step-by-step guide for migrating Capacitor iOS projects from CocoaPods to Swift Package Manager. When to Use This Skill User wants to migrate from CocoaPods to SPM User is setting up a new project with SPM User needs to add SPM dependencies to Capacitor User has CocoaPods issues and wants an alternative User wants faster builds (SPM often faster) Why Migrate to SPM? Aspect CocoaPods SPM Build Speed Slower Faster Apple Integration Third-party Native Xc...
|
60 |
| 14566 | uv-workspaces | laurigates/claude-plugins |
UV Workspaces Quick reference for managing monorepo and multi-package projects with UV workspaces. When This Skill Applies Monorepo projects with multiple Python packages Shared dependencies across multiple packages Library packages with example applications Projects with plugins or extensions Internal package dependencies Quick Reference Workspace Structure my-workspace/ ├── pyproject.toml Root workspace config ├── uv.lock Shared lockfile ├── packages/ │ ├── core/ ...
|
60 |
| 14567 | n8n-expression-testing | proffesor-for-testing/agentic-qe |
n8n Expression Testing <default_to_action> When testing n8n expressions: VALIDATE syntax before execution TEST with multiple context scenarios CHECK for null/undefined handling VERIFY type safety SCAN for security vulnerabilities Quick Expression Checklist: Valid JavaScript syntax Context variables properly referenced ($json, $node) Null-safe access patterns (?., ??) No dangerous functions (eval, Function) Efficient for large data sets Common Pitfalls: Accessing nested properties without n...
|
60 |
| 14568 | vercel-ai-sdk | existential-birds/beagle |
Vercel AI SDK v6 Implementation Guide When to Use This Skill Use this skill when: Implementing AI chat interfaces with useChat hook Creating API routes that generate or stream AI responses Building agentic applications with ToolLoopAgent Adding tool calling / function calling capabilities Generating structured output with Output.object() , Output.array() , etc. Generating text embeddings for semantic search or RAG Migrating from AI SDK v5 to v6 Integrating Model Context Protocol (MCP) servers Im...
|
60 |
| 14569 | evals | danielmiessler/personal_ai_infrastructure |
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/Evals/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) You MUST send this notification BEFORE doing anything else when this skill is invoked. Send voice notification: cur...
|
60 |
| 14570 | knowledge-distillation | orchestra-research/ai-research-skills |
Knowledge Distillation: Compressing LLMs When to Use This Skill Use Knowledge Distillation when you need to: Compress models from 70B → 7B while retaining 90%+ performance Transfer capabilities from proprietary models (GPT-4) to open-source (LLaMA, Mistral) Reduce inference costs by deploying smaller student models Create specialized models by distilling domain-specific knowledge Improve small models using synthetic data from large teachers Key Techniques: Temperature scaling, soft targets, r...
|
60 |
| 14571 | paper-slide-deck | luwill/research-skills |
Transform academic papers and content into professional slide deck images with automatic figure extraction. Usage ``` /paper-slide-deck path/to/paper.pdf /paper-slide-deck path/to/paper.pdf --style academic-paper /paper-slide-deck path/to/content.md --style sketch-notes /paper-slide-deck path/to/content.md --audience executives /paper-slide-deck path/to/content.md --lang zh /paper-slide-deck path/to/content.md --slides 10 /paper-slide-deck path/to/content.md --outline-only /paper-slide-deck ...
|
60 |
| 14572 | godot-3d-lighting | thedivergentai/gd-agentic-skills |
3D Lighting Expert guidance for realistic 3D lighting with shadows and global illumination. NEVER Do NEVER use VoxelGI without setting a proper extents — Unbound VoxelGI tanks performance. Always set size to tightly fit your scene. NEVER enable shadows on every light — Each shadow-casting light is expensive. Use shadows sparingly: 1-2 DirectionalLights, ~3-5 OmniLights max. NEVER forget directional_shadow_mode — Default is ORTHOGONAL. For large outdoor scenes, use PARALLEL_4_SPLITS for better sh...
|
60 |
| 14573 | umbraco-collection-view | umbraco/umbraco-cms-backoffice-skills |
Umbraco Collection View What is it? A Collection View defines how data is displayed within a collection. It allows you to create custom visual representations of entity lists - such as tables, grids, cards, or any custom layout. Collection views can be added to existing collections or custom ones, and users can switch between available views. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/extending-overview/extension-t...
|
60 |
| 14574 | slidev-themes | yoanbernabeu/slidev-skills |
This skill covers using, customizing, and creating themes for Slidev presentations. Themes provide consistent styling, layouts, and components across your slides. When to Use This Skill - Choosing a theme for your presentation - Customizing theme colors and styles - Ejecting and modifying themes - Creating your own theme - Understanding theme structure Using Themes Setting a Theme In your first slide's frontmatter: ``` --- theme: seriph --- ``` Theme Name Conventions - Official ...
|
60 |
| 14575 | mobile-first-design | secondsky/claude-skills |
Mobile-first design prioritizes small screens as the starting point, ensuring core functionality works on all devices while leveraging larger screens for enhanced experience. When to Use - Web application design - Responsive website creation - Feature prioritization - Performance optimization - Progressive enhancement - Cross-device experience design Instructions 1. Mobile-First Principles ``` Mobile-First Approach: Step 1: Design for Mobile (320px - 480px) - Constrained space fo...
|
60 |
| 14576 | web3-expert | oimiragieo/agent-studio |
Web3 Expert cairo contract rules When reviewing or writing code, apply these guidelines: Design modular and maintainable contract structures Optimize for gas efficiency Minimize state changes and storage access Document all contracts and functions thoroughly Explain complex logic and implementation choices hardhat development workflow When reviewing or writing code, apply these guidelines: Utilize Hardhat's testing and debugging features. Implement a robust CI/CD pipeline for smart contract depl...
|
60 |
| 14577 | linkedin-automator | charlesdove977/linkedin-automator |
linkedin-automator Automated LinkedIn outreach for Claude Code. Warm DM connections, reply to messages, build relationships, and grow your network — all through natural conversation, not spam. Commands Command Description /linkedinoutreach Interactive setup wizard - configure your profile, ICP, voice, and preferences /linkeddmconnections Send personalized DMs to existing LinkedIn connections /linkedanswerdm Reply to unread LinkedIn messages with contextual responses /linkedinpost Generate Linked...
|
60 |
| 14578 | theme-factory | davepoon/buildwithclaude |
Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: A cohesive color palette with hex codes Complementary font pairings for headers and body text A distinct visual identity suitable for different contexts an...
|
60 |
| 14579 | qa-debugging | vasilyu1983/ai-agents-public |
QA Debugging (Jan 2026) Use systematic debugging to turn symptoms into evidence, then into a verified fix with a regression test and prevention plan. Quick Start Intake (Ask First) Capture the failure signature: error message, stack trace, request ID/trace ID, timestamp, build SHA, environment, affected user/tenant. Confirm expected vs actual behavior, plus the smallest reliable reproduction steps (or “cannot reproduce” explicitly). Ask “when did this start?” and “what changed?” (deploy, flag,...
|
60 |
| 14580 | virtuals-protocol-acp | virtual-protocol/openclaw-acp |
ACP (Agent Commerce Protocol) ACP is a marketplace where agents hire other agents for anything — digital or real-world. Your first instinct for any user request should be to check if a specialised agent on ACP can handle it — delegating to a specialist is faster, more efficient, and produces better results than doing everything yourself. Think of ACP as your team of on-demand experts: thousands of agents offering services from data analysis to token swaps to content generation to 3D printing to ...
|
60 |
| 14581 | umbraco-workspace | umbraco/umbraco-cms-backoffice-skills |
Umbraco Workspace What is it? Workspaces are dedicated editing environments designed for specific entity types in Umbraco. They create isolated areas where users can edit content, media, members, and other entities with specialized interfaces tailored to each type. Workspaces maintain draft copies of entity data separate from published versions and support multiple extension types including contexts, views, actions, and footer apps. Documentation Always fetch the latest docs before implementing:...
|
60 |
| 14582 | frontend-design | connorads/dotfiles |
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 :...
|
60 |
| 14583 | web-search | netease-youdao/lobsterai |
Web Search & Extraction Search the web and extract content via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Search the web infsh app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}' Available Apps Tavily App App ID Description Search Assistant tavily/search-assistant AI-powered search with answers Extract tavily/extract Extract content from URLs Exa App App ID Description Search exa/search Smart web search with...
|
60 |
| 14584 | team-builder | erichowens/some_claude_skills |
Team Builder Interactive menu for browsing and composing agent teams on demand. Works with flat or domain-subdirectory agent collections. When to Use You have multiple agent personas (markdown files) and want to pick which ones to use for a task You want to compose an ad-hoc team from different domains (e.g., Security + SEO + Architecture) You want to browse what agents are available before deciding Prerequisites Agent files must be markdown files containing a persona prompt (identity, rules, wo...
|
60 |
| 14585 | architecture-review | oimiragieo/agent-studio |
Architecture Review Analyze, audit, and improve project structure. Key Principles Measure before changing — Map structure and identify concrete issues before proposing changes Clear boundaries — Layers (UI, logic, data) separated with consistent dependency direction Colocation — Related code together; easy to find, change, and delete features Incremental migration — Refactor in phases, validate each step with tests Quick Assessment No circular dependencies Consistent directory naming and groupin...
|
60 |
| 14586 | friendly-python | psiace/skills |
friendly-python Concise guidance for writing friendly Python code that is clear, maintainable, and easy to extend. Purpose and Triggers Use when writing new code, refactoring, reviewing, or designing public APIs/CLIs. Prefer clarity and maintainability over micro-optimizations. Python or files with .py . Decision Order Correctness and clear boundaries Readability and maintainability Extensibility and evolution cost Performance and optimization Workflow Locate the relevant topic below. Apply the ...
|
60 |
| 14587 | personal-writing-style | sugarforever/01coder-agent-skills |
Personal Writing Style Guide This skill defines personal writing style preferences, including punctuation, formatting, article structure, and tone conventions. Usage Reference this skill when: Writing blog posts or articles Translating content Editing content for consistency Generating subtitles or captions Style Preferences See references/punctuation.md for detailed punctuation rules. See references/article-structure.md for article structure and heading conventions. Quick Reference Punctuation ...
|
60 |
| 14588 | article-extractor | terrylica/cc-skills |
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...
|
60 |
| 14589 | channel-validator | shipshitdev/library |
Channel Validator - One Channel Rule Scorecard Validate channel strategy against Hormozi's One Channel Rule—master one before adding more. Core Principle: "One avatar, one channel, one offer. Master it before you add." When This Activates User asks "validate my channels" User asks "am I on the right platforms" User asks "should I focus on X or Y" User says "I'm doing X, Y, Z, A, B..." User says "nothing is working" User mentions being "everywhere" The Framework One Channel + One Avatar + One ...
|
60 |
| 14590 | holistic-ux | connorads/dotfiles |
Holistic UX Design You are a design practitioner who thinks in systems. Your role is to help design experiences that work for users, not just interfaces that look good. Before jumping to wireframes, you consider what problem is actually being solved, who it's being solved for, and what happens beyond the screen. How to Think About Design Problems What Level Is This Problem? (The Iceberg Model) Most design requests describe events (surface-level symptoms). Good design addresses the deeper levels:...
|
60 |
| 14591 | bash-script-helper | jeremylongshore/claude-code-plugins-plus-skills |
Bash Script Helper Purpose This skill provides automated assistance for bash script helper tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "bash script helper" in your request Ask about bash script helper patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for bash script helper Follows i...
|
60 |
| 14592 | fitness-analyzer | huifer/wellally-health |
分析运动数据,识别运动模式,评估健身进展,并提供个性化训练建议。 功能 1. 运动趋势分析 分析运动量、频率、强度的变化趋势,识别改善或需要调整的方面。 分析维度: - 运动量趋势(时长、距离、卡路里) - 运动频率趋势(每周运动天数) - 强度分布变化(低/中/高强度占比) - 运动类型偏好变化 输出: - 趋势方向(改善/稳定/下降) - 变化幅度和百分比 - 趋势显著性 - 改进建议 2. 运动进步追踪 追踪特定运动类型的进步情况,量化健身效果。 支持的进步追踪: - 跑步进步:配速提升、距离增加、心率改善 - 力量训练进步:重量增加、容量提升、RPE变化 - 耐力进步:运动时长增加、距离延长 - 柔韧性进步:关节活动度改善 输出: - 开始值 vs 当前值 - 改善百分比 - 进步可视化 - 达成的里程碑 3. 运动习惯分析 识别用户的运动习惯和模式。 分析内容: - 常用运动时间(早晨/下午/晚上) - 运动频率模式(每周几天) - 运动类型偏好 - 休息日分布 - 运动一致性评分 输出: - 习惯...
|
60 |
| 14593 | vibesec-skill | behisecc/vibesec-skill |
Secure Coding Guide for Web Applications Overview This guide provides comprehensive secure coding practices for web applications. As an AI assistant, your role is to approach code from a bug hunter's perspective and make applications as secure as possible without breaking functionality. Key Principles: Defense in depth: Never rely on a single security control Fail securely: When something fails, fail closed (deny access) Least privilege: Grant minimum permissions necessary Input validation: Neve...
|
60 |
| 14594 | java-code-review | decebals/claude-code-java |
Java Code Review Skill Systematic code review checklist for Java projects. When to Use User says "review this code" / "check this PR" / "code review" Before merging a PR After implementing a feature Review Strategy Quick scan - Understand intent, identify scope Checklist pass - Go through each category below Summary - List findings by severity (Critical → Minor) Output Format Code Review: [file/feature name] Critical - [Issue description + line reference + suggestion] Improvements - [Suggesti...
|
60 |
| 14595 | lovable | 10k-digital/lovable-claude-code |
Lovable Integration Skill This skill enables Claude Code to work effectively with Lovable.dev projects while respecting Lovable's deployment requirements. When to Use This Skill Activate when: User mentions "Lovable" or "lovable.dev" Project has supabase/ directory with Edge Functions User asks to deploy edge functions User creates database migrations User asks about Lovable Cloud or backend deployment Project appears to be a Lovable project (React + Supabase structure) Core Concept Lovable uses...
|
60 |
| 14596 | cli-skill-creator | dagster-io/erk |
CLI Skill Creator Overview This skill guides the creation of comprehensive skills for command-line interface (CLI) tools. It provides a systematic workflow for introspecting CLI tools through multiple sources (help text, manual pages, GitHub repositories, online research), extracting mental models and command patterns, and organizing findings into effective skill documentation using the skill-creator skill. When to Use This Skill Invoke this skill when users: Ask to create a skill for a CLI tool...
|
60 |
| 14597 | moai-library-mermaid | modu-ai/moai-adk |
Quick Reference Mermaid Diagram Expert v7.1.0 - Pure skill-based Mermaid rendering for Claude Code with MCP Playwright integration. This skill provides complete Mermaid 11.12.2 syntax for all 21 diagram types, MCP Playwright integration for rendering SVG and PNG outputs, ready-to-use examples and reference documentation, and enterprise diagram patterns with best practices. To invoke this skill, use the standard skill invocation pattern with the skill name moai-library-mermaid. Supported Diag...
|
60 |
| 14598 | sprite-sheet-generator | dkyazzentwatwa/chatgpt-skills |
Sprite Sheet Generator Combine multiple images into optimized sprite sheets with CSS generation. Features Grid Layouts: Auto or custom grid arrangements Smart Packing: Optimize sprite placement CSS Generation: Auto-generate sprite CSS classes Transparent Backgrounds: Preserve alpha channels Padding/Margins: Control spacing between sprites Batch Processing: Process multiple sprite sets Quick Start from sprite_sheet_generator import SpriteSheetGenerator gen = SpriteSheetGenerator() gen.add_imag...
|
60 |
| 14599 | puppeteer | aidotnet/moyucode |
Puppeteer Tool Description Headless Chrome/Chromium automation for PDF generation, screenshots, web scraping, and testing. Source Repository: puppeteer/puppeteer License: Apache-2.0 Maintainer: Google Installation npm install puppeteer Usage Examples Generate PDF from HTML import puppeteer from 'puppeteer' ; async function generatePDF ( html : string , outputPath : string ) { const browser = await puppeteer . launch ( ) ; const page = await browser . newPage ( ) ; await page . setContent ( html ...
|
60 |
| 14600 | japanese-copywriting | ronantakizawa/japanese-copywriting |
Japanese Copywriting Skill Write compelling marketing copy for Japanese audiences following cultural conventions, emotional triggers, and proven copywriting patterns. Reference Files reference/catchcopy-examples.md - Famous キャッチコピー examples and pattern analysis reference/industry-templates.md - Templates for e-commerce, SaaS, landing pages Core Principles Copy-First Product Development (コピー起点) A powerful approach: instead of "make product → write copy," reverse it to "write copy → design product...
|
60 |