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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
20851 adhd-accountability breverdbidder/life-os
ADHD Accountability Skill - Life OS Provides ADHD-aware accountability without judgment. When to Activate Trigger phrases: "I need to do..." "Let me just..." "Oh wait, what about..." "Actually, I should..." Context switches mid-conversation Session ending with open tasks Core Behaviors On New Task Silently track: complexity (1-10), clarity (1-10), estimated time Provide solution Start 30-minute timer mentally On Context Switch Note the switch Ask for closure on previous task Options: DEFER, ABAN...
41
20852 gdcli badlogic/pi-skills
Command-line interface for Google Drive operations. Installation ``` npm install -g @mariozechner/gdcli ``` Setup Google Cloud Console (one-time) - [Create a new project](https://console.cloud.google.com/projectcreate) (or select existing) - [Enable the Google Drive API](https://console.cloud.google.com/apis/api/drive.googleapis.com) - [Set app name](https://console.cloud.google.com/auth/branding) in OAuth branding - [Add test users](https://console.cloud.google.com/auth/audience) (a...
41
20853 endurance-coach shiv19/endurance-coach-skill
Endurance Coach: Endurance Training Plan Skill You are an expert endurance coach specializing in triathlon, marathon, and ultra-endurance events. Your role is to create personalized, progressive training plans that rival those from professional coaches on TrainingPeaks or similar platforms. Progressive Discovery Keep this skill lean. When you need specifics, read the single-source references below and apply them to the current athlete. Prefer linking out instead of duplicating procedures here...
41
20854 azure-storage-file-datalake-py sickn33/antigravity-awesome-skills
Azure Data Lake Storage Gen2 SDK for Python Hierarchical file system for big data analytics workloads. Installation pip install azure-storage-file-datalake azure-identity Environment Variables AZURE_STORAGE_ACCOUNT_URL = https:// < account > .dfs.core.windows.net Authentication from azure . identity import DefaultAzureCredential from azure . storage . filedatalake import DataLakeServiceClient credential = DefaultAzureCredential ( ) account_url = "https://<account>.dfs.core.windows.net" service_c...
41
20855 prediction-arbitrage-scout velcrafting/codex-skills
Read-only scouting tool that identifies potential price discrepancies between Polymarket and Kalshi prediction markets. Purpose Surface candidate markets where pricing diverges across Polymarket and Kalshi. This skill is intended for discovery, research, and prioritization, not automated trading or execution. Non-Goals - No trade execution - No guarantees of profitability - No slippage, depth, or liquidity modeling - No position sizing or risk management Outputs from this skill must be...
41
20856 clean-architect gravito-framework/gravito
Clean Architecture Master You are a discipline-focused architect dedicated to Uncle Bob's Clean Architecture. Your goal is to insulate the "Core Domain" from the "Outer Shell" (Frameworks, UI, DB). 🏢 Directory Structure (Strict Isolation) src/ ├── Domain/ Innermost: Business Logic (Pure TS) │ ├── Entities/ Core business objects │ ├── ValueObjects/ Immutables (Email, Price) │ ├── Interfaces/ Repository/Service contracts │ └── Exceptions/ Domain-specif...
41
20857 todoist-automation davepoon/buildwithclaude
Todoist Automation via Rube MCP Automate Todoist operations including task creation and management, project organization, section management, filtering, and bulk task workflows through Composio's Todoist toolkit. Toolkit docs : composio.dev/toolkits/todoist Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Todoist connection via RUBE_MANAGE_CONNECTIONS with toolkit todoist Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https:/...
41
20858 test-idea-rewriting proffesor-for-testing/agentic-qe
Test Idea Rewriting <default_to_action> When transforming test ideas: DETECT all "Verify X" patterns via regex IDENTIFY appropriate action verb category TRANSFORM to "[ACTION] [trigger]; [OBSERVE] [result]" pattern PRESERVE all metadata (IDs, priorities, automation types) VALIDATE zero "Verify" patterns remain OUTPUT in same format as input Success Criteria: /<td>Verify\s/gi returns 0 matches </default_to_action> Quick Reference Card Transformation Pattern [ACTION VERB] [specific trigger]; [OUTC...
41
20859 assessment borisghidaglia/science-based-lifter
Fitness & Nutrition Assessment This skill conducts evidence-based assessments by deriving questions directly from the source books, not from generic fitness templates. Attribution : All assessment criteria are derived from the domain skill source books. As an Amazon Associate I earn from qualifying purchases. Prerequisites This skill orchestrates four domain skills. Ensure they are installed: npx skills add borisghidaglia/science-based-lifter If individual skills are missing, the assessment may ...
41
20860 azure-keyvault-keys-rust sickn33/antigravity-awesome-skills
Azure Key Vault Keys SDK for Rust Client library for Azure Key Vault Keys — secure storage and management of cryptographic keys. Installation cargo add azure_security_keyvault_keys azure_identity Environment Variables AZURE_KEYVAULT_URL = https:// < vault-name > .vault.azure.net/ Authentication use azure_identity :: DeveloperToolsCredential ; use azure_security_keyvault_keys :: KeyClient ; let credential = DeveloperToolsCredential :: new ( None ) ? ; let client = KeyClient :: new ( "https://<vau...
41
20861 solidjs-solidstart-expert modra40/claude-codex-skills-directory
SolidJS & SolidStart Expert Development Skill Senior/Lead engineer-level guidance for building production-ready applications with fine-grained reactivity. Core Philosophy (KISS, Less is More) 1. Signals are primitive. Don't wrap unnecessarily. 2. Derived values > effects. Let reactivity flow naturally. 3. Components are functions called ONCE. Closures handle updates. 4. SSR first, hydrate smart. SolidStart handles this elegantly. 5. Type everything. TypeScript is non-negotiable. Project Initi...
41
20862 vehicle-design omer-metin/skills-for-antigravity
Vehicle Design Identity Role: Senior Vehicle Designer & Transportation Design Lead Personality: You are a seasoned vehicle designer with 15+ years spanning automotive studios (BMW, Audi Design), AAA game development (Polyphony Digital, Turn 10, DICE), and film/VFX (ILM, Weta Workshop). You think in proportion, stance, and form language simultaneously. You've designed hero vehicles for racing games that players spend hours customizing. You've created military vehicles that feel authentic to ve...
41
20863 drizzle-database blogic-cz/blogic-marketplace
Drizzle Database Patterns Overview Implement database schemas and queries using Drizzle ORM following the project's established patterns for type-safe database access. When to Use This Skill Creating or modifying database tables in packages/db/src/schema.ts Writing complex SQL queries with JOINs Defining table relations Working with database migrations Setting up test databases with PGlite Table Definition Patterns Basic Table with Typed IDs // packages/db/src/schema.ts import { pgTable , text ,...
41
20864 python i9wa4/dotfiles
Python You are an expert in Python development across multiple domains including web development, data science, automation, and machine learning. Universal Principles PEP 8 compliance consistently emphasized Error handling via early returns and guard clauses Async/await for I/O-bound operations Type hints mandatory Modular, functional approaches preferred over classes Code Style Write concise, technical Python with accurate examples Use functional and declarative programming patterns where appro...
41
20865 ads-reporter dengineproblem/agents-monorepo
Ads Reporter Ты - эксперт по формированию отчетов по рекламным кампаниям Facebook/Instagram. Твои задачи Дневные отчеты - today vs yesterday с today-компенсацией Недельные отчеты - агрегированные данные с трендами Multi-period анализ - данные за 5 периодов Health Score - 5-компонентный расчёт в отчётах Сравнение периодов - week-over-week, month-over-month Custom отчеты - по запросу пользователя Получение данных Multi-period сбор (5 периодов) ВАЖНО: Для полного отчёта собирай данные за все период...
41
20866 plan-execute longranger2/claude-gpt-workflow
Plan Execute Skill Purpose When the user runs /plan-execute {plan-file-path} , start the "orchestrated plan execution" workflow: I (Claude Code) ask Codex to implement the code according to the plan. After Codex finishes, I review the generated code. I write the review into the reviews/ directory, then ask Codex to inspect and fix the issues. Repeat until the code quality bar is met. Core principle: I do not write or edit code myself. I only do two things: review code and orchestrate Codex. All ...
41
20867 arc-mastery dylantarre/animation-principles
Arc Mastery The Natural Path Principle Almost all natural movement follows curved paths. Arms swing in arcs. Heads turn on arcs. Thrown objects travel parabolic arcs. When animation moves in straight lines, it immediately feels mechanical and artificial. Arcs are the signature of organic motion. Core Theory Anatomical basis : Bodies are systems of hinges and pivots. When a joint rotates, everything attached to it moves in an arc centered on that joint. Straight lines require mechanical rails—bio...
41
20868 ops-commander gravito-framework/gravito
Ops Commander You are a DevOps engineer specialized in Bun-based deployments. Your goal is to make the journey from dev to prod as smooth as possible. Workflow 1. Environment Analysis Determine the production target (Fly.io, VPS, Docker Swarm). Review bunfig.toml and package.json for deployment compatibility. 2. Implementation Containerization : Optimize the Dockerfile for minimal layer size and maximum speed. Configuration : Set up fly.toml or docker-compose for orchestration. CI/CD : Configure...
41
20869 universal-fallback dylantarre/animation-principles
Universal Animation Principles Disney's 12 animation principles applied generically across any medium or context. Quick Reference Principle Universal Application Squash & Stretch Show impact and flexibility Anticipation Prepare before action Staging Direct attention clearly Straight Ahead / Pose to Pose Continuous vs keyframe approach Follow Through / Overlapping Elements complete at different rates Slow In / Slow Out Ease acceleration/deceleration Arc Natural curved motion paths Secondary Actio...
41
20870 change-request-form dengineproblem/agents-monorepo
Change Request Form Generator Эксперт в разработке форм заявок на изменения для управления проектами. Основные компоненты Уникальный ID : CR-YYYY-XXX Информация о заявителе : Имя, роль, отдел, дата Классификация : Область, расписание, бюджет, качество, ресурсы Приоритет : Критический, Высокий, Средний, Низкий Оценка воздействия : Технические, финансовые, временные последствия Workflow утверждения : Многоуровневая авторизация Категории изменений Изменения области : - Добавление/удаление функций -...
41
20871 whatsapp-automation davepoon/buildwithclaude
WhatsApp Automation Automate WhatsApp Business communications including customer support, notifications, chatbots, and broadcast messaging. Based on n8n's WhatsApp integration templates. Overview This skill covers: WhatsApp Business API setup Automated chatbot flows Order/shipping notifications Customer support automation Broadcast messaging Setup & Configuration WhatsApp Business API setup_requirements : 1. meta_business_account : - Create at business.facebook.com - Verify business 2. whatsapp_...
41
20872 project-scaffolder patricio0312rev/skills
Project Scaffolder Generate production-ready starter repositories with best-practice conventions for any tech stack. Core Workflow Determine stack : Ask user to specify or infer from context (Next.js, Vite, Nest, FastAPI, etc.) Select template : Use references/templates.md to choose the appropriate project structure Generate structure : Create complete folder tree with all necessary files Add baseline code : Include working "hello world" route/page as proof of concept Configure tooling : Add pac...
41
20873 github-webhooks hookdeck/webhook-skills
GitHub Webhooks When to Use This Skill Setting up GitHub webhook handlers Debugging signature verification failures Understanding GitHub event types and payloads Handling push, pull request, or issue events Essential Code (USE THIS) GitHub Signature Verification (JavaScript) const crypto = require ( 'crypto' ) ; function verifyGitHubWebhook ( rawBody , signatureHeader , secret ) { if ( ! signatureHeader || ! secret ) return false ; // GitHub sends: sha256=xxxx const [ algorithm , signature ] = s...
41
20874 tui-testing colonyops/hive
TUI Testing Best Practices Comprehensive testing strategies for Bubbletea v2 applications, based on the hive diff viewer implementation. Testing Strategy Overview Use a layered approach with different test types for different concerns: Unit Tests → Pure logic, state transformations Component Tests → Update/View behavior with synthetic messages Golden File Tests → Visual regression testing of rendered output Integration Tests → End-to-end workflows with teatest Test Organization ...
41
20875 peon-ping-use peonping/peon-ping
peon-ping-use Set which voice pack (character voice) plays for the current chat session. How it works When the user types /peon-ping-use <packname> , a beforeSubmitPrompt hook intercepts the command before it reaches the model and handles it instantly: Validates the requested pack exists Enables agentskill rotation mode in config.json Maps the current session ID to the requested pack in .state.json Returns immediate confirmation (zero tokens used) When the hook blocks the message, Cursor keeps y...
41
20876 modao teachingai/full-stack-skills
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
41
20877 skill-creator openstatushq/openstatus
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...
41
20878 dashboard dengineproblem/agents-monorepo
Dashboard Ты — эксперт по формированию мультиаккаунтных дашбордов. Показываешь статистику по рекламным аккаунтам с иерархией Account → Campaign → AdSet → Ad. Твои задачи Сводка по аккаунтам — общая таблица всех активных аккаунтов Детализация по кампаниям — раскрытие до уровня кампаний Детализация по AdSets — раскрытие до уровня групп объявлений Детализация по Ads — полный дашборд до уровня объявлений WhatsApp метрики — CPQL, Quality Rate для WhatsApp кампаний Custom периоды — любой диапазон дат ...
41
20879 godot-genre-open-world thedivergentai/gd-agentic-skills
Genre: Open World Expert blueprint for open worlds balancing scale, performance, and player engagement. NEVER Do NEVER prioritize size over density — Huge empty maps are boring. Smaller, denser maps beat vast deserts. Density > Size. NEVER save everything — 500MB save files destroy performance. Save only changes (delta compression). Unmodified objects use defaults. NEVER physics at 10km distance — Disable physics processing for chunks >2 units away. Use simple simulation (timers) for distant log...
41
20880 blockchain-basics pluginagentmarketplace/custom-plugin-blockchain
Blockchain Basics Skill Master blockchain fundamentals including consensus mechanisms, cryptographic primitives, and distributed systems architecture. Quick Start Invoke this skill for blockchain fundamentals Skill("blockchain-basics", topic="consensus", depth="intermediate") Topics Covered 1. Consensus Mechanisms Learn how distributed networks achieve agreement: Proof of Work: Mining, hashrate, difficulty adjustment Proof of Stake: Validators, slashing, finality Byzantine Fault Tolerance:...
41
20881 ascii-diagram-boxflow teachingai/full-stack-skills
When to use this skill CRITICAL TRIGGER RULE Use this skill ONLY when the user explicitly mentions the exact skill name: ascii-diagram-boxflow . Trigger phrases include: "ascii-diagram-boxflow" "use ascii-diagram-boxflow" "用 ascii-diagram-boxflow 画 ASCII 流程图/框图" "使用 ascii-diagram-boxflow 生成 box + 箭头连接图" Boundary ASCII output only. Do not output Mermaid/PlantUML. Recommended nodes <= 12; if larger, split into sub-diagrams. Auto-layout is best-effort for linear and simple branching. Complex layout...
41
20882 anticipation-payoff dylantarre/animation-principles
Anticipation & Payoff Think like a comedian setting up a punchline. Every great moment is earned by what came before. The windup is half the pitch. Core Mental Model Before animating any action, ask: What prepares the audience for this? Anticipation isn't just physical preparation—it's a promise. You're telling the audience "something's coming" so they're primed to receive it. The payoff is keeping that promise with interest. The 12 Principles Through Setup-Delivery Anticipation — The prin...
41
20883 pr-description pipecat-ai/pipecat
Update a GitHub pull request description based on the changes in the PR. Arguments /pr-description <PR_NUMBER> [--fixes <ISSUE_NUMBERS>] PR_NUMBER (required): The pull request number to update --fixes (optional): Comma-separated issue numbers that this PR fixes (e.g., --fixes 123,456 ) Examples: /pr-description 3534 /pr-description 3534 --fixes 123 /pr-description 3534 --fixes 123,456,789 Instructions First, gather information about the PR: Use GitHub plugin to get PR details (title, current des...
41
20884 checkly checkly/checkly-cli
Checkly The Checkly CLI provides all the required information via the npx checkly skills command. Use npx checkly skills to list all available actions, and npx checkly skills <action> to access up-to-date information on how to use the Checkly CLI for each action. Progressive Disclosure via npx checkly skills The skill is structured for efficient context usage: Metadata (~80 tokens): Name and description in frontmatter Core Instructions (~1K tokens): Main SKILL.md content with links to reference ...
41
20885 nix-flakes knoopx/pi
Nix Flakes Modern Nix project management with hermeticity and reproducibility through flake.lock. Core Commands Project Management Initialize a new flake in the current directory nix flake init Create a new flake from template nix flake new hello -t templates hello Update flake.lock (updates all inputs) nix flake update Update specific input only nix flake update nixpkgs Lock without updating (create missing entries) nix flake lock Check flake for syntax and common errors nix flake check ...
41
20886 agent-browser exceptionless/exceptionless
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
41
20887 v3 core implementation ruvnet/claude-flow
V3 Core Implementation What This Skill Does Implements the core TypeScript modules for claude-flow v3 following Domain-Driven Design principles, clean architecture patterns, and modern TypeScript best practices with comprehensive test coverage. Quick Start Initialize core implementation Task ( "Core foundation" , "Set up DDD domain structure and base classes" , "core-implementer" ) Domain implementation (parallel) Task ( "Task domain" , "Implement task management domain with entities and servi...
41
20888 erpnext-code-validator openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Code Validator Agent This agent validates ERPNext/Frappe code against established patterns, common pitfalls, and version compatibility requirements. Purpose : Catch errors BEFORE deployment, not after When to Use This Agent ┌─────────────────────────────────────────────────────────────────────┐ │ CODE VALIDATION TRIGGERS │ ├─────────────────────────────────────────────────────────────────────┤ │ ...
41
20889 kiro-skill feiskyer/codex-settings
Kiro: Spec-Driven Development Workflow An interactive workflow that transforms ideas into comprehensive feature specifications, design documents, and actionable implementation plans. Quick Start When you mention creating a feature spec, design document, or implementation plan, this skill helps guide you through: Requirements → Define what needs to be built (EARS format with user stories) Design → Determine how to build it (architecture, components, data models) Tasks → Create actionable impl...
41
20890 agentbox-twitter cascade-protocol/agentbox
Twitter Research Paid Twitter/X data API at https://twitter.x402.agentbox.fyi . Costs $0.003 USDC per call via x402 on Solana or Base. Use the x_payment tool for all requests. Endpoints Search Tweets Find tweets matching a query with 50+ advanced operators. x_payment({ "url": "https://twitter.x402.agentbox.fyi/search", "method": "GET", "params": "{\"q\": \"from:elonmusk AI\", \"type\": \"Latest\", \"limit\": 20}" }) Parameters: Param Type Default Description q string required Search query with o...
41
20891 slidev-transitions yoanbernabeu/slidev-skills
Slide Transitions in Slidev This skill covers adding smooth transitions between slides in Slidev, including built-in transitions, custom animations, and directional transitions. When to Use This Skill Adding polish to presentations Creating smooth navigation experiences Emphasizing slide changes Matching presentation themes Creating unique visual effects Setting Transitions Global Transition (Frontmatter) --- transition : slide - left --- Applied to all slides in the presentation. Per-Slide Tran...
41
20892 tuzi-danger-x-to-markdown tuziapi/tuzi-skills
X to Markdown Converts X content to markdown: Tweets/threads → Markdown with YAML front matter X Articles → Full content extraction Script Directory Scripts located in scripts/ subdirectory. Path Resolution : SKILL_DIR = this SKILL.md's directory Script path = ${SKILL_DIR}/scripts/main.ts Consent Requirement Before any conversion , check and obtain consent. Consent Flow Step 1 : Check consent file macOS cat ~/Library/Application \ Support/tuzi-skills/x-to-markdown/consent.json Linux cat ~/.loc...
41
20893 github-hunter breverdbidder/life-os
GitHub Hunter Skill Automatically discovers GitHub repositories relevant to BidDeed.AI and Life OS, scores them 0-100 based on criteria, and archives them to Supabase with integration recommendations. Workflow 1. Discovery Phase Search GitHub for repositories using relevant keywords extracted from: User requests ("find repos for X") Video transcripts (projects mentioned in content) Technology domains (foreclosure data, ADHD productivity, etc.) 2. Scoring Phase (0-100) Score each repository on: S...
41
20894 rust-engineer sammcj/agentic-coding
Rust Engineer Senior Rust engineer with deep expertise in Rust 2021 edition, systems programming, memory safety, and zero-cost abstractions. Specializes in building reliable, high-performance software leveraging Rust's ownership system. Role Definition You are a senior Rust engineer with 10+ years of systems programming experience. You specialize in Rust's ownership model, async programming with tokio, trait-based design, and performance optimization. You build memory-safe, concurrent systems...
41
20895 frontend-design breverdbidder/life-os
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
41
20896 emoji-sticker-generation eachlabs/skills
Emoji & Sticker Generation Generate custom emoji and sticker packs using each::sense. This skill creates personalized emoji from photos, animated stickers, expression packs, and platform-optimized emoji sets for messaging apps and team collaboration tools. Features Photo to Emoji : Transform photos into cartoon-style emoji Expression Packs : Generate emotion sets from a single reference Animated Stickers : Create moving emoji and GIF stickers Platform Optimization : Sized for Slack, Discord, Wha...
41
20897 e2e-test-builder patricio0312rev/skills
E2E Test Builder Build reliable end-to-end tests for critical user flows. Playwright Test Setup // playwright.config.ts import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "./e2e", fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: "html", use: { baseURL: "http://localhost:3000", trace: "on-first-retry", screenshot: "only-on-failure", }, project...
41
20898 excalidraw-diagrams sammcj/agentic-coding
Excalidraw Diagram Generator This skill generates Excalidraw diagrams programmatically using Python. Instead of creating ASCII diagrams, use this to produce professional-looking, editable diagrams. Output format: .excalidraw JSON files that can be: Opened at https://excalidraw.com (drag & drop the file) Edited in VS Code with the Excalidraw extension Embedded in documentation Exported to SVG/PNG for embedding in Google Docs, presentations, etc. Quick Start Method 1: Direct Python Script (Reco...
41
20899 schemantic genkit-ai/genkit-dart
Schemantic Schemantic is a general-purpose Dart library used for defining strongly typed data classes that automatically bind to reusable runtime JSON schemas. It is standard for the genkit-dart framework but works independently as well. Core Concepts Always use schemantic when strongly typed JSON parsing or programmatic schema validation is required. Annotate your abstract classes with @Schema() . Use the $ prefix for abstract schema class names (e.g., abstract class $User ). Always run dart ru...
41
20900 tanstack-query-setup patricio0312rev/skills
TanStack Query Setup Manage server state with powerful caching, background updates, and optimistic UI. Core Workflow Install and configure: Set up QueryClient Create queries: Define data fetching hooks Add mutations: Handle data modifications Enable caching: Configure stale times Implement optimistic updates: Instant UI feedback Add infinite queries: Pagination and infinite scroll Installation npm install @tanstack/react-query @tanstack/react-query-devtools Provider Setup Next.js App Router /...
41