How to install nuqs
npx skills add https://github.com/pproenca/dot-skills --skill nuqsFull instructions (SKILL.md)
Source of truth, from pproenca/dot-skills.
name: nuqs description: nuqs (type-safe URL query state) best practices for Next.js and other React frameworks. This skill should be used when writing, reviewing, or refactoring code that uses nuqs for URL state management. Triggers on tasks involving useQueryState, useQueryStates, search params, URL state, query parameters, nuqs parsers, limitUrlUpdates, Standard Schema, NuqsAdapter, or Next.js routing with state.
Community nuqs Best Practices for Next.js & React
Comprehensive guide for type-safe URL query state management with nuqs across Next.js, React Router, TanStack Router, Remix, and plain React. Covers nuqs v2.5–v2.8 features. Contains 46 rules across 8 categories, prioritized by impact to guide code generation, refactoring, and code review.
When to Apply
Reference these guidelines when:
- Implementing URL-based state with nuqs
- Setting up nuqs in a Next.js or React Router project
- Configuring parsers for URL parameters
- Integrating URL state with Server Components
- Optimizing URL update performance (
limitUrlUpdates, key isolation) - Sharing parser definitions with tRPC / TanStack Router / forms via Standard Schema
- Debugging nuqs-related issues
Rule Categories by Priority
| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | Parser Configuration | CRITICAL | parser- |
| 2 | Adapter & Setup | CRITICAL | setup- |
| 3 | State Management | HIGH | state- |
| 4 | Server Integration | HIGH | server- |
| 5 | Performance Optimization | MEDIUM | perf- |
| 6 | History & Navigation | MEDIUM | history- |
| 7 | Debugging & Testing | LOW-MEDIUM | debug- |
| 8 | Advanced Patterns | LOW | advanced- |
Quick Reference
1. Parser Configuration (CRITICAL)
parser-use-typed-parsers— Use typed parsers for non-string valuesparser-with-default— Use withDefault for non-nullable stateparser-enum-validation— Use enum parsers for constrained valuesparser-array-format— Choose correct array parser formatparser-json-validation— Validate JSON parser inputparser-date-format— Select appropriate date parserparser-index-offset— Use parseAsIndex for 1-based URL displayparser-hex-colors— Use parseAsHex for color values
2. Adapter & Setup (CRITICAL)
setup-nuqs-adapter— Wrap app with NuqsAdaptersetup-use-client— Add 'use client' directive for hookssetup-import-server— Import server utilities from nuqs/serversetup-nextjs-version— Ensure compatible Next.js versionsetup-shared-parsers— Define shared parsers in dedicated filesetup-default-options— Configure app-wide defaults on NuqsAdapter (v2.5+)
3. State Management (HIGH)
state-use-query-states— Use useQueryStates for related parametersstate-functional-updates— Use functional updates for derived statestate-clear-with-null— Clear URL parameters with nullstate-controlled-inputs— Handle controlled input value properlystate-avoid-derived— Avoid derived state from URL parametersstate-options-inheritance— Use withOptions for parser-level configurationstate-setter-return— Use setter return value for URL accessstate-standard-schema— Use Standard Schema for cross-library validation (v2.5+)
4. Server Integration (HIGH)
server-search-params-cache— Use createSearchParamsCache (or createLoader) for Server Componentsserver-shallow-false— Use shallow:false to trigger server re-rendersserver-use-transition— Integrate useTransition for loading statesserver-parse-before-get— Call parse() before get() in Server Componentsserver-share-parsers— Share parsers between client and serverserver-next15-async— Handle async searchParams in Next.js 15+
5. Performance Optimization (MEDIUM)
perf-throttle-updates— Throttle rapid URL updates withlimitUrlUpdatesperf-debounce-search— Debounce search input with built-inlimitUrlUpdatesperf-clear-on-default— Use clearOnDefault for clean URLsperf-avoid-rerender— Memoize components using URL state (Next.js)perf-key-isolation— Rely on key isolation outside Next.js (v2.5+)perf-serialize-utility— Use createSerializer for link URLs
6. History & Navigation (MEDIUM)
history-push-navigation— Use history:push for navigation-like statehistory-replace-ephemeral— Use history:replace for ephemeral statehistory-scroll-behavior— Control scroll behavior on URL changeshistory-back-sync— Handle browser back/forward navigation
7. Debugging & Testing (LOW-MEDIUM)
debug-enable-logging— Enable debug logging for troubleshootingdebug-common-errors— Diagnose common nuqs errorsdebug-testing— Test components with URL state
8. Advanced Patterns (LOW)
advanced-custom-parsers— Create custom parsers for complex typesadvanced-url-keys— Use urlKeys for shorter URLsadvanced-eq-function— Implement eq function for object parsersadvanced-framework-adapters— Use framework-specific adaptersadvanced-process-url-search-params— Canonicalize URL shape withprocessUrlSearchParams(v2.6+)
How to Use
Read individual reference files for detailed explanations and code examples:
- Section definitions — Category structure and impact levels
- Rule template — Template for adding new rules
Reference Files
| File | Description |
|---|---|
| AGENTS.md | Complete compiled guide with all rules |
| references/_sections.md | Category definitions and ordering |
| assets/templates/_template.md | Template for new rules |
| metadata.json | Version and reference information |
Related skills
More from pproenca/dot-skills and the wider catalog.
zod
Zod schema validation best practices for type safety, parsing, and error handling. This skill should be used when defining z.object schemas, using z.string validations, safeParse, or z.infer. This skill does NOT cover React Hook Form integration patterns (use react-hook-form skill) or OpenAPI client generation (use orval skill).
emilkowal-animations
Emil Kowalski's animation best practices for web interfaces. Use when writing, reviewing, or implementing animations in React, CSS, or Framer Motion. Triggers on tasks involving transitions, easing, gestures, toasts, drawers, or motion.
clean-architecture
Clean Architecture principles and best practices from Robert C. Martin's book. This skill should be used when designing software systems, reviewing code structure, or refactoring applications to achieve better separation of concerns. Triggers on tasks involving layers, boundaries, dependency direction, entities, use cases, or system architecture.
react-hook-form
React Hook Form performance optimization for client-side form validation using useForm, useWatch, useController, useFieldArray, and the v7.55+ subscribe() API. This skill should be used when building client-side controlled forms with React Hook Form library. This skill does NOT cover React 19 Server Actions, useActionState, or server-side form handling (use react-19 skill for those).
vitest
Vitest testing framework patterns for test setup, async testing, mocking with vi.*, snapshots, and test performance (formerly test-vitest). This skill should be used when writing or debugging Vitest tests. This skill does NOT cover TDD methodology (use test-tdd skill), API mocking with MSW (use test-msw skill), or Jest-specific APIs.
code-simplifier
Code simplification skill for improving clarity, consistency, and maintainability while preserving exact behavior. Use when simplifying code, reducing complexity, cleaning up recent changes, applying refactoring patterns, or improving readability. Triggers on tasks involving code cleanup, simplification, refactoring, or readability improvements.