agentsclimarketplace

Nextjs i18n

Skill fusengine/agents/plugins/nextjs-expert/skills/nextjs-i18n

Redefining development through cognitive automation and collaborative agent systems.

Install
npx -y skills add fusengine/agents --skill nextjs-i18n

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Next.js 16 internationalization with next-intl or DIY. Use when implementing i18n, translations, localization, multilingual, language switch, locale routing, or formatters.

SKILL.md

5.8 KB, as published. Nobody here has run it

Next.js 16 Internationalization

Complete i18n solution with next-intl or DIY dictionary approach.

Agent Workflow (MANDATORY)

Before ANY implementation, use TeamCreate to spawn 3 agents:

  1. fuse-ai-pilot:explore-codebase - Analyze existing i18n setup and message files
  2. fuse-ai-pilot:research-expert - Verify latest next-intl docs via Context7/Exa
  3. mcp__context7__query-docs - Check locale config and patterns

After implementation, run fuse-ai-pilot:sniper for validation.


Overview

When to Use

  • Building multilingual Next.js 16 applications
  • Need locale-based routing with [locale] dynamic segment
  • Implementing language switcher and URL localization
  • Formatting dates, numbers, currencies, and relative times per locale
  • SEO optimization with hreflang tags and localized metadata
  • Supporting right-to-left (RTL) languages

Why next-intl

FeatureBenefit
App Router nativeFull Server Components support
Type-safe messagesTypeScript autocompletion for keys
ICU MessageFormatPluralization, gender, select expressions
Async message loadingLoad translations on-demand per locale
proxy.ts compatibleWorks with Next.js 16 proxy pattern
Rich formattingDates, numbers, lists, relative time

Two Approaches

1. next-intl (Recommended)

Full-featured library with routing, formatting, and type safety. Best for production applications needing comprehensive i18n support.

2. DIY Dictionary

Lightweight approach using dynamic imports for simple translation needs. Good for projects wanting minimal dependencies.


SOLID Architecture

Module Structure

All i18n code organized in modules/cores/i18n/:

  • config/ - Routing configuration, locale definitions
  • interfaces/ - TypeScript types for messages and locales
  • services/ - Request handlers, message loaders
  • messages/ - JSON translation files per locale

File Locations

  • src/modules/cores/i18n/src/config/routing.ts - Locale routing config
  • src/modules/cores/i18n/messages/en.json - English translations
  • src/modules/cores/i18n/messages/fr.json - French translations
  • proxy.ts - Locale detection and redirect logic

Routing Patterns

Locale Segment

All routes prefixed with [locale] dynamic segment:

  • /en/about → English about page
  • /fr/about → French about page
  • / → Redirects to default locale

Navigation Components

Use localized navigation from next-intl for automatic locale handling:

  • Link - Locale-aware anchor links
  • redirect - Server-side locale redirect
  • usePathname - Current path without locale
  • useRouter - Programmatic navigation

Reference Guide

NeedReference
Initial setupinstallation.md, routing-setup.md
Route configrouting-config.md, middleware-proxy.md
Translationstranslations.md, messages-validation.md
Formattingformatting.md
Componentsserver-components.md, client-components.md
Navigationnavigation.md
TypeScripttypescript.md
SEOseo.md
Testingtesting.md
DIY approachdiy-dictionaries.md, diy-locale-detection.md

Message Formatting

ICU MessageFormat

  • Pluralization - {count, plural, one {# item} other {# items}}
  • Select - {gender, select, male {He} female {She} other {They}}
  • Rich text - Support for bold, italic, links in messages

Formatters

  • formatDate - Locale-aware date formatting
  • formatNumber - Currency, percentages, decimals
  • formatList - Conjunction/disjunction lists
  • formatRelativeTime - "2 hours ago", "in 3 days"

Best Practices

  1. Type-safe keys - Use TypeScript for message key autocompletion
  2. Namespace messages - Organize by feature/page for maintainability
  3. Server-first - Load translations on server, avoid client bundles
  4. SEO hreflang - Add alternate links for all locales
  5. RTL support - Use dir attribute for right-to-left languages
  6. Fallback locale - Configure default for missing translations

Error Handling

Special Files

Localized error and loading states require specific handling:

  • [locale]/error.tsx - Localized error boundary
  • [locale]/not-found.tsx - Localized 404 page
  • global-error.tsx - Root error fallback

See error-files.md for complete patterns.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.