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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,096
总 Skills
59.3M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
2001 shopify-expert jeffallan/claude-skills
Shopify Expert Senior Shopify developer with expertise in theme development, headless commerce, app architecture, and custom checkout solutions. Role Definition You are a senior Shopify developer with deep e-commerce experience. You specialize in Shopify theme development with Liquid, headless commerce with Storefront API, custom Shopify app development, and checkout extensibility. You build high-performing stores achieving sub-2s load times and conversion-optimized checkout flows. When to U...
2.7K
2002 threejs-textures cloudai-x/threejs-skills
Three.js Textures Quick Start import * as THREE from "three"; // Load texture const loader = new THREE.TextureLoader(); const texture = loader.load("texture.jpg"); // Apply to material const material = new THREE.MeshStandardMaterial({ map: texture, }); Texture Loading Basic Loading const loader = new THREE.TextureLoader(); // Async with callbacks loader.load( "texture.jpg", (texture) => console.log("Loaded"), (progress) => console.log("Progress"), (error) => console.error("Error"),...
2.7K
2003 doublecheck github/awesome-copilot
Doublecheck Run a three-layer verification pipeline on AI-generated output. The goal is not to tell the user what is true -- it is to extract every verifiable claim, find sources the user can check independently, and flag anything that looks like a hallucination pattern. Activation Doublecheck operates in two modes: active mode (persistent) and one-shot mode (on demand). Active Mode When the user invokes this skill without providing specific text to verify, activate persistent doublecheck mode. ...
2.7K
2004 remotion-video-creation affaan-m/everything-claude-code
When to use Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge. How to use Read individual rule files for detailed explanations and code examples: rules/3d.md - 3D content in Remotion using Three.js and React Three Fiber rules/animations.md - Fundamental animation skills for Remotion rules/assets.md - Importing images, videos, audio, and fonts into Remotion rules/audio.md - Using audio and sound in Remotion - importing, trimming, volume, speed, pi...
2.7K
2005 security-best-practices openai/skills
Security Best Practices When to use this skill New project : consider security from the start Security audit : inspect and fix vulnerabilities Public API : harden APIs accessible externally Compliance : comply with GDPR, PCI-DSS, etc. Instructions Step 1: Enforce HTTPS and security headers Express.js security middleware : import express from 'express' ; import helmet from 'helmet' ; import rateLimit from 'express-rate-limit' ; const app = express ( ) ; // Helmet: automatically set security heade...
2.7K
2006 repo-scan affaan-m/everything-claude-code
repo-scan Every ecosystem has its own dependency manager, but no tool looks across C++, Android, iOS, and Web to tell you: how much code is actually yours, what's third-party, and what's dead weight. When to Use Taking over a large legacy codebase and need a structural overview Before major refactoring — identify what's core, what's duplicate, what's dead Auditing third-party dependencies embedded directly in source (not declared in package managers) Preparing architecture decision records for m...
2.7K
2007 tech-debt anthropics/knowledge-work-plugins
Tech Debt Management Systematically identify, categorize, and prioritize technical debt. Categories Type Examples Risk Code debt Duplicated logic, poor abstractions, magic numbers Bugs, slow development Architecture debt Monolith that should be split, wrong data store Scaling limits Test debt Low coverage, flaky tests, missing integration tests Regressions ship Dependency debt Outdated libraries, unmaintained dependencies Security vulns Documentation debt Missing runbooks, outdated READMEs, trib...
2.7K
2008 ralph-loop andrelandgraf/fullstackrecipes
Ralph Loop Complete setup for automated agent-driven development. Define features as user stories with testable acceptance criteria, then run AI agents in a loop until all stories pass. Prerequisites Complete these recipes first (in order): AI Coding Agent Configuration Configure AI coding agents like Cursor, GitHub Copilot, or Claude Code with project-specific patterns, coding guidelines, and MCP servers for consistent AI-assisted development. curl -H "Accept: text/markdown" https://fulls...
2.7K
2009 healthcare-phi-compliance affaan-m/everything-claude-code
Healthcare PHI/PII Compliance Patterns Patterns for protecting patient data, clinician data, and financial data in healthcare applications. Applicable to HIPAA (US), DISHA (India), GDPR (EU), and general healthcare data protection. When to Use Building any feature that touches patient records Implementing access control or authentication for clinical systems Designing database schemas for healthcare data Building APIs that return patient or clinician data Implementing audit trails or logging Rev...
2.7K
2010 golang-concurrency samber/cc-skills-golang
Persona: You are a Go concurrency engineer. You assume every goroutine is a liability until proven necessary — correctness and leak-freedom come before performance. Modes: Write mode — implement concurrent code (goroutines, channels, sync primitives, worker pools, pipelines). Follow the sequential instructions below. Review mode — reviewing a PR's concurrent code changes. Focus on the diff: check for goroutine leaks, missing context propagation, ownership violations, and unprotected shared state...
2.7K
2011 elestio elestio/elestio-skill
Elestio Skill Version: 2.0 Purpose: Deploy and manage services on Elestio DevOps platform Status: Ready to use Last Updated: 2026-02-19 Elestio is a fully managed DevOps platform. Dedicated VMs (not shared Kubernetes). 400+ open-source templates, 9 cloud providers, 100+ regions. Handles deployment, security, updates, backups, monitoring, support. This skill uses the official Elestio CLI ( elestio command, installed via npm install -g elestio ). When to Use This Skill Use this skill when: User wa...
2.7K
2012 ljg-travel lijigang/ljg-skills
ljg-travel-flow: 旅行研究 一条命令完成:全维度文化研究 → 内容提炼 → org 文档 + 便携卡片。 方法论借鉴考古学 Desk-Based Assessment(DBA):到达之前,穷尽一切文献证据。 模式 强制 NATIVE 模式。 本 workflow 是多 skill 管道(Research → ContentAnalysis → ljg-card),不走 Algorithm 七步流程。 参数 参数 说明 示例 城市名 必填,目标城市 西安、洛阳、大同 -f 聚焦主题(可选) -f 唐代 -f 石窟 -f 青铜器 -q 快速模式,跳过内容提炼,只做研究+文档 执行 1. 解析参数 从用户消息中提取城市名称和可选参数。如有聚焦主题,后续所有搜索围绕该主题展开。 2. 全维度研究(Research extensive — 单次调用,12 个 Agent 并行) 调用 Skill tool 执行 Research ,使用 extensive 模式。 核心设计:不分"知识底图"和"平台发现"两步——它们是同一个研究操作的不同搜索角度。 12 个 Agent 同时出发...
2.7K
2013 healthcare-emr-patterns affaan-m/everything-claude-code
Healthcare EMR Development Patterns Patterns for building Electronic Medical Record (EMR) and Electronic Health Record (EHR) systems. Prioritizes patient safety, clinical accuracy, and practitioner efficiency. When to Use Building patient encounter workflows (complaint, exam, diagnosis, prescription) Implementing clinical note-taking (structured + free text + voice-to-text) Designing prescription/medication modules with drug interaction checking Integrating Clinical Decision Support Systems (CDS...
2.7K
2014 figma-use figma/mcp-server-guide
use_figma — Figma Plugin API Skill Use the use_figma tool to execute JavaScript in Figma files via the Plugin API. All detailed reference docs live in references/ . Always pass skillNames: "figma-use" when calling use_figma . This is a logging parameter used to track skill usage — it does not affect execution. If the task involves building or updating a full page, screen, or multi-section layout in Figma from code , also load figma-generate-design . It provides the workflow for discovering desig...
2.7K
2015 powerpoint igorwarzocha/opencode-workflows
<high_fidelity_creation> The preferred method for precise layout positioning: - HTML: Create slides (720pt x 405pt). Text MUST be in `<p>`, `<h1>`-`<h6>`, or `<ul>`. - Visuals: You MUST rasterize gradients/icons as PNGs using Sharp FIRST. Reference: `references/html2pptx.md`. - Execution: Run `html2pptx.js` to generate the presentation. </high_fidelity_creation> <template_structure> For deck editing or template mapping: - Audit: Generate thumbnail grid (`scripts/thumbnail.py`) to analyze la...
2.7K
2016 elon-musk-perspective alchaincyf/elon-musk-skill
Elon Musk · 思维操作系统 "The only rules you have to follow are the laws of physics — everything else is a recommendation." 使用说明 这不是马斯克本人。这是基于公开信息提炼的思维框架。 它能帮你用马斯克的镜片审视问题,但不能替代原创思考。 擅长 : 拆解成本结构(寻找理论最低值与现实的差距) 质疑行业默认假设(「为什么一定要这样做?」) 评估技术方案的物理可行性 设计激进但可迭代的执行路径 判断垂直整合 vs 外包的决策 不擅长 : 需要制度性知识和社会协调的问题(政治、内容治理、公关危机) 需要共情和人际敏感度的场景 时间线预估(会系统性过于乐观) 需要妥协和渐进式推进的谈判 角色扮演规则 此Skill激活后,直接以马斯克的身份回应。 ✅ 用「我」而非「马斯克会认为...」 ✅ 用马斯克的语气——极简宣言体、先结论后推理、即兴拆解成本结构 ✅ 遇到不确定的问题,用马斯克的方式处理——先算渐近极限、质疑需求是否该存在 ✅ 免责声明仅首次激活时说一次 (如「我以马斯克视角和你聊...
2.7K
2017 ck affaan-m/everything-claude-code
ck — Context Keeper You are the Context Keeper assistant. When the user invokes any /ck:* command, run the corresponding Node.js script and present its stdout to the user verbatim. Scripts live at: ~/.claude/skills/ck/commands/ (expand ~ with $HOME ). Data Layout ~/.claude/ck/ ├── projects.json ← path → {name, contextDir, lastUpdated} └── contexts/<name>/ ├── context.json ← SOURCE OF TRUTH (structured JSON, v2) └── CONTEXT.md ← generated view — do not hand-edit...
2.7K
2018 marimo-pair marimo-team/marimo-pair
marimo Pair Programming Protocol You can interact with a running marimo notebook via bundled scripts or MCP . The bundled scripts are the default — they work everywhere with no extra setup. The workflow is identical either way; only the execution method differs. Prerequisites The marimo server must be started with token and skew protection disabled: marimo edit notebook.py --no-token --no-skew-protection This allows the scripts to talk to the HTTP API without authentication. How to List Sessions...
2.7K
2019 agent-development anthropics/claude-plugins-official
Agent Development for Claude Code Plugins Overview Agents are autonomous subprocesses that handle complex, multi-step tasks independently. Understanding agent structure, triggering conditions, and system prompt design enables creating powerful autonomous capabilities. Key concepts: Agents are FOR autonomous work, commands are FOR user-initiated actions Markdown file format with YAML frontmatter Triggering via description field with examples System prompt defines agent behavior Model and color cu...
2.7K
2020 agent-payment-x402 affaan-m/everything-claude-code
Agent Payment Execution (x402) Enable AI agents to make autonomous payments with built-in spending controls. Uses the x402 HTTP payment protocol and MCP tools so agents can pay for external services, APIs, or other agents without custodial risk. When to Use Use when: your agent needs to pay for an API call, purchase a service, settle with another agent, enforce per-task spending limits, or manage a non-custodial wallet. Pairs naturally with cost-aware-llm-pipeline and security-review skills. How...
2.7K
2021 hexagonal-architecture affaan-m/everything-claude-code
Hexagonal Architecture Hexagonal architecture (Ports and Adapters) keeps business logic independent from frameworks, transport, and persistence details. The core app depends on abstract ports, and adapters implement those ports at the edges. When to Use Building new features where long-term maintainability and testability matter. Refactoring layered or framework-heavy code where domain logic is mixed with I/O concerns. Supporting multiple interfaces for the same use case (HTTP, CLI, queue worker...
2.7K
2022 karpathy-llm-wiki astro-han/karpathy-llm-wiki
Karpathy LLM Wiki Build and maintain a personal knowledge base using LLMs. You manage two directories: raw/ (immutable source material) and wiki/ (compiled knowledge articles). Sources go into raw/, you compile them into wiki articles, and the wiki compounds over time. Core ideas from Karpathy: "The LLM writes and maintains the wiki; the human reads and asks questions." "The wiki is a persistent, compounding artifact." Architecture Three layers, all under the user's project root: raw/ — Immutabl...
2.7K
2023 angular-ssr analogjs/angular-skills
Angular SSR Implement server-side rendering, hydration, and prerendering in Angular v20+. Setup Add SSR to Existing Project ng add @angular/ssr This adds: @angular/ssr package server.ts - Express server src/main.server.ts - Server bootstrap src/app/app.config.server.ts - Server providers Updates angular.json with SSR configuration Project Structure src/ ├── app/ │ ├── app.config.ts Browser config │ ├── app.config.server.ts Server config │ └── app.routes.ts ├── main.ts ...
2.7K
2024 dependabot github/awesome-copilot
Dependabot Configuration & Management Overview Dependabot is GitHub's built-in dependency management tool with three core capabilities: Dependabot Alerts — Notify when dependencies have known vulnerabilities (CVEs) Dependabot Security Updates — Auto-create PRs to fix vulnerable dependencies Dependabot Version Updates — Auto-create PRs to keep dependencies current All configuration lives in a single file : .github/dependabot.yml on the default branch. GitHub does not support multiple dependabot.y...
2.7K
2025 search-for-service coinbase/agentic-wallet-skills
Searching the x402 Bazaar Use the npx awal@2.0.3 x402 commands to discover and inspect paid API endpoints available on the x402 bazaar marketplace. No authentication or balance is required for searching. Commands Search the Bazaar Find paid services by keyword using BM25 relevance search: npx awal@2.0.3 x402 bazaar search < query > [ -k < n > ] [ --force-refresh ] [ --json ] Option Description -k, --top <n> Number of results (default: 5) --force-refresh Re-fetch resource index from CDP API --jso...
2.7K
2026 property-based-testing trailofbits/skills
Property-Based Testing Guide Use this skill proactively during development when you encounter patterns where PBT provides stronger coverage than example-based tests. When to Invoke (Automatic Detection) Invoke this skill when you detect: Serialization pairs: encode/decode, serialize/deserialize, toJSON/fromJSON, pack/unpack Parsers: URL parsing, config parsing, protocol parsing, string-to-structured-data Normalization: normalize, sanitize, clean, canonicalize, format Validators: is_valid, va...
2.7K
2027 vercel-cli vercel/vercel
Vercel CLI Skill The Vercel CLI ( vercel or vc ) deploys, manages, and develops projects on the Vercel platform from the command line. Use vercel <command> -h for full flag details on any command. Critical: Project Linking Commands must be run from the directory containing the .vercel folder (or a subdirectory of it). How .vercel gets set up depends on your project structure: .vercel/project.json : Created by vercel link . Links a single project. Fine for single-project repos, and can work in mo...
2.7K
2028 clean-ddd-hexagonal ccheney/robust-skills
Clean Architecture + DDD + Hexagonal Backend architecture combining DDD tactical patterns, Clean Architecture dependency rules, and Hexagonal ports/adapters for maintainable, testable systems. When to Use (and When NOT to) Use When Skip When Complex business domain with many rules Simple CRUD, few business rules Long-lived system (years of maintenance) Prototype, MVP, throwaway code Team of 5+ developers Solo developer or small team (1-2) Multiple entry points (API, CLI, events) Single entry p...
2.7K
2029 browser-automation sophieguanongit/openclaw-browser-automation
Browser Automation You are a browser automation expert who has debugged thousands of flaky tests and built scrapers that run for years without breaking. You've seen the evolution from Selenium to Puppeteer to Playwright and understand exactly when each tool shines. Your core insight: Most automation failures come from three sources - bad selectors, missing waits, and detection systems. You teach people to think like the browser, use the right selectors, and let Playwright's auto-wait do its job....
2.7K
2030 data-analyst shubhamsaboo/awesome-llm-apps
Data Analyst You are an expert data analyst with expertise in SQL, Python (pandas), and statistical analysis. When to Apply Use this skill when: Writing SQL queries for data extraction Analyzing datasets with pandas Performing statistical analysis Creating data transformations Identifying data patterns and insights Data cleaning and preparation Core Competencies SQL Complex queries with JOINs, subqueries, CTEs Window functions and aggregations Query optimization Database design understanding pan...
2.7K
2031 kotlin-specialist jeffallan/claude-skills
Kotlin Specialist Senior Kotlin developer with deep expertise in coroutines, Kotlin Multiplatform (KMP), and modern Kotlin 1.9+ patterns. Role Definition You are a senior Kotlin engineer with 10+ years of JVM experience and mastery of Kotlin 1.9+ features. You specialize in coroutines, Flow API, multiplatform development, Android/Compose, Ktor servers, and functional programming patterns. You write expressive, type-safe code leveraging Kotlin's DSL capabilities. When to Use This Skill Buildi...
2.7K
2032 product-lens affaan-m/everything-claude-code
Product Lens — Think Before You Build This lane owns product diagnosis, not implementation-ready specification writing. If the user needs a durable PRD-to-SRS or capability-contract artifact, hand off to product-capability . When to Use Before starting any feature — validate the "why" Weekly product review — are we building the right thing? When stuck choosing between features Before a launch — sanity check the user journey When converting a vague idea into a product brief before engineering pla...
2.7K
2033 canary-watch affaan-m/everything-claude-code
Canary Watch — Post-Deploy Monitoring When to Use After deploying to production or staging After merging a risky PR When you want to verify a fix actually fixed it Continuous monitoring during a launch window After dependency upgrades How It Works Monitors a deployed URL for regressions. Runs in a loop until stopped or until the watch window expires. What It Watches 1. HTTP Status — is the page returning 200? 2. Console Errors — new errors that weren't there before? 3. Network Failures — failed ...
2.7K
2034 autonomous-agent-harness affaan-m/everything-claude-code
Autonomous Agent Harness Turn Claude Code into a persistent, self-directing agent system using only native features and MCP servers. When to Activate User wants an agent that runs continuously or on a schedule Setting up automated workflows that trigger periodically Building a personal AI assistant that remembers context across sessions User says "run this every day", "check on this regularly", "keep monitoring" Wants to replicate functionality from Hermes, AutoGPT, or similar autonomous agent f...
2.7K
2035 music elevenlabs/skills
ElevenLabs Music Generation Generate music from text prompts - supports instrumental tracks, songs with lyrics, and fine-grained control via composition plans. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs . client import ElevenLabs client = ElevenLabs ( ) audio = client . music . compose ( prompt = "A chill lo-fi hip hop beat with jazzy piano chords" , music_length_ms = 30000 ) with open ( "output.mp3" , "wb" ) as f : for chu...
2.7K
2036 pretty-mermaid imxv/pretty-mermaid-skills
Pretty Mermaid Render stunning, professionally-styled Mermaid diagrams with one command. Supports SVG for web/docs and ASCII for terminals. Quick Start Render a Single Diagram From a file: node scripts/render.mjs \ --input diagram.mmd \ --output diagram.svg \ --format svg \ --theme tokyo-night From user-provided Mermaid code: Save the code to a .mmd file Run the render script with desired theme Batch Render Multiple Diagrams node scripts/batch.mjs \ --input-dir ./diagrams \ --output-dir ./output...
2.7K
2037 code-reviewer shubhamsaboo/awesome-llm-apps
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
2.7K
2038 javascript-pro jeffallan/claude-skills
JavaScript Pro Senior JavaScript developer with 10+ years mastering modern ES2023+ features, asynchronous patterns, and full-stack JavaScript development. Role Definition You are a senior JavaScript engineer with 10+ years of experience. You specialize in modern ES2023+ JavaScript, Node.js 20+, asynchronous programming, functional patterns, and performance optimization. You build clean, maintainable code following modern best practices. When to Use This Skill Building vanilla JavaScript appl...
2.7K
2039 testing-strategy anthropics/knowledge-work-plugins
Testing Strategy Design effective testing strategies balancing coverage, speed, and maintenance. Testing Pyramid / E2E \ Few, slow, high confidence / Integration \ Some, medium speed / Unit Tests \ Many, fast, focused Strategy by Component Type API endpoints : Unit tests for business logic, integration tests for HTTP layer, contract tests for consumers Data pipelines : Input validation, transformation correctness, idempotency tests Frontend : Component tests, interaction test...
2.7K
2040 openai-whisper steipete/clawdis
Whisper (CLI) Use whisper to transcribe audio locally. Quick start whisper /path/audio.mp3 --model medium --output_format txt --output_dir . whisper /path/audio.m4a --task translate --output_format srt Notes Models download to ~/.cache/whisper on first run. --model defaults to turbo on this install. Use smaller models for speed, larger for accuracy.
2.7K
2041 skill-creator anthropics/claude-plugins-official
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...
2.7K
2042 architecture anthropics/knowledge-work-plugins
/architecture If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Create an Architecture Decision Record (ADR) or evaluate a system design. Usage /architecture $ARGUMENTS Modes Create an ADR : "Should we use Kafka or SQS for our event bus?" Evaluate a design : "Review this microservices proposal" System design : "Design the notification system for our app" See the system-design skill for detailed frameworks on requirements gathering, scalability ana...
2.7K
2043 gh-cli trailofbits/skills
GitHub CLI (gh) Comprehensive reference for GitHub CLI (gh) - work seamlessly with GitHub from the command line. Version: 2.85.0 (current as of January 2026) Prerequisites Installation macOS brew install gh Linux curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of = /usr/share/keyrings/githubcli-archive-keyring.gpg echo "deb [arch= $( dpkg --print-architecture ) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable...
2.7K
2044 healthcare-eval-harness affaan-m/everything-claude-code
Healthcare Eval Harness — Patient Safety Verification Automated verification system for healthcare application deployments. A single CRITICAL failure blocks deployment. Patient safety is non-negotiable. Note: Examples use Jest as the reference test runner. Adapt commands for your framework (Vitest, pytest, PHPUnit, etc.) — the test categories and pass thresholds are framework-agnostic. When to Use Before any deployment of EMR/EHR applications After modifying CDSS logic (drug interactions, dose v...
2.7K
2045 brand-voice affaan-m/everything-claude-code
Brand Voice Build a durable voice profile from real source material, then use that profile everywhere instead of re-deriving style from scratch or defaulting to generic AI copy. When to Activate the user wants content or outreach in a specific voice writing for X, LinkedIn, email, launch posts, threads, or product updates adapting a known author's tone across channels the existing content lane needs a reusable style system instead of one-off mimicry Source Priority Use the strongest real source ...
2.7K
2046 nestjs-patterns affaan-m/everything-claude-code
NestJS Development Patterns Production-grade NestJS patterns for modular TypeScript backends. When to Activate Building NestJS APIs or services Structuring modules, controllers, and providers Adding DTO validation, guards, interceptors, or exception filters Configuring environment-aware settings and database integrations Testing NestJS units or HTTP endpoints Project Structure src/ ├── app.module.ts ├── main.ts ├── common/ │ ├── filters/ │ ├── guards/ │ ├── interceptors/ │ └── pipes/ ├──...
2.7K
2047 healthcare-cdss-patterns affaan-m/everything-claude-code
Healthcare CDSS Development Patterns Patterns for building Clinical Decision Support Systems that integrate into EMR workflows. CDSS modules are patient safety critical — zero tolerance for false negatives. When to Use Implementing drug interaction checking Building dose validation engines Implementing clinical scoring systems (NEWS2, qSOFA, APACHE, GCS) Designing alert systems for abnormal clinical values Building medication order entry with safety checks Integrating lab result interpretation w...
2.7K
2048 playwright-expert jeffallan/claude-skills
Playwright Expert Senior E2E testing specialist with deep expertise in Playwright for robust, maintainable browser automation. Role Definition You are a senior QA automation engineer with 8+ years of browser testing experience. You specialize in Playwright test architecture, Page Object Model, and debugging flaky tests. You write reliable, fast tests that run in CI/CD. When to Use This Skill Writing E2E tests with Playwright Setting up Playwright test infrastructure Debugging flaky browser t...
2.7K
2049 nextjs-developer jeffallan/claude-skills
Next.js Developer Senior Next.js developer with expertise in Next.js 14+ App Router, server components, and full-stack deployment with focus on performance and SEO excellence. Role Definition You are a senior full-stack developer with 10+ years of React/Next.js experience. You specialize in Next.js 14+ App Router (NOT Pages Router), React Server Components, server actions, and production-grade deployment. You build blazing-fast, SEO-optimized applications achieving Core Web Vitals scores > 90...
2.7K
2050 better-icons better-auth/better-icons
Better Icons Search and retrieve icons from 200+ libraries via Iconify. CLI Search icons better-icons search <query> [--prefix <prefix>] [--limit <n>] [--json] Get icon SVG (outputs to stdout) better-icons get <icon-id> [--color <color>] [--size <px>] [--json] Setup MCP server for AI agents better-icons setup [-a cursor,claude-code] [-s global|project] Examples better-icons search arrow --limit 10 better-icons search home --json | jq '.icons[0]' better-icons get lucide:home > icon.svg be...
2.7K