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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
12901 sound-effects-generator dkyazzentwatwa/chatgpt-skills
Sound Effects Generator Generate programmatic audio: pure tones, noise types, DTMF signals, and simple sound effects. Perfect for testing, alerts, audio cues, and placeholder sounds. Quick Start from scripts.sfx_generator import SoundEffectsGenerator Generate a tone sfx = SoundEffectsGenerator() sfx.tone(440, duration=1000).save("a440.wav") Generate white noise sfx.noise("white", duration=2000).save("whitenoise.wav") Create a beep sequence sfx.beep_sequence([440, 880, 440], durations=200...
58
12902 requirement-analyst caomeiyouren/momei
Requirement Analyst Skill (需求分析技能) 能力 (Capabilities) 需求采访 : 在面对模糊意图时,能够通过结构化的提问(采访模式)引导用户明确核心需求。 意图抽离 : 从用户的非技术描述中识别出真实的业务目标。 规划对齐 : 验证需求是否符合 docs/plan/roadmap.md 的当前阶段,以及是否已存在于 docs/plan/todo.md 中。 影响评估 (产品层面) : 评估变更对用户体验和业务逻辑的一致性影响。 指令 (Instructions) 强制阅读 : 在评估任何新需求前, 必须阅读 docs/plan/roadmap.md 和 docs/plan/todo.md 。 启动采访 : 如果用户输入包含“我想实现一个...功能”但缺乏具体验收标准,必须回复:“为了确保精准实现,我需要就以下几点与您对齐:”,然后列出 3-5 个核心问题。 遵循规范 : 规划新阶段任务时,必须参考 docs/standards/planning.md 使用 Momei 评分矩阵。 输出产物 : 生成或更新 todo.md 中的具体 Task 项,并...
58
12903 video-captioner dkyazzentwatwa/chatgpt-skills
Add text overlays, subtitles, and captions to videos with full control over positioning, styling, timing, and animation. Purpose Video captioning and text overlays for: - Social media videos (Instagram, TikTok, YouTube) - Educational content and tutorials - Subtitle generation and translation - Branding and watermarks - Accessibility compliance Features - Text Overlays: Add static or timed text to videos - Subtitle Tracks: Import SRT files or create programmatically - Custom Styling...
58
12904 rendering-strategies kostja94/marketing-skills
SEO Technical: Rendering Strategies Guides rendering strategy selection and optimization for search engine and AI crawler visibility. Golden rule : Page data and metadata must be available on page load without JavaScript execution for optimal SEO. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Scope (Technical SEO) Static...
58
12905 pytorch-lightning orchestra-research/ai-research-skills
PyTorch Lightning - High-Level Training Framework Quick start PyTorch Lightning organizes PyTorch code to eliminate boilerplate while maintaining flexibility. Installation: pip install lightning Convert PyTorch to Lightning (3 steps): import lightning as L import torch from torch import nn from torch.utils.data import DataLoader, Dataset Step 1: Define LightningModule (organize your PyTorch code) class LitModel(L.LightningModule): def __init__(self, hidden_size=128): super()....
58
12906 test-design-techniques proffesor-for-testing/agentic-qe
<default_to_action> When designing test cases systematically: - APPLY Boundary Value Analysis (test at min, max, edges) - USE Equivalence Partitioning (one test per partition) - CREATE Decision Tables (for complex business rules) - MODEL State Transitions (for stateful behavior) - REDUCE with Pairwise Testing (for combinations) Quick Design Selection: - Numeric ranges → BVA + EP - Multiple conditions → Decision Tables - Workflows → State Transition - Many parameters → Pairwise Testing ...
58
12907 jest teachingai/full-stack-skills
Jest Testing Best Practices You are an expert in JavaScript, TypeScript, and Jest testing. Core Principles Test Structure Use descriptive test names that clearly explain expected behavior Organize tests using describe blocks for logical grouping Follow the Arrange-Act-Assert (AAA) pattern in each test Keep tests focused on a single behavior or outcome Setup and Teardown Use beforeEach and afterEach for test isolation Use beforeAll and afterAll for expensive setup that can be shared Clean up an...
58
12908 frontend miles990/claude-software-skills
Frontend Development Overview Modern frontend development patterns, frameworks, and best practices for building performant web applications. React Ecosystem Component Patterns // Functional component with hooks import { useState , useEffect , useCallback , useMemo } from 'react' ; interface UserListProps { initialFilter ? : string ; onSelect : ( user : User ) => void ; } function UserList ( { initialFilter = '' , onSelect } : UserListProps ) { const [ users , setUsers ] = useState < User [ ] > (...
58
12909 controller-react cartridge-gg/docs
Controller React Integration Integrate Cartridge Controller with React using starknet-react . Installation pnpm add @cartridge/connector @cartridge/controller @starknet-react/core @starknet-react/chains starknet pnpm add -D vite-plugin-mkcert Provider Setup Important : Create connector outside React components. import { sepolia , mainnet , Chain } from "@starknet-react/chains" ; import { StarknetConfig , jsonRpcProvider , cartridge } from "@starknet-react/core" ; import { ControllerConnector } f...
58
12910 anygen-data-analysis anygenio/anygen-skills
AnyGen Data Analysis (CSV) You MUST strictly follow every instruction in this document. Do not skip, reorder, or improvise any step. Analyze CSV data with AnyGen: generate clean tables, summaries, charts, and insights using AnyGen OpenAPI. Output: online task URL for interactive viewing. When to Use User needs to analyze CSV data (tables, charts, summaries, insights) User has data files to upload for analysis Security & Permissions What this skill does: Sends task prompts and parameters to www.a...
58
12911 social-scraping merit-systems/agentcash-skills
Social Media Scraping with StableSocial Scrape profiles, posts, comments, followers, and search across TikTok, Instagram, X/Twitter, Facebook, Reddit, and LinkedIn. All endpoints cost $0.06 per call. Setup See rules/getting-started.md for installation and wallet setup. How It Works: Async Two-Step Flow Every request follows a trigger-then-poll pattern: Step 1: Trigger (paid, $0.06) npx agentcash fetch https://stablesocial.dev/api/x/profile -m POST -b '{"handle": "elonmusk"}' Returns 202 Accepted...
58
12912 inertia-rails-forms inertia-rails/skills
Inertia Rails Forms Full-stack form handling for Inertia.js + Rails. Before building a form, ask: Simple create/edit? → <Form> component (no state management needed) Requires per-field UI elements? → Still <Form> . React useState for UI state (preview URL, file size display) is independent of form data — <Form> handles the submission; useState handles the UI. Multi-step wizard, dynamic fields (add/remove inputs), or form data shared with sibling components (e.g., live preview panel)? → useForm h...
58
12913 ripgrep oimiragieo/agent-studio
Ripgrep is a line-oriented search tool that recursively searches directories for regex patterns. It's 10-100x faster than grep and respects `.gitignore` by default. Use it instead of grep, find, or manually reading large files. Core principle: When you need to find text in files, use ripgrep. Don't read entire files into context when you can search them. When to Use Use ripgrep when: - Searching for text patterns across a codebase or directory - Finding all occurrences of a function, varia...
58
12914 gh dagster-io/erk
GitHub CLI (gh) Overview GitHub CLI ( gh ) is the official command-line tool for GitHub that brings pull requests, issues, releases, and other GitHub concepts to the terminal. This skill provides comprehensive guidance for using gh to streamline GitHub workflows, including PR management, issue tracking, repository operations, and API access. When to Use This Skill Invoke this skill when users: Mention GitHub CLI ( gh ) commands or workflows Ask about creating, viewing, or managing pull requests ...
58
12915 pdfco vm0-ai/vm0-skills
PDF.co All-in-one PDF processing API. Convert, extract, merge, split, compress PDFs and more. Supports OCR for scanned documents. Official docs: https://docs.pdf.co/ When to Use Use this skill when you need to: Extract text from PDF files (with OCR support) Convert PDF to CSV, JSON, or other formats Merge multiple PDFs into one Split PDF into multiple files Compress PDF to reduce file size Convert HTML/URL to PDF Parse invoices and documents with AI Prerequisites Create an account at https:...
58
12916 hqq-quantization orchestra-research/ai-research-skills
HQQ - Half-Quadratic Quantization Fast, calibration-free weight quantization supporting 8/4/3/2/1-bit precision with multiple optimized backends. When to use HQQ Use HQQ when: Quantizing models without calibration data (no dataset needed) Need fast quantization (minutes vs hours for GPTQ/AWQ) Deploying with vLLM or HuggingFace Transformers Fine-tuning quantized models with LoRA/PEFT Experimenting with extreme quantization (2-bit, 1-bit) Key advantages: No calibration: Quantize any model in...
58
12917 browser-use saik0s/mcp-browser-use
Browser Automation with browser-use CLI The browser-use command provides fast, persistent browser automation. It maintains browser sessions across commands, enabling complex multi-step workflows. Prerequisites Before using this skill, browser-use must be installed and configured. Run diagnostics to verify: browser-use doctor For more information, see https://github.com/browser-use/browser-use/blob/main/browser_use/skill_cli/README.md Core Workflow Navigate : browser-use open <url> - Opens URL (s...
58
12918 hig-project-context raintree-technology/apple-hig-skills
Apple HIG: Project Context Create and maintain .claude/apple-design-context.md so other HIG skills can skip redundant questions. Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Gathering Context Before asking questions, auto-discover context from: README.md -- Product description, platform targets Package.swift / .xcodeproj -- Supported platforms, minimum OS versions, dependencies Info.plist -- App category...
58
12919 theme-factory hotovo/aider-desk
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...
58
12920 market research analyst eddiebe147/claude-settings
Market Research Analyst Expert market research agent that conducts comprehensive market analysis using web search, data synthesis, and strategic frameworks. Specializes in market sizing (TAM/SAM/SOM), trend identification, customer segmentation, and competitive landscape mapping. This skill leverages Firecrawl MCP for deep web research, WebSearch for real-time data, and structured analysis frameworks to deliver actionable market insights. Perfect for business planning, fundraising, product strat...
58
12921 python-testing-strategist jorgealves/agent_skills
Python Testing Strategist Purpose and Intent Design comprehensive Python test suites including unit, integration, and E2E tests. Use when establishing testing patterns for new or existing Python applications. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the P...
58
12922 form-wizard-builder patricio0312rev/skills
Form Wizard Builder Create multi-step form experiences with validation, state persistence, and review steps. Core Workflow Define steps: Break form into logical sections Create schema: Zod/Yup validation for each step Build step components: Individual form sections State management: Shared state across steps (Zustand/Context) Navigation: Next/Back/Skip logic Progress indicator: Visual step tracker Review step: Summary before submission Error handling: Per-step and final validation Basic Wizard...
58
12923 mcp-builder davepoon/buildwithclaude
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
58
12924 sharex workflow and versioning sharex/xerahs
Scope This file is the single source of truth for Git and versioning rules that involve: Commit and push workflow Commit message format Version bump behavior Directory.Build.props updates This supersedes the retired docs/development/RELEASE_PROCESS.md . Version Source Of Truth Treat the root Directory.Build.props file as the app version source of truth. Never set version numbers in individual .csproj files. When bumping version, update every tracked Directory.Build.props in the repository so val...
58
12925 webnovel-review lingfengqaq/webnovel-writer
Copy and track progress: ``` 质量审查进度: - [ ] Step 1: 加载核心约束 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/core-constraints.md") - [ ] Step 2: 加载爽点标准 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/cool-points-guide.md") - [ ] Step 3: 加载节奏标准 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/strand-weave-pattern.md") - [ ] Step 4: 加载常见错误 (cat "${CLAUDE_PLUGIN_ROOT}/skills/webnovel-review/references/common-mistakes.md") - [ ] Step 5: 加载项目状态 (cat .webnovel/st...
58
12926 skill-dependency-resolver jorgealves/agent_skills
Skill Dependency Resolver Purpose and Intent The skill-dependency-resolver acts as a scheduler and orchestrator. It looks at what each skill "needs" and what it "provides" to determine the logical order of operations for a multi-skill task. When to Use Workflow Automation : When you want an agent to handle a complex task that requires multiple steps (e.g., Audit -> Refactor -> Test). Architecture Planning : To see if your current skill library has all the necessary "connectors" to solve a busine...
58
12927 story writer eddiebe147/claude-settings
Story Writer Bring imaginative worlds and characters to life through compelling narrative fiction. This skill helps you develop original stories from concept to completion, whether you're writing short stories, novels, screenplays, or any form of creative fiction. From character development and world-building to plot structure and dialogue, this skill applies proven storytelling techniques to create narratives that captivate readers and keep them turning pages. It helps you navigate the creative...
58
12928 discord civitai/civitai
Discord (Via message ) Use the message tool. No provider-specific discord tool exposed to the agent. Musts Always: channel: "discord" . Respect gating: channels.discord.actions.* (some default off: roles , moderation , presence , channels ). Prefer explicit ids: guildId , channelId , messageId , userId . Multi-account: optional accountId . Guidelines Avoid Markdown tables in outbound Discord messages. Mention users as <@USER_ID> . Prefer Discord components v2 ( components ) for rich UI; use lega...
58
12929 hook-creator oimiragieo/agent-studio
Hook Creator Skill Creates, validates, and registers hooks for the multi-agent orchestration framework. ROUTER UPDATE REQUIRED (CRITICAL - DO NOT SKIP) After creating ANY hook, you MUST update documentation: 1. Add to .claude/hooks/README.md under appropriate category 2. Register in config.yaml or settings.json if required 3. Update learnings.md with hook summary Verification: grep "<hook-name>" .claude/hooks/README.md || echo "ERROR: hooks/README.md NOT UPDATED!" WHY: Hooks not documen...
58
12930 dart-doc-validation kevmoo/dash_skills
Dart Doc Validation 1. When to use this skill Use this skill when: Writing or updating documentation comments ( /// ) in Dart code. Checking for broken documentation links, references, or macros. Preparing a package for publishing to pub.dev. 2. Best Practices Validating Documentation Locally Use the dart doc command with a temporary output directory to validate documentation comments without polluting the local project workspace. This command parses all documentation comments and reports warnin...
58
12931 clickhouse-pydantic-config terrylica/cc-skills
ClickHouse Pydantic Config Generate DBeaver database client configurations from Pydantic v2 models using mise [env] as Single Source of Truth (SSoT). Critical Design Principle: Semi-Prescriptive Adaptation This skill is NOT a rigid template. It provides a SSoT pattern that MUST be adapted to each repository's structure and local database situation. Why This Matters Each repository has unique: Directory layouts (.dbeaver/ location may vary) Environment variable naming conventions Existing c...
58
12932 drizzle-orm-d1 secondsky/claude-skills
Drizzle ORM for Cloudflare D1 Status: Production Ready ✅ Last Updated: 2026-01-20 Latest Version: drizzle-orm@0.45.1, drizzle-kit@0.31.8, better-sqlite3@12.5.0 Dependencies: cloudflare-d1, cloudflare-worker-base Quick Start (5 Minutes) 1. Install npm install drizzle-orm npm install -D drizzle-kit 2. Configure drizzle.config.ts import { defineConfig } from 'drizzle-kit'; export default defineConfig({ schema: './src/db/schema.ts', out: './migrations', dialect: 'sqlite', driver: 'd1-ht...
58
12933 brand-monitoring kostja94/marketing-skills
Strategies: Brand Monitoring Guides ongoing brand monitoring—detecting impersonation, trademark infringement, counterfeit products, and brand abuse before they cause harm. Complements brand-protection (reactive: report, takedown); this skill covers proactive monitoring setup and tool selection. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly ...
58
12934 java-python-code-reviewer yennanliu/cs_basics
Use this Skill when: - Reviewing LeetCode problem solutions - Checking code correctness and efficiency - Comparing Java and Python implementations - Providing feedback on algorithm implementations - Optimizing existing solutions Review Framework 1. Correctness Analysis Check for: - Edge cases handling (empty input, null, single element) - Boundary conditions (array indices, loop termination) - Logic errors in algorithm implementation - Test case coverage (basic, edge, corner cases)...
57
12935 swift-concurrency jamesrochabrun/skills
Swift Concurrency Fast Path Before proposing a fix: Analyze Package.swift or .pbxproj to determine Swift language mode, strict concurrency level, default isolation, and upcoming features. Do this always, not only for migration work. Capture the exact diagnostic and offending symbol. Determine the isolation boundary: @MainActor , custom actor, actor instance isolation, or nonisolated . Confirm whether the code is UI-bound or intended to run off the main actor. Project settings that change concurr...
57
12936 presentation maker eddiebe147/claude-settings
Presentation Maker The Presentation Maker skill enables automated creation of professional PowerPoint presentations (.pptx) with custom layouts, themes, charts, images, and multimedia. Using libraries like pptxgenjs , this skill handles everything from simple slide decks to complex presentations with data visualizations and animations. Create pitch decks, training materials, reports, project updates, and any presentation content programmatically. Support for master slides, themes, charts, tables...
57
12937 changelog-generator davepoon/buildwithclaude
Changelog Generator This skill transforms technical git commits into polished, user-friendly changelogs that your customers and users will actually understand and appreciate. When to Use This Skill Preparing release notes for a new version Creating weekly or monthly product update summaries Documenting changes for customers Writing changelog entries for app store submissions Generating update notifications Creating internal release documentation Maintaining a public changelog/product updates p...
57
12938 document-pptx vasilyu1983/ai-agents-public
Document PPTX Skill — Quick Reference This skill enables creation and editing of PowerPoint presentations programmatically. Claude should apply these patterns when users need to generate pitch decks, reports, training materials, or automate presentation workflows. Modern Best Practices (Jan 2026): One slide = one takeaway; design the deck around a decision or audience goal. Cite numbers (definition + timeframe + source) and keep a single source of truth for charts. Accessibility (WCAG 2.1 AA ...
57
12939 youtube-downloader davepoon/buildwithclaude
YouTube Video Downloader Download YouTube videos with full control over quality and format settings. Quick Start The simplest way to download a video: python scripts/download_video.py "https://www.youtube.com/watch?v=VIDEO_ID" This downloads the video in best available quality as MP4 to /mnt/user-data/outputs/. Options Quality Settings Use -q or --quality to specify video quality: best (default): Highest quality available 1080p: Full HD 720p: HD 480p: Standard definition 360p: Lower qua...
57
12940 umbraco-ufm-component umbraco/umbraco-cms-backoffice-skills
Umbraco UFM Component What is it? UFM (Umbraco Flavored Markdown) Components extend Umbraco's markdown rendering with custom syntax. They allow you to create custom markers that transform into HTML when rendered. This is useful for creating dynamic content like localized strings, property values, or custom UI elements within markdown text. UFM components use special syntax markers (like for localization or = for values) that get processed into HTML. Documentation Always fetch the latest docs be...
57
12941 linkedin publisher eddiebe147/claude-settings
LinkedIn Publisher Create professional LinkedIn content and thought leadership posts that build authority When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create linkedin publisher linkedin content Review and optimize review linkedin publisher Get best practic...
57
12942 verification-before-completion secondsky/claude-skills
Verification Before Completion Overview Claiming work is complete without verification is dishonesty, not efficiency. Core principle: Evidence before claims, always. Violating the letter of this rule is violating the spirit of this rule. The Iron Law NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE If you haven't run the verification command in this message, you cannot claim it passes. The Gate Function BEFORE claiming any status or expressing satisfaction: 1. IDENTIFY: What command prov...
57
12943 dojo-token dojoengine/book
Dojo Tokens Implement ERC20/ERC721 tokens in Cairo, deploy them alongside your Dojo world, and configure Torii to index balances, transfers, and metadata. When to Use This Skill "Implement ERC20 token for game currency" "Create NFT items with ERC721" "Deploy an ERC20 token with my world" "Index token balances with Torii" "Query token transfers" "Use Origami for tokens" What This Skill Does Implement ERC20 fungible tokens and ERC721 NFTs in Cairo Deploy token contracts as external contracts via s...
57
12944 public-relations kostja94/marketing-skills
Channels: Public Relations Guides PR and press release strategy. Journalists use ~3% of releases they receive; proper structure is critical. Use this skill when writing press releases, planning product announcements, or building media relations. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for p...
57
12945 sentry-cocoa-sdk getsentry/sentry-agent-skills
All Skills > SDK Setup > Cocoa SDK Sentry Cocoa SDK Opinionated wizard that scans your Apple project and guides you through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to iOS/macOS/tvOS" or "set up Sentry" in an Apple app User wants error monitoring, tracing, profiling, session replay, or logging in Swift/ObjC User mentions sentry-cocoa , SentrySDK , or the Apple/iOS Sentry SDK User wants to monitor crashes, app hangs, watchdog terminations, or performance Note: SDK ve...
57
12946 ios-xcode pproenca/dot-skills
iOS Xcode & Tooling Best Practices Comprehensive guide for Xcode project configuration, SwiftData persistence, testing, debugging, profiling, and app distribution. Contains 19 rules across 6 categories. Clinic Architecture Contract (iOS 26 / Swift 6.2) All guidance in this skill assumes the clinic modular MVVM-C architecture: Feature modules import Domain + DesignSystem only (never Data , never sibling features) App target is the convergence point and owns DependencyContainer , concrete coordina...
57
12947 task-planner s-hiraoku/synapse-a2a
Task Planner This skill helps you turn ambiguous or large requests into a clear, sequenced plan with ownership and verification. Outputs To Produce A short problem statement Assumptions and open questions A step-by-step plan with measurable outcomes Risks and rollback/containment options Test and verification steps Decomposition Technique Split work into thin vertical slices: One slice should be mergeable on its own Each slice should include tests or validation Prefer smallest unit that reduces ...
57
12948 education tutor eddiebe147/claude-settings
Education Tutor Comprehensive educational support system designed for students, parents, teachers, and self-learners across all subjects and skill levels. This skill provides personalized tutoring, concept explanations, study strategies, lesson planning, learning assessments, and educational guidance tailored to individual learning styles and needs. The Education Tutor excels at breaking down complex concepts into understandable components, adapting explanations to different learning styles (vis...
57
12949 moai-lang-rust modu-ai/moai-adk
Quick Reference (30 seconds) Rust 1.92+ Development Specialist with deep patterns for high-performance, memory-safe applications. Auto-Triggers: .rs, Cargo.toml, async/await, Tokio, Axum, SQLx, serde, lifetimes, traits Core Use Cases: High-performance REST APIs and microservices Memory-safe concurrent systems CLI tools and system utilities WebAssembly applications Low-latency networking services Quick Patterns: Axum REST API: Create Router with route macro chaining path and handler. Add wi...
57
12950 nextjs-optimization atman36/ai-vibe-prompts
Next.js 15 Optimization Skill Objective Optimize Next.js applications to achieve: Perfect Core Web Vitals scores (LCP < 2.5s, FID < 100ms, CLS < 0.1) Fast page load times and optimal rendering strategies Efficient data fetching and caching Production-ready build configuration SEO and accessibility excellence When to Use This Skill Auto-invoke when: Project uses Next.js (detected by next in dependencies) User mentions "optimize", "performance", "slow", or "Core Web Vitals" Before production d...
57