원클릭으로
new-web-page
Add a new page to the Next.js web app (apps/web). Use when creating a new route/page in the web app.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add a new page to the Next.js web app (apps/web). Use when creating a new route/page in the web app.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement a feature from docs/ROADMAP.md end-to-end: branch, code, test, commit, push, open PR, fix CI. Use when user says "implement feature X from roadmap" or "start with feature X".
Deterministic LLM-first SEO audits for websites, blog posts, and GitHub repositories. Use this when the user asks to "perform SEO analysis", "run SEO audit", "analyze SEO", "check technical SEO", "review schema", "Core Web Vitals", "E-E-A-T", "hreflang", "GEO", "AEO", or GitHub repository SEO optimization. For full/page/repo audits, run bundled scripts for evidence and return prioritized, confidence-labeled fixes.
Use when implementing or reviewing accessibility (a11y) — ARIA attributes, keyboard navigation, focus management, color contrast, screen reader support, semantic HTML, form labels, error handling, or any WCAG compliance task. Trigger on keywords like a11y, accessibility, ARIA, keyboard, focus, screen reader, WCAG, contrast, VoiceOver, NVDA.
Use when implementing or reviewing frontend performance — bundle optimization, lazy loading, image optimization, caching, Core Web Vitals (LCP, FID/INP, CLS), code splitting, rendering strategies, or any speed/performance task. Trigger on keywords like performance, speed, bundle size, lazy load, Web Vitals, LCP, CLS, INP, cache, optimize, lighthouse, Core Web Vitals.
Check existing @arcadeum/ui components before implementing any new UI. Use before writing any component — reuse what exists, add to packages/ui if missing.
Create a git commit following the project's Conventional Commits convention with ARC ticket reference. Use when committing changes.
| name | new-web-page |
| description | Add a new page to the Next.js web app (apps/web). Use when creating a new route/page in the web app. |
The web app uses Next.js App Router with a three-file pattern per page and server-side i18n.
apps/web/src/app/<route>/
page.tsx ← Server Component: fetches translations, exports metadata
<Name>Client.tsx ← 'use client': dynamic import wrapper with loading skeleton
<Name>View.tsx ← actual UI (lazy-loaded via dynamic import in Client file)
Create page.tsx (Server Component):
getTranslations from @/shared/i18n/servermetadata with title: \Page Title - ${appConfig.appName}``const messages = await getTranslations()t prop to the Client componentCreate <Name>Client.tsx ('use client'):
dynamic(() => import('./<Name>View').then(mod => mod.<Name>View), { ssr: false, loading: LoadingSkeleton })LoadingSkeleton using PageLayout, Container, GlassCard, Skeleton, YStack from @/shared/uiCreate <Name>View.tsx:
@arcadeum/ui and @/shared/uit prop for translationsAdd translations to all locale files:
apps/web/src/shared/i18n/messages/pages/en.ts (and by.ts, es.ts, fr.ts, ru.ts)apps/web/src/shared/i18n/messages/pages.tsimport { appConfig } from '@/shared/config/app-config';
import { getTranslations } from '@/shared/i18n/server';
import { PageLayout, Container, GlassCard, Skeleton, YStack } from '@/shared/ui';