ワンクリックで
migration-status
Show migration progress by comparing legacy quotevote-monorepo against current quotevote-next implementation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Show migration progress by comparing legacy quotevote-monorepo against current quotevote-next implementation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Migrate a legacy frontend React component from quotevote-monorepo to quotevote-next Next.js 16 TypeScript frontend
Migrate a legacy backend GraphQL resolver from quotevote-monorepo to quotevote-next TypeScript backend
| name | migration-status |
| description | Show migration progress by comparing legacy quotevote-monorepo against current quotevote-next implementation |
Generate a gap analysis comparing the legacy codebase against the current quotevote-next implementation.
Read both reference docs:
.claude/skills/migrate-resolver/legacy-server-reference.md — all backend resolvers, models, services.claude/skills/migrate-component/legacy-client-reference.md — all frontend components, state, operationsquotevote-backend/app/)app/data/resolvers/ — what resolvers are implemented?app/data/models/ — what models exist?app/server.ts — what REST endpoints and GraphQL setup exists?app/types/ — what types are defined?quotevote-frontend/src/)src/components/ and src/app/components/src/app/ — which are real vs stubs (look for TODO/placeholder text)src/graphql/ — what operations are defined?src/store/ — what state slices exist?src/hooks/ — what hooks exist?src/__tests__/ — what test coverage exists?Run: gh issue list --repo QuoteVote/quotevote-next --state open --limit 100 --json number,title,state,labels
Map issues to migration phases and show which are Ready vs Not Ready.
Output a structured report with these sections:
| Resolver | Legacy | New Backend | Status | Show every resolver from the legacy reference and whether it exists in the new backend.
| Model | Legacy | New Backend | Status | Show every model from legacy and whether it's been recreated.
| Component | Legacy | New Frontend | Status | Show key components and whether they're implemented, stubbed, or missing.
| Route | Legacy | New Frontend | Status | Show every route and whether the page is real or a stub.
| Operation | Legacy Client | New Client | New Backend | Status | Show which operations exist on both sides.
Based on the gaps, suggest the highest-impact items to migrate next, considering dependencies (e.g., backend resolvers needed before frontend components can work).