Open-source marketplace for AI Agent skills. Features: - Next.js 15 web app with i18n (en/fa) - CLI tool for skill installation (npx skillhub) - GitHub crawler/indexer with multi-strategy discovery - Security scanning for all indexed skills - Self-hostable with Docker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import { createNavigation } from 'next-intl/navigation';
|
|
import { locales, defaultLocale } from '../i18n';
|
|
|
|
export const { Link, redirect, usePathname, useRouter } = createNavigation({
|
|
locales,
|
|
defaultLocale,
|
|
localePrefix: 'as-needed',
|
|
});
|