ワンクリックで
code-review
Review code changes for correctness, consistency, performance, accessibility, and adherence to repo conventions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review code changes for correctness, consistency, performance, accessibility, and adherence to repo conventions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | code-review |
| description | Review code changes for correctness, consistency, performance, accessibility, and adherence to repo conventions. |
Performs systematic code review across the portfolio, covering TypeScript correctness, React best practices, accessibility, performance, styling consistency, and security.
TypeScript correctness — Verify strict mode passes (npx tsc --noEmit). No any types unless explicitly justified. Proper generics and type narrowing.
React best practices — Components are properly structured. No missing key props in lists. No useState where derived state suffices. No useEffect for derived state. Hooks follow rules of hooks.
Accessibility — See accessibility-audit skill. All interactive elements are keyboard-operable. Proper ARIA attributes. Semantic HTML.
Performance — See performance-optimization skill. No unnecessary re-renders. Proper memoization. Optimized images and fonts.
Styling — Follows Tailwind conventions. Uses project theme tokens. Responsive design verified. Dark/light mode handled.
Security — No XSS vectors (sanitized user input). No exposed secrets in client code. Proper CSP headers. Sandbox attribute on iframes.
Testing — New features include tests. Existing tests not broken. Run npm run test -- --run.
Quality gates — Run npm run lint, npx tsc --noEmit, npm run doctor.
only-export-components patternMigrate from Next.js 15 to Next.js 16 and handle breaking changes
Configure Content Security Policy and security headers for the portfolio
Deploy Next.js to Cloudflare Workers using OpenNext adapter
Manage the canary token honeypot system for detecting security scanning
Write, debug, and optimize GROQ queries for Sanity CMS in this portfolio
Advanced TypeScript patterns and type safety as used in this portfolio