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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,536
总 Skills
37.0M
总安装量
2,451
贡献者
# Skill 仓库 描述 安装量
10401 ctf-pwn cyberkaida/reverse-engineering-assistant
CTF Binary Exploitation (Pwn) Quick reference for binary exploitation (pwn) CTF challenges. Each technique has a one-liner here; see supporting files for full details. Additional Resources overflow-basics.md - Stack/global buffer overflow, ret2win, canary bypass, canary byte-by-byte brute force on forking servers, struct pointer overwrite, signed integer bypass, hidden gadgets, stride-based OOB read leak rop-and-shellcode.md - ROP chains (ret2libc, syscall ROP), SROP with UTF-8 constraints, shel...
117
10402 axiom-vision-diag charleswiltgen/axiom
Vision Framework Diagnostics Systematic troubleshooting for Vision framework issues: subjects not detected, missing landmarks, low confidence, performance problems, coordinate mismatches, text recognition failures, barcode detection issues, and document scanning problems. Overview Core Principle : When Vision doesn't work, the problem is usually: Environment (lighting, occlusion, edge of frame) - 40% Confidence threshold (ignoring low confidence data) - 30% Threading (blocking main thread causes...
117
10403 wordpress-router automattic/agent-skills
WordPress Router When to use Use this skill at the start of most WordPress tasks to: identify what kind of WordPress codebase this is (plugin vs theme vs block theme vs WP core checkout vs full site), pick the right workflow and guardrails, delegate to the most relevant domain skill(s). Inputs required Repo root (current working directory). The user’s intent (what they want changed) and any constraints (WP version targets, WP.com specifics, release requirements). Procedure Run the project triage...
116
10404 axiom-energy-diag charleswiltgen/axiom
Energy Diagnostics Symptom-based troubleshooting for energy issues. Start with your symptom, follow the decision tree, get the fix. Related skills: axiom-energy (patterns, checklists), axiom-energy-ref (API reference) Symptom 1: App at Top of Battery Settings Users or you notice your app consuming significant battery. Diagnosis Decision Tree App at top of Battery Settings? │ ├─ Step 1: Run Power Profiler (15 min) │ ├─ CPU Power Impact high? │ │ ├─ Continuous? → Timer leak or polling loop...
116
10405 readme shpigford/skills
/readme — Gold-Standard README Generation Purpose: Generate a README that converts skimmers into users and satisfies deep readers — then validate it with a council. YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. Quick Start /readme Interview + generate + validate (new README) /readme --rewrite Rewrite existing README with same patterns /readme --validate Council-validate an existing README without rewriting The Patterns These are non-negotiable. Every README this skill produces foll...
116
10406 mantine-dev itechmeat/llm-code
Mantine is a fully-featured React components library with TypeScript support. It provides 100+ hooks and components with native dark mode, CSS-in-JS via CSS modules, and excellent accessibility. When to use - Building React applications with a comprehensive UI library - Need TypeScript-first component library with full type safety - Want native dark/light theme support with CSS variables - Building forms with validation (useForm hook) - Need utility hooks for common React patterns - Work...
116
10407 tooluniverse-rnaseq-deseq2 mims-harvard/tooluniverse
RNA-seq Differential Expression Analysis (DESeq2) Differential expression analysis of RNA-seq count data using PyDESeq2, with enrichment analysis (gseapy) and gene annotation via ToolUniverse. BixBench Coverage : Validated on 53 BixBench questions across 15 computational biology projects. Core Principles Data-first - Load and validate count data and metadata BEFORE any analysis Statistical rigor - Proper normalization, dispersion estimation, multiple testing correction Flexible design - Single-f...
116
10408 git-commit fvadicamo/dev-agent-skills
Git Commit with Conventional Commits Overview Create standardized, semantic git commits using the Conventional Commits specification. Analyze the actual diff to determine appropriate type, scope, and message. Conventional Commit Format <type>[optional scope]: <description> [optional body] [optional footer(s)] Commit Types Type Purpose feat New feature fix Bug fix docs Documentation only style Formatting/style (no logic) refactor Code refactor (no feature/fix) perf Performance improvement test Ad...
116
10409 seedance-video freestylefly/canghe-skills
Seedance 视频生成 使用字节跳动 Seedance-1.5-pro 模型 (doubao-seedance-1-5-pro-251215) 根据文本或图片生成视频。 前置要求 安装 SDK: pip install 'volcengine-python-sdk[ark]' 功能 文生视频 : 根据文本提示词生成视频 图生视频 : 根据首帧图片生成视频 自定义参数 : 支持设置时长、宽高比、水印等 任务管理 : 创建任务、查询状态、自动下载 使用方法 1. 快速生成视频 (文生视频) cd ~/.openclaw/workspace/skills/seedance-video python3 scripts/generate_video.py "一只可爱的猫咪在草地上玩耍" --wait -o cat.mp4 2. 自定义参数 python3 scripts/generate_video.py "日落时分的海边" \ --duration 10 \ --ratio 16 :9 \ --wait \ -o sunset.mp4 3. 图生视频 python3 scripts/gen...
116
10410 instinct-apply humanplane/homunculus
You have learned behaviors. Use them. When To Check - Starting a coding task - About to use a tool in a pattern you've seen before - Making decisions about code style, testing, git How To Check ``` Read all personal instincts for f in .claude/homunculus/instincts/personal/*.md; do [ -f "$f" ] && echo "=== $(basename "$f") ===" && cat "$f" && echo done 2>/dev/null Also check inherited instincts for f in .claude/homunculus/instincts/inherited/*.md; do [ -f "$f" ] && echo "=== $(base...
116
10411 video-generation cleanexpo/ato
Video Generation Skill Overview This skill generates high-quality videos using structured prompts and a Python script. The workflow includes creating JSON-formatted prompts and executing video generation with optional reference image. Core Capabilities Create structured JSON prompts for AIGC video generation Support reference image as guidance or the first/last frame of the video Generate videos through automated Python script execution Workflow Step 1: Understand Requirements When a user reques...
116
10412 qa-expert 404kidwiz/claude-supercode-skills
QA Expert Establish world-class QA testing processes for any software project using proven methodologies from Google Testing Standards and OWASP security best practices. When to Use This Skill Trigger this skill when: Setting up QA infrastructure for a new or existing project Writing standardized test cases (AAA pattern compliance) Executing comprehensive test plans with progress tracking Implementing security testing (OWASP Top 10) Filing bugs with proper severity classification (P0-P4) Gen...
116
10413 axiom-energy-ref charleswiltgen/axiom
Energy Optimization Reference Complete API reference for iOS energy optimization, with code examples from WWDC sessions and Apple documentation.
116
10414 secure whawkinsiv/claude-code-superpowers
Security Security Checklist Security Basics: - [ ] Authentication required for protected routes - [ ] Passwords hashed (bcrypt/argon2), never stored plain text - [ ] API keys in environment variables, not code - [ ] HTTPS only in production - [ ] Input validated on server side - [ ] SQL injection prevented (use parameterized queries) - [ ] XSS prevented (sanitize user input) - [ ] CSRF tokens on forms - [ ] Rate limiting on API endpoints - [ ] User sessions expire (30min-1hr typical) See COMMON-...
116
10415 pnpm hairyf/skills
pnpm is a fast, disk space efficient package manager. It uses a content-addressable store to deduplicate packages across all projects on a machine, saving significant disk space. pnpm enforces strict dependency resolution by default, preventing phantom dependencies. Configuration should preferably be placed in pnpm-workspace.yaml for pnpm-specific settings. Important: When working with pnpm projects, agents should check for pnpm-workspace.yaml and .npmrc files to understand workspace structure a...
116
10416 axiom-using-axiom charleswiltgen/axiom
IF AN AXIOM SKILL APPLIES TO YOUR iOS/SWIFT TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT. This is not negotiable. This is not optional. You cannot rationalize your way out of this. Using Axiom Skills The Rule Check for Axiom skills BEFORE ANY RESPONSE when working with iOS/Swift projects. This includes clarifying questions. Even 1% chance means check first. Red Flags — iOS-Specific Rationalizations These thoughts mean STOP—you're rationalizing: Thought Reality "This is just a simple bui...
116
10417 ai-search-optimization dirnbauer/webconsulting-skills
AI Search Optimization (AEO & GEO) Scope: Optimizing content for AI-powered search engines and answer engines This skill covers strategies for visibility in ChatGPT, Perplexity, Google AI Overviews, Microsoft Copilot, and other generative AI platforms. 1. Understanding AEO & GEO What is AEO (Answer Engine Optimization)? Answer Engine Optimization focuses on structuring content to provide direct, concise answers to user queries through AI-powered platforms. Unlike traditional SEO which aims fo...
116
10418 avalonia-zafiro-development davila7/claude-code-templates
Avalonia Zafiro Development This skill defines the mandatory conventions and behavioral rules for developing cross-platform applications with Avalonia UI and the Zafiro toolkit. These rules prioritize maintainability, correctness, and a functional-reactive approach. Core Pillars Functional-Reactive MVVM: Pure MVVM logic using DynamicData and ReactiveUI. Safety & Predictability: Explicit error handling with Result types and avoidance of exceptions for flow control. Cross-Platform Excellence: St...
116
10419 axiom-icloud-drive-ref charleswiltgen/axiom
iCloud Drive Reference Purpose: Comprehensive reference for file-based iCloud sync using ubiquitous containers Availability: iOS 5.0+ (basic), iOS 8.0+ (iCloud Drive), iOS 11.0+ (modern APIs) Context: File-based cloud storage, not database (use CloudKit for structured data) When to Use This Skill Use this skill when: Implementing document-based iCloud sync Syncing user files across devices Building document-based apps (like Pages, Numbers) Coordinating file access across processes Handling i...
116
10420 angular-architecture gentleman-programming/gentleman-skills
The Scope Rule (REQUIRED) "Scope determines structure" - Where a component lives depends on its usage. Usage Placement Used by 1 feature features/[feature]/components/ Used by 2+ features features/shared/components/ Example features/ shopping-cart/ shopping-cart.ts Main component = feature name components/ cart-item.ts Used ONLY by shopping-cart cart-summary.ts Used ONLY by shopping-cart checkout/ checkout.ts components/ payment-form.ts Used ONLY by checko...
116
10421 telegram-dev 2025emma/vibe-coding-cn
Telegram 生态开发技能 全面的 Telegram 开发指南,涵盖 Bot 开发、Mini Apps (Web Apps)、客户端开发的完整技术栈。 何时使用此技能 当需要以下帮助时使用此技能: 开发 Telegram Bot(消息机器人) 创建 Telegram Mini Apps(小程序) 构建自定义 Telegram 客户端 集成 Telegram 支付和业务功能 实现 Webhook 和长轮询 使用 Telegram 认证和存储 处理消息、媒体和文件 实现内联模式和键盘 Telegram 开发生态概览 三大核心 API Bot API - 创建机器人程序 HTTP 接口,简单易用 自动处理加密和通信 适合:聊天机器人、自动化工具 Mini Apps API (Web Apps) - 创建 Web 应用 JavaScript 接口 在 Telegram 内运行 适合:小程序、游戏、电商 Telegram API & TDLib - 创建客户端 完整的 Telegram 协议实现 支持所有平台 适合:自定义客户端、企业应用 Bot API 开发 快速开始 ...
116
10422 typescript-type-expert gracefullight/stock-checker
TypeScript Type Expert You are an advanced TypeScript type system specialist with deep expertise in type-level programming, complex generic constraints, conditional types, template literal manipulation, and type performance optimization. When to Use This Agent Use this agent for: Complex generic constraints and variance issues Advanced conditional type patterns and distributive behavior Template literal type manipulation and parsing Type inference failures and narrowing problems Recursive type d...
116
10423 findata-toolkit-cn geeksfino/finskills
金融数据工具包 — A股市场 自包含的数据工具包,提供A股市场实时金融数据和定量计算。所有数据源 免费 , 无需API密钥 。 安装 安装依赖(一次性): pip install -r requirements.txt 可用工具 所有脚本位于 scripts/ 目录。从技能根目录运行。 1. A股数据 ( scripts/stock_data.py ) 通过 AKShare 获取A股基本面、行情、财务指标。 命令 用途 python scripts/stock_data.py 600519 基本信息(贵州茅台) python scripts/stock_data.py 600519 --metrics 完整财务指标(估值、盈利、杠杆、增长) python scripts/stock_data.py 600519 --history 历史OHLCV行情 python scripts/stock_data.py 600519 --financials 利润表、资产负债表、现金流量表 python scripts/stock_data.py 600519 --insider 董监高增减持数据...
116
10424 axiom-xctrace-ref charleswiltgen/axiom
xctrace CLI Reference Command-line interface for Instruments profiling. Enables headless performance analysis without GUI. Overview xctrace is the CLI tool behind Instruments.app. Use it for: Automated profiling in CI/CD pipelines Headless trace collection without GUI Programmatic trace analysis via XML export Performance regression detection Requires: Xcode 12+ (xctrace 12.0+). This reference tested with Xcode 26.2. Quick Reference Record a 10-second CPU profile xcrun xctrace record --in...
116
10425 jimeng_mcp_skill wwwzhouhui/skills_collection
即梦 AI 生成技能 概述 即梦技能通过 jimeng-mcp-server 实现 AI 驱动的图像和视频生成,这是一个集成了即梦 AI 多模态生成能力的 MCP(模型上下文协议)服务器。使用此技能可以直接通过自然语言指令创建视觉内容。 核心能力: 🎨 文本生成图像:从文本描述生成高质量图像 🎭 图像合成:智能合并和融合多张图片 🎬 文本生成视频:从文本提示创建短视频 🎞️ 图像生成视频:为静态图像添加动画效果 何时使用此技能: 用户要求生成、创建或制作图像或视频 用户提到"jimeng"、"即梦"或请求AI视觉内容生成 用户提供文本描述并希望得到视觉输出 用户想要组合、合并或合成多张图片 用户想为静态图像添加动画或运动效果 前置条件 使用此技能前,请确保 jimeng-mcp-server 已正确配置: 服务器必须运行,通过以下模式之一: stdio 模式:在 MCP 客户端(Claude Desktop、Cherry Studio)中配置 SSE 模式:作为带 SSE 传输的 HTTP 服务器运行 HTTP 模式:作为 REST API 服务器运行 环境变量已配置...
116
10426 tooluniverse-statistical-modeling mims-harvard/tooluniverse
Statistical Modeling for Biomedical Data Analysis Comprehensive statistical modeling skill for fitting regression models, survival models, and mixed-effects models to biomedical data. Produces publication-quality statistical summaries with odds ratios, hazard ratios, confidence intervals, and p-values. Features Linear Regression - OLS for continuous outcomes with diagnostic tests Logistic Regression - Binary, ordinal, and multinomial models with odds ratios Survival Analysis - Cox proportional h...
116
10427 axiom-network-framework-ref charleswiltgen/axiom
Network.framework API Reference Overview Network.framework is Apple's modern networking API that replaces Berkeley sockets, providing smart connection establishment, user-space networking, built-in TLS support, and seamless mobility. Introduced in iOS 12 (2018) with NWConnection and evolved in iOS 26 (2025) with NetworkConnection for structured concurrency. Evolution timeline 2018 (iOS 12) NWConnection with completion handlers, deprecates CFSocket/NSStream/SCNetworkReachability 2019 (iOS 13) U...
115
10428 google-drive-automation composiohq/awesome-claude-skills
Google Drive Lightweight Google Drive integration with standalone OAuth authentication. No MCP server required. Full read/write access. Requires Google Workspace account. Personal Gmail accounts are not supported. When to Use You need to search, list, upload, download, move, or organize Google Drive files and folders. The task requires direct Drive read/write automation through local scripts in a Workspace account. You want file-level Drive operations without introducing an MCP server dependency...
115
10429 package-management aaronontheweb/dotnet-skills
Use this skill when: - Adding, removing, or updating NuGet packages - Setting up Central Package Management (CPM) for a solution - Managing package versions across multiple projects - Troubleshooting package conflicts or restore issues Golden Rule: Never Edit XML Directly Always use `dotnet` CLI commands to manage packages. Never manually edit `.csproj` or `Directory.Packages.props` files. ``` DO: Use CLI commands dotnet add package Newtonsoft.Json dotnet remove package Newtonsoft.Json ...
115
10430 data-scientist 404kidwiz/claude-supercode-skills
Use this skill when Working on data scientist tasks or workflows Needing guidance, best practices, or checklists for data scientist Do not use this skill when The task is unrelated to data scientist You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a...
115
10431 alicloud-network-esa-test cinience/alicloud-skills
Category: test ESA Minimal Viable Test Prerequisites Network access is available. GoalsSkill: skills/network/esa/alicloud-network-esa/ 。 Test Steps 执行: python skills/network/esa/alicloud-network-esa/scripts/list_openapi_meta_apis.py \ --product-code ESA \ --version 2024 -09-10 \ --output-dir output/alicloud-network-esa-test 检查输出文件是否存在: output/alicloud-network-esa-test/ESA_2024-09-10_api_docs.json output/alicloud-network-esa-test/ESA_2024-09-10_api_list.md Expected Results Command execution succe...
115
10432 ai-ml-timeseries vasilyu1983/ai-agents-public
Time Series Forecasting — Modern Patterns & Production Best Practices Modern Best Practices (January 2026): Treat time as a first-class axis: temporal splits, rolling backtests, and point-in-time correctness. Default to strong baselines (naive/seasonal naive) before complex models. Prevent leakage: feature windows and aggregations must use only information available at prediction time. Evaluate by horizon and segment; a single aggregate metric hides failures. Prefer probabilistic forecasts whe...
115
10433 alicloud-media-vod cinience/alicloud-skills
Category: service ApsaraVideo VOD Validation mkdir -p output/alicloud-media-vod python -m py_compile skills/media/vod/alicloud-media-vod/scripts/list_openapi_meta_apis.py echo "py_compile_ok" > output/alicloud-media-vod/validate.txt Pass criteria: command exits 0 and output/alicloud-media-vod/validate.txt is generated. Output And Evidence Save API inventory and operation evidence under output/alicloud-media-vod/ . Keep region, media IDs, template IDs, and request parameters in evidence files. Us...
115
10434 tooluniverse-gene-enrichment mims-harvard/tooluniverse
Gene Enrichment and Pathway Analysis Perform comprehensive gene enrichment analysis including Gene Ontology (GO), KEGG, Reactome, WikiPathways, and MSigDB enrichment using both Over-Representation Analysis (ORA) and Gene Set Enrichment Analysis (GSEA). Integrates local computation via gseapy with ToolUniverse pathway databases for cross-validated, publication-ready results. IMPORTANT : Always use English terms in tool calls (gene names, pathway names, organism names), even if the user writes in ...
115
10435 reducing-entropy davila7/claude-code-templates
Reducing Entropy More code begets more code. Entropy accumulates. This skill biases toward the smallest possible codebase. Core question: "What does the codebase look like after ?" Before You Begin Load at least one mindset from references/ List the files in the reference directory Read frontmatter descriptions to pick which applies Load at least one State which you loaded and its core principle Do not proceed until you've done this. The Goal The goal is less total code in the final codebase - n...
115
10436 axiom-background-processing-diag charleswiltgen/axiom
Background Processing Diagnostics Symptom-based troubleshooting for background task issues. Related skills: axiom-background-processing (patterns, checklists), axiom-background-processing-ref (API reference) Symptom 1: Task Never Runs Handler never called despite successful submit(). Quick Diagnosis (5 minutes) Task never runs? │ ├─ Step 1: Check Info.plist (2 min) │ ├─ BGTaskSchedulerPermittedIdentifiers contains EXACT identifier? │ │ └─ NO → Add identifier, rebuild │ ├─ UIBackgroundMo...
115
10437 mvp-architect shipshitdev/library
MVP Architect - Minimum Viable Product Scoping Overview Help indie founders scope the smallest possible product that validates their core hypothesis using Hexa's methodology. Get to market in 3 months or less. Hexa's Core Principle: "Launch an MVP with key high-value features within 3 months. It's better to launch with clear, easily understood features, even if they aren't at full power yet." When This Activates "What should my MVP include" "Help me scope my MVP" "What features do I need" "Wh...
115
10438 axiom-hang-diagnostics charleswiltgen/axiom
Hang Diagnostics Systematic diagnosis and resolution of app hangs. A hang occurs when the main thread is blocked for more than 1 second, making the app unresponsive to user input. Red Flags — Check This Skill When Symptom This Skill Applies App freezes briefly during use Yes — likely hang UI doesn't respond to touches Yes — main thread blocked "App not responding" system dialog Yes — severe hang Xcode Organizer shows hang diagnostics Yes — field hang reports MetricKit MXHangDiagnostic received...
115
10439 travel-companion banjtheman/travel-companion-skill
Travel Companion Assist users with travel planning, destination research, and itinerary management. Quick Start Clarify the request - Confirm destination, dates, budget, and interests Research - Use browser with profile: "openclaw" to search: TikTok for trending local tips Instagram for events and spots Eventbrite for specific dates Google Maps for attractions Expedia for flights/hotels Take snapshots - Read pages with snapshotFormat: "ai" Compile - Create summary with activities, weather, costs...
115
10440 nuxt-content nuxt-content/nuxt-studio
Nuxt Content v3 Progressive guidance for content-driven Nuxt apps with typed collections and SQL-backed queries. When to Use Working with: Content collections (content.config.ts, defineCollection) Remote sources (GitHub repos, external APIs via defineCollectionSource) Content queries (queryCollection, navigation, search) MDC rendering (<ContentRenderer>, prose components) Database configuration (SQLite, PostgreSQL, D1, LibSQL) Content hooks (content:file:beforeParse, content:file:afterParse)...
115
10441 coding davidkiss/smart-ai-skills
General Coding Best Practices Overview This skill provides a set of core principles and practices for software development. Use this when implementing new features, refactoring existing code, or reviewing code to ensure high quality and maintainability. Core Principles DRY (Don't Repeat Yourself): Avoid logic duplication. If you find yourself writing the same code twice, abstract it. KISS (Keep It Simple, Stupid): Prefer simple, straightforward solutions over complex ones. Avoid over-engineering...
115
10442 remotion-bits av/remotion-bits
Remotion Bits Animation components and utilities for building Remotion videos. The library's most powerful feature is Scene3D — a camera-based 3D presentation system (like impress.js) that enables cinematic multi-section compositions with flying camera moves, step-aware element animations, and Transform3D position management. When building any non-trivial composition, prefer Scene3D as your foundation. It handles camera movement, timing, element positioning, and responsive layout all in one syst...
115
10443 svelte epicenterhq/epicenter
@json-render/svelte Svelte 5 renderer that converts json-render specs into Svelte component trees. Quick Start <JsonUIProvider> <Renderer {spec} {registry} /> </JsonUIProvider> Creating a Catalog import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/svelte" ; import { z } from "zod" ; export const catalog = defineCatalog ( schema , { components : { Button : { props : z . object ( { label : z . string ( ) , variant : z . enum ( [ "primary" , "secondary" ] ) . n...
115
10444 web-audio-api martinholovsky/claude-skills-generator
Web Audio API Skill 1. Overview This skill provides Web Audio API expertise for creating audio feedback, voice processing, and sound effects in the JARVIS AI Assistant. Risk Level: LOW - Audio processing with minimal security surface Primary Use Cases: HUD audio feedback (beeps, alerts) Voice input processing Spatial audio for 3D HUD elements Real-time audio visualization Text-to-speech integration 2. Core Responsibilities 2.1 Fundamental Principles TDD First: Write tests before implementati...
115
10445 git dalestudy/skills
Git Git 버전 관리 모범 관례 및 워크플로우 가이드. 커밋 메시지 컨벤션 Conventional Commits 사용 커밋 메시지는 <type>: <description> 형식을 따른다: feat: add form validation to login page fix: prevent duplicate email check error on signup docs: add installation guide to README refactor: extract auth logic into separate module test: add payment feature tests chore: update dependencies 주요 타입 타입 설명 예시 feat 새로운 기능 추가 feat: add dark mode support fix 버그 수정 fix: prevent token deletion on logout docs 문서 변경 (코드 변경 없음) docs: update API documenta...
115
10446 anime-js dylantarre/animation-principles
Anime.js Animation Guidelines You are an expert in Anime.js, JavaScript, and web animation performance. Follow these guidelines when creating animations. Core Principles Installation and Import npm install animejs // Full import import anime from "animejs" ; // Modular import for smaller bundle size import { animate , timeline , stagger } from "animejs" ; Basic Animation anime ( { targets : ".element" , translateX : 250 , rotate : "1turn" , duration : 800 , easing : "easeInOutQuad" } ) ; Perform...
115
10447 mjml-email-templates aaronontheweb/dotnet-skills
MJML Email Templates When to Use This Skill Use this skill when: Building transactional emails (signup, password reset, invoices, notifications) Creating responsive email templates that work across clients Setting up MJML template rendering in .NET
115
10448 swiftui-patterns johnrogers/claude-swift-engineering
SwiftUI Patterns Modern SwiftUI patterns for building declarative, performant user interfaces on Apple platforms. Covers the Observation framework, view composition, type-safe navigation, and performance optimization. When to Activate Building SwiftUI views and managing state ( @State , @Observable , @Binding ) Designing navigation flows with NavigationStack Structuring view models and data flow Optimizing rendering performance for lists and complex layouts Working with environment values and de...
115
10449 tooluniverse-multi-omics-integration mims-harvard/tooluniverse
Multi-Omics Integration Coordinate and integrate multiple omics datasets for comprehensive systems biology analysis. Orchestrates specialized ToolUniverse skills to perform cross-omics correlation, multi-omics clustering, pathway-level integration, and unified interpretation. When to Use This Skill User has multiple omics datasets (RNA-seq + proteomics, methylation + expression, etc.) Cross-omics correlation queries (e.g., "How does methylation affect expression?") Multi-omics biomarker discover...
115
10450 viem 0xsardius/onchain-typescript-skills
Viem Skill Version: Viem 2.x | Official Docs Viem is the modern TypeScript interface for Ethereum. This skill ensures correct patterns for contract interactions, client setup, and type safety. Quick Reference import { createPublicClient, createWalletClient, http } from 'viem' import { mainnet } from 'viem/chains' import { privateKeyToAccount } from 'viem/accounts' Critical Patterns 1. Client Setup Public Client (read-only operations): const publicClient = createPublicClient({ chain: main...
115