███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 10551 | api-resource-patterns | iserter/laravel-claude-agents |
API Resource Patterns Basic Resource Structure <?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class PostResource extends JsonResource { public function toArray($request): array { return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'created_at' => $this->created_at->toISOString(), 'updated_at' => $this->updated_at->toISOString(), ]; } } Co...
|
110 |
| 10552 | zapier-make-patterns | davila7/claude-code-templates |
Zapier & Make Patterns You are a no-code automation architect who has built thousands of Zaps and Scenarios for businesses of all sizes. You've seen automations that save companies 40% of their time, and you've debugged disasters where bad data flowed through 12 connected apps. Your core insight: No-code is powerful but not unlimited. You know exactly when a workflow belongs in Zapier (simple, fast, maximum integrations), when it belongs in Make (complex branching, data transformation, budget)...
|
110 |
| 10553 | gsap-sequencing | bbeierle12/skill-mcp-claude |
GSAP Sequencing Complex timelines and animation orchestration. Quick Start import gsap from 'gsap'; const tl = gsap.timeline(); tl.to('.box1', { x: 100, duration: 0.5 }) .to('.box2', { y: 50, duration: 0.5 }) .to('.box3', { rotation: 360, duration: 0.5 }); Timeline Basics Creating Timelines // Basic timeline const tl = gsap.timeline(); // Timeline with defaults const tl = gsap.timeline({ defaults: { duration: 0.5, ease: 'power2.out' } }); // Paused timeline (manual control...
|
110 |
| 10554 | devsecops-expert | martinholovsky/claude-skills-generator |
DevSecOps Engineering Expert 1. Overview You are an elite DevSecOps engineer with deep expertise in: Secure CI/CD: GitHub Actions, GitLab CI, security gates, artifact signing, SLSA framework Security Scanning: SAST (Semgrep, CodeQL), DAST (OWASP ZAP), SCA (Snyk, Dependabot) Infrastructure Security: IaC scanning (Checkov, tfsec, Terrascan), policy as code (OPA, Kyverno) Container Security: Image scanning (Trivy, Grype), runtime security, admission controllers Kubernetes Security: Pod Security S...
|
110 |
| 10555 | send-to-linear | casper-studios/casper-marketplace |
Send to Linear Turn unstructured input into well-structured Linear tickets. Setup Config resolution Look for team configuration in this order (first match wins): ~/.claude/skills/send-to-linear/references/config.local.json ~/.agents/skills/send-to-linear/references/config.local.json references/config.json (bundled defaults, relative to this skill file) Use the first .local config found. Otherwise fall back to the bundled config.json . If no .local file exists anywhere AND the bundled config has ...
|
110 |
| 10556 | avalonia-viewmodels-zafiro | davila7/claude-code-templates |
Avalonia ViewModels with Zafiro This skill provides a set of best practices and patterns for creating ViewModels, Wizards, and managing navigation in Avalonia applications, leveraging the power of ReactiveUI and the Zafiro toolkit. Core Principles Functional-Reactive Approach: Use ReactiveUI (ReactiveObject, WhenAnyValue, etc.) to handle state and logic. Enhanced Commands: Utilize IEnhancedCommand for better command management, including progress reporting and name/text attributes. Wizard Patt...
|
110 |
| 10557 | vercel-composition-patterns | vercel-labs/claude-skills |
React Composition Patterns Composition patterns for building flexible, maintainable React components. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. These patterns make codebases easier for both humans and AI agents to work with as they scale. When to Apply Reference these guidelines when: Refactoring components with many boolean props Building reusable component libraries Designing flexible component APIs Reviewing component architecture W...
|
110 |
| 10558 | wp-block-themes | automattic/agent-skills |
WP Block Themes When to use Use this skill for block theme work such as: editing theme.json (presets, settings, styles, per-block styles) adding or changing templates ( templates/*.html ) and template parts ( parts/*.html ) adding patterns ( patterns/*.php ) and controlling what appears in the inserter adding style variations ( styles/*.json ) debugging “styles not applying” / “editor doesn’t reflect theme.json” Inputs required Repo root and which theme is targeted (theme directory if multiple e...
|
110 |
| 10559 | cninfo-to-notebooklm | jarodise/cninfo2notebookllm |
CNinfo to NotebookLM Overview Download annual and periodic reports for China A-share and Hong Kong stocks from cninfo.com.cn and upload them to NotebookLM for AI-powered analysis with a specialized "Financial Analyst" persona. When to Use User provides a China stock name or code (A-share or Hong Kong) User wants to analyze a company's financial reports User asks to "download reports" or "research" a Chinese stock User wants to upload stock reports to NotebookLM Supported Markets Market Code Patt...
|
110 |
| 10560 | pptx-translation | yusuketsunoda/ppt-trans |
PPTX Translation Skill PowerPoint翻訳機能の実装・デバッグ・改善のためのスキル。 When to Use This Skill PPTX翻訳機能を新規実装・改善する時 翻訳処理でエラーが発生した時 テキスト抽出が正しく動作しない時 翻訳後のPPTXが正しく生成されない時 Python処理(python-pptx)のデバッグ時 Claude API連携の問題を調査する時 アーキテクチャ ┌─────────────────────────────────────────────────────────────┐ │ TypeScript (Next.js Server Actions) │ │ └─ src/app/actions/pptx/*.ts │ │ ├─ extractTextFromPPTXAction → Python subprocess │ │ ├─ translateFileAction ...
|
110 |
| 10561 | hummingbot | 2025emma/vibe-coding-cn |
hummingbot When the skill is loaded, print this ASCII art: *,. *,,.* ,,,, .,* *,,,,,,,( .,, *,,,,,,,, .,,, * /,,,,,,,,,, .*,,,,,,, .,,,,,,,,,,, .,,,,,,,,,,* // ,,,,,,,,,,,,,,,,,,,,,,,,,,*% .,,,,,,,. *,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%%%%&@ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%%%%%%%& ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%%%%%%%%& /*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((%%%& . ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,((((((((. ...
|
110 |
| 10562 | secondme-init | mindverse/second-me-skills |
SecondMe 项目初始化 初始化 SecondMe 项目配置,支持直接解析 App Info 格式或手动输入凭证。 工具使用: 收集用户输入时使用 AskUserQuestion 工具。 工作流程 第零步:环境检查 重要提醒: 当前目录将作为项目根目录,Next.js 项目会直接在此目录中初始化。 显示当前工作目录路径,让用户确认: 📂 当前工作目录: /path/to/current/dir ⚠️ Next.js 项目将直接在此目录中初始化,请确保你已在一个新建的空文件夹中运行。 检查当前目录内容(除 .secondme/ 、 .git/ 、 CLAUDE.md 、 .claude/ 等配置文件外): 如果目录为空或仅有配置文件 :继续到下一步 如果存在其他文件 :发出警告 ⚠️ 当前目录不为空,包含以下文件/文件夹: - src/ - package.json - ... 继续操作可能会覆盖现有文件。是否确认继续? 使用 AskUserQuestion 让用户确认是否继续 第一步:检查现有配置 首先检查项目根目录是否存在 .secondme/state.json : 如果存...
|
110 |
| 10563 | raycast-extension | johnlindquist/claude |
Raycast Extension Development Quick Start Create project structure Write package.json with extension config Implement command in src/ Run npm install && npm run dev Project Structure my-extension/ ├── package.json Extension manifest + dependencies ├── tsconfig.json TypeScript config ├── .eslintrc.json ESLint config ├── raycast-env.d.ts Type definitions (auto-generated) ├── assets/ │ └── extension-icon.png 512x512 PNG icon └── src/ └── command-name.tsx ...
|
110 |
| 10564 | create-agents-md | siviter-xyz/dot-agent |
Create AGENTS.md Guide for creating AGENTS.md files for project-specific inline rules. When to Use AGENTS.md Small, project-specific instructions that should be committed in the repo Folder-scoped rules for specific directories Package-specific instructions in monorepos Test-specific guidance in test directories When NOT to Use AGENTS.md Reusable knowledge across projects → Use skills Large documentation → Use skills with references Complex workflows → Use skills with scripts AGENTS.md Structu...
|
109 |
| 10565 | commits | itechmeat/llm-code |
Conventional Commits Specification for structured commit messages that enable automated changelog generation and semantic versioning. Quick Reference Format <type>[optional scope]: <description> [optional body] [optional footer(s)] Common Types Type Purpose SemVer feat New feature MINOR fix Bug fix PATCH docs Documentation only - style Formatting, no code change - refactor Code change, no feature/fix - perf Performance improvement - test Adding/fixing tests - build Build system, dependencie...
|
109 |
| 10566 | vibeindex | vibeindex/skills |
When this skill is invoked, execute the steps below directly. Do not display this file or explain what you will do — go straight to analyzing the project, calling the APIs, and presenting results. Detect the user's language from conversation context and respond in that language. Translate all headers, labels, and explanations. For Korean users, prefer the description_ko field from API responses when available. Routing Parse the user's command and route to the correct action: /vibeindex → Action:...
|
109 |
| 10567 | tooluniverse-gwas-study-explorer | mims-harvard/tooluniverse |
GWAS Study Deep Dive & Meta-Analysis Compare GWAS studies, perform meta-analyses, and assess replication across cohorts Overview The GWAS Study Deep Dive & Meta-Analysis skill enables comprehensive comparison of genome-wide association studies (GWAS) for the same trait, meta-analysis of genetic loci across studies, and systematic assessment of replication and study quality. It integrates data from the NHGRI-EBI GWAS Catalog and Open Targets Genetics to provide a complete picture of the genetic a...
|
109 |
| 10568 | openrouter-trending-models | madappgang/claude-code |
OpenRouter Trending Models Skill Overview This skill provides access to current trending programming models from OpenRouter's public rankings. It executes a Bun script that fetches, parses, and structures data about the top 9 most-used AI models for programming tasks. What you get: Model IDs and names (e.g., x-ai/grok-code-fast-1) Token usage statistics (last week's trends) Context window sizes (input capacity) Pricing information (per token and per 1M tokens) Summary statistics (top provider...
|
109 |
| 10569 | jina-cli | geekjourneyx/jina-cli |
jina - Web Content Reader & Search CLI tool for reading web content and performing AI-powered web searches. Quick start Install : curl -fsSL https://raw.githubusercontent.com/geekjourneyx/jina-cli/main/scripts/install.sh | bash Basic usage : Read a URL jina read --url "https://example.com" Search the web jina search --query "golang latest news" Commands Command Purpose read Extract and convert content from URLs to LLM-friendly format search Search the web with AI-powered result processing conf...
|
109 |
| 10570 | expo-liquid-glass | devanshudesai/agent-skills |
Expo Liquid Glass Ship Liquid Glass UI that feels native, stays legible, and degrades safely across iOS/Android. Execution Order Confirm platform/runtime constraints. Check design alignment against HIG buckets (recommended for design-heavy tasks). Pick one primary implementation path (add a second path only if needed). Apply Apple-aligned visual rules before writing code. Implement guarded glass components with explicit fallbacks. Run accessibility and visual QA in both light/dark and clear/tint...
|
109 |
| 10571 | frontend builder | daffy0208/ai-dev-standards |
Frontend Builder Build maintainable, performant React and Next.js frontends. Core Principles 1. Component Composition Break UI into small, reusable, single-purpose components 2. State Proximity Keep state as close to where it's used as possible 3. Performance by Default Optimize rendering, code splitting, and asset loading 4. Developer Experience Clear naming, consistent patterns, helpful errors Framework Selection React (Vite) vs. Next.js Use React + Vite when : Client-side only application No ...
|
109 |
| 10572 | weather | chandima/agent-skills |
Weather Skill Get current weather conditions and forecasts. When to Use ✅ USE this skill when: "What's the weather?" "Will it rain today/tomorrow?" "Temperature in [city]" "Weather forecast for the week" Travel planning weather checks When NOT to Use ❌ DON'T use this skill when: Historical weather data → use weather archives/APIs Climate analysis or trends → use specialized data sources Hyper-local microclimate data → use local sensors Severe weather alerts → check official NWS sources Aviation/...
|
109 |
| 10573 | web-design-expert | erichowens/some_claude_skills |
Web Design Expert Expert web designer and brand identity specialist creating distinctive, cohesive visual systems for web applications. When to Use This Skill Use for: Brand identity development (personality, visual language, guidelines) Color palette creation and rationale Layout composition and visual hierarchy Component visual design (not just code) Responsive design strategy WCAG accessibility review for visual elements Do NOT use for: Deep typography work → use typography-expert Color...
|
109 |
| 10574 | stm32-freertos-developer | 2939387245/agent-skill_stm32-freertos |
STM32 + FreeRTOS 嵌入式开发专家 AI 使用规则 当用户提出请求时,根据以下规则选择性读取文档。不要一次性读取所有文档,只读取与用户请求相关的文件。 代码生成请求 用户说... 读取文件 "创建任务" / "创建队列" / "信号量" / "互斥锁" / "事件组" / "任务通知" EXAMPLES/BASIC.md "UART 驱动" / "ADC 驱动" / "I2C 驱动" / "TIM 驱动" REFERENCE/HAL_DRIVERS.md + EXAMPLES/DRIVERS.md "printf 重定向" / "printf 输出" / "ITM" REFERENCE/STD_LIBS.md "DMA 接收" / "不定长数据" REFERENCE/HAL_DRIVERS.md + EXAMPLES/DRIVERS.md 代码审查/问题排查请求 用户说... 读取文件 "中断" / "FromISR" / "portYIELD_FROM_ISR" / "优先级配置" PATTERNS/INTERRUPT.md "死锁" / "优先级反转" / "堆栈...
|
109 |
| 10575 | performance-engineer | 404kidwiz/claude-supercode-skills |
Performance Engineer Specialist in analyzing and optimizing application performance, identifying bottlenecks, and implementing efficiency improvements. When This Skill Activates Activates when you: Report performance issues Need performance optimization Mention "slow" or "latency" Want to improve efficiency Performance Analysis Process Phase 1: Identify the Problem Define metrics What's the baseline? What's the target? What's acceptable? Measure current performance Response time curl -w "@curl-...
|
109 |
| 10576 | tweet-writer | sanky369/vibe-building-skills |
Tweet Writer Skill Overview This skill helps you write viral, persuasive tweets and threads optimized for X's algorithm. It combines proven copywriting frameworks, viral hook formulas, and real-time research to model your content after successful examples in your niche. Keywords: twitter, X, tweets, threads, viral content, social media, engagement, hooks, copywriting Process Workflow Phase 1: Niche Research (CRITICAL) Before writing ANY tweet, you MUST research viral examples in the user's s...
|
109 |
| 10577 | convex realtime | waynesutton/convexskills |
Convex Realtime Build reactive applications with Convex's real-time subscriptions, optimistic updates, intelligent caching, and cursor-based pagination. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/client/react Optimistic Updates: https://docs.convex.dev/client/react/optimistic-updates Pagination: https://docs.convex.dev/database/pagination For broader context: https://docs.convex.dev/llms.txt Instructions How Convex R...
|
109 |
| 10578 | segment-cdp | davila7/claude-code-templates |
Segment CDP Patterns Analytics.js Browser Integration Client-side tracking with Analytics.js. Include track, identify, page, and group calls. Anonymous ID persists until identify merges with user. Server-Side Tracking with Node.js High-performance server-side tracking using @segment/analytics-node. Non-blocking with internal batching. Essential for backend events, webhooks, and sensitive data. Tracking Plan Design Design event schemas using Object + Action naming convention. Define required...
|
109 |
| 10579 | docker-compose-setup | pluginagentmarketplace/custom-plugin-docker |
Docker Compose Setup Skill Master Docker Compose for multi-container application orchestration with service dependencies, health checks, and environment management. Purpose Design and configure Docker Compose files for development and production environments with proper service orchestration. Parameters Parameter Type Required Default Description services array No - List of services to configure environment enum No dev dev/staging/prod include_monitoring boolean No false Add monitoring services ...
|
109 |
| 10580 | canghe-cover-image | freestylefly/canghe-skills |
Cover Image Generator Generate elegant cover images for articles with 5-dimensional customization. Usage Auto-select dimensions based on content /canghe-cover-image path/to/article.md Quick mode: skip confirmation /canghe-cover-image article.md --quick Specify dimensions /canghe-cover-image article.md --type conceptual --palette warm --rendering flat-vector Style presets (shorthand for palette + rendering) /canghe-cover-image article.md --style blueprint With reference images /canghe-cover-...
|
109 |
| 10581 | moodle-external-api-development | davila7/claude-code-templates |
Moodle External API Development This skill guides you through creating custom external web service APIs for Moodle LMS, following Moodle's external API framework and coding standards. When to Use This Skill Creating custom web services for Moodle plugins Implementing REST/AJAX endpoints for course management Building APIs for quiz operations, user tracking, or reporting Exposing Moodle functionality to external applications Developing mobile app backends using Moodle Core Architecture Pattern ...
|
109 |
| 10582 | google-serper-search | shuliuzhenhua-sys/google-serper-search |
This skill enables you to search the web and find images using the Serper API. When to Use This Skill Use this skill when the user: - Asks to search for information online - Needs current/recent information not in your knowledge base - Requests to find images or pictures - Wants to verify facts or get latest updates - Asks questions that require web search How to Use Advanced Search You can now use advanced parameters to filter results. ``` SERPER_API_KEY=$(moltbot config get googl...
|
109 |
| 10583 | yuque-personal-smart-summary | yuque/yuque-plugin |
Smart Summary — Yuque Knowledge Base & Document Summarization Generate intelligent summaries for an entire knowledge base or a set of documents, helping users quickly understand content landscape, key themes, and important insights. When to Use User wants an overview of a knowledge base User says "帮我总结一下这个知识库", "summarize my repo", "这个库里都有什么" User wants a summary of multiple related documents User says "帮我做个知识盘点", "generate a project summary from my docs" User wants periodic knowledge review Req...
|
109 |
| 10584 | subagent-task-execution | davidkiss/smart-ai-skills |
Subagent Task Execution Overview This skill is used to execute a set of tasks (typically from a task breakdown or plan). It focuses on high-quality execution by dispatching specialized subagents for each task, ensuring each task is performed correctly and verified before moving to the next. Core Principle One Task, One Subagent, Multi-Stage Review. By isolating each task and applying a structured review process, we ensure high quality and prevent context pollution. The Process Preparation: Read ...
|
109 |
| 10585 | playwright | oakoss/agent-skills |
Playwright CLI Skill Drive a real browser from the terminal using playwright-cli . Prefer the bundled wrapper script so the CLI works even when it is not globally installed. Treat this skill as CLI-first automation. Do not pivot to @playwright/test unless the user explicitly asks for test files. Prerequisite check (required) Before proposing commands, check whether npx is available (the wrapper depends on it): command -v npx > /dev/null 2 > &1 If it is not available, pause and ask the user to in...
|
109 |
| 10586 | calcom-api | calcom/cal.com |
Cal.com API v2 This skill provides guidance for AI agents to interact with the Cal.com API v2, enabling scheduling automation, booking management, and calendar integrations. Base URL All API requests should be made to: https://api.cal.com/v2 Authentication All API requests require authentication via Bearer token in the Authorization header: Authorization: Bearer cal_<your_api_key> API keys must be prefixed with cal_ . You can generate API keys from your Cal.com dashboard under Settings > Develop...
|
109 |
| 10587 | ln-002-best-practices-researcher | levnikolaevich/claude-code-skills |
Research industry standards and create project documentation in one workflow. Purpose & Scope - Research via MCP Ref + Context7 for standards, patterns, versions - Create 4 types of documents from research results: Guide: Pattern documentation (Do/Don't/When table) - Manual: API reference (methods/params/doc links) - ADR: Architecture Decision Record (Q&A dialog) - Research: Investigation document answering specific question - Return document path for linking in Stories/Tasks Phase 0:...
|
109 |
| 10588 | convex http actions | waynesutton/convexskills |
Convex HTTP Actions Build HTTP endpoints for webhooks, external API integrations, and custom routes in Convex applications. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/functions/http-actions Actions Overview: https://docs.convex.dev/functions/actions Authentication: https://docs.convex.dev/auth For broader context: https://docs.convex.dev/llms.txt Instructions HTTP Actions Overview HTTP actions allow you to define HTT...
|
108 |
| 10589 | convex schema validator | waynesutton/convexskills |
Convex Schema Validator Define and validate database schemas in Convex with proper typing, index configuration, optional fields, unions, and strategies for schema migrations. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/database/schemas Indexes: https://docs.convex.dev/database/indexes Data Types: https://docs.convex.dev/database/types For broader context: https://docs.convex.dev/llms.txt Instructions Basic Schema Defi...
|
108 |
| 10590 | image-search | z0gsh1u/oh-my-writing-skill |
你是一个专业的图片素材搜索助手,负责为内容创作查找合适的配图。 核心能力 - 多维度过滤:按尺寸、颜色、类型(照片/插画/GIF)筛选 - 版权筛选:支持按授权类型过滤图片 - 自动下载:可将图片下载到本地目录 - 结构化输出:返回图片元数据便于后续处理 使用方式 步骤 1:运行搜索脚本 ``` python scripts/image_search.py "搜索关键词" --max_results 10 --size Large ``` 参数说明: - `query`:搜索关键词(必填) - `--max_results`:返回的最大图片数(默认 10) - `--size`:图片尺寸,可选 `Small`、`Medium`、`Large`、`Wallpaper` - `--color`:颜色过滤,如 `Red`、`Blue`、`Green`、`Monochrome` - `--type`:图片类型,可选 `photo`、`clipart`、`gif`、`transparent`、`line` - `--layout`:布局,可选 `Square...
|
108 |
| 10591 | code-review | alinaqi/claude-bootstrap |
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
|
108 |
| 10592 | upstash-qstash | davila7/claude-code-templates |
Upstash QStash You are an Upstash QStash expert who builds reliable serverless messaging without infrastructure management. You understand that QStash's simplicity is its power - HTTP in, HTTP out, with reliability in between. You've scheduled millions of messages, set up cron jobs that run for years, and built webhook delivery systems that never drop a message. You know that QStash shines when you need "just make this HTTP call later, reliably." Your core philosophy: HTTP is the universal l...
|
108 |
| 10593 | gsap-master | su69ar/rdnax-gsap-master |
GSAP Master Skill (Antigravity) Scope & Ground Rules You are a production-grade GSAP v3 engineer. You deliver interactive UI motion with: Performance (avoid layout thrash, keep 60fps, optimize pointer interactions) Maintainability (timeline architecture, modular functions, clear labels) Accessibility (prefers-reduced-motion, readable motion, focus visibility) Framework safety (React/Next.js cleanup, no duplicated triggers on rerenders) GSAP Core handles Tween/Timeline + utilities/tools. Plugins ...
|
108 |
| 10594 | business-analyst | 404kidwiz/claude-supercode-skills |
Business Analyst Role: Phase 1 - Analysis Specialist Function: Conduct product discovery, research, and create product briefs When to Use This Skill Activate this skill when you need to: Create a product brief for a new product or feature Conduct product discovery and problem analysis Brainstorm and explore product ideas Perform market and competitive research Gather and document requirements Interview stakeholders about needs and pain points Define success metrics and goals Set the foundation b...
|
108 |
| 10595 | adr-writing | existential-birds/beagle |
ADR Writing Overview Generate Architectural Decision Records (ADRs) following the MADR template with systematic completeness checking. Quick Reference ┌─────────────┐ ┌──────────────┐ ┌─────────────┐ │ SEQUENCE │ ──▶ │ EXPLORE │ ──▶ │ FILL │ │ (get next │ │ (context, │ │ (template │ │ number) │ │ ADRs) │ │ sections) │ └─────────────┘ └──────────────┘ └─────────────┘ │ │ │ ...
|
108 |
| 10596 | canghe-comic | freestylefly/canghe-skills |
Knowledge Comic Creator Create original knowledge comics with flexible art style × tone combinations. Usage /canghe-comic posts/turing-story/source.md /canghe-comic article.md --art manga --tone warm /canghe-comic then paste content Options Visual Dimensions Option Values Description --art ligne-claire (default), manga, realistic, ink-brush, chalk Art style / rendering technique --tone neutral (default), warm, dramatic, romantic, energetic, vintage, action Mood / atmosphere --layout standard (d...
|
108 |
| 10597 | nextjs | pproenca/dot-skills |
Next.js Best Practices Apply these rules when writing or reviewing Next.js code. File Conventions See file-conventions.md for: Project structure and special files Route segments (dynamic, catch-all, groups) Parallel and intercepting routes Middleware rename in v16 (middleware → proxy) RSC Boundaries Detect invalid React Server Component patterns. See rsc-boundaries.md for: Async client component detection (invalid) Non-serializable props detection Server Action exceptions Async Patterns Next.js ...
|
108 |
| 10598 | backend-developer | 404kidwiz/claude-supercode-skills |
Backend Developer Skill Purpose Provides comprehensive expertise in server-side application development across multiple frameworks, languages, and deployment strategies. Specializes in building scalable APIs, database design, authentication systems, and production-ready backend infrastructure. When to Use Building REST or GraphQL APIs Designing database schemas and models Implementing authentication and authorization Setting up server infrastructure Creating microservices or monolithic backend...
|
108 |
| 10599 | blockrun | davila7/claude-code-templates |
BlockRun BlockRun works with Claude Code and Google Antigravity. You can't generate images. You have no real-time X/Twitter access. BlockRun gives you these capabilities. Philosophy You have a wallet. When you need a capability you lack, you pay for it autonomously. You Need You Call Pricing Image generation DALL-E $0.04/image Real-time X data Grok + Live Search $0.025/source Second opinion GPT-5.2 $1.75/M input, $14/M output Cheaper processing DeepSeek $0.14/M input, $0.28/M output How it...
|
108 |
| 10600 | tooluniverse-metabolomics | mims-harvard/tooluniverse |
Metabolomics Research Comprehensive metabolomics research skill that identifies metabolites, analyzes studies, and searches metabolomics databases. Generates structured research reports with annotated metabolite information, study details, and database statistics. Use Case Use this skill when asked to: Identify or annotate metabolites (HMDB IDs, chemical properties, pathways) Retrieve metabolomics study information from MetaboLights or Metabolomics Workbench Search for metabolomics studies by ke...
|
108 |