- Replace ShaderGradientBackground WebGL shader (3 static spheres) with pure CSS radial-gradient divs — moves from ClientProviders (deferred JS) to app/layout.tsx as a server component rendered in initial HTML. Eliminates @shadergradient/react, three, @react-three/fiber from the JS bundle. Removes chunks/7001 (~20s CPU eval) and the 39s main thread block. - Remove optimizeCss/critters: it was converting <link rel="stylesheet"> to a JS-deferred preload, which PageSpeed read as a 410ms sequential CSS chain. Both CSS files now load as parallel <link> tags from initial HTML (~150ms). - Update browserslist safari >= 15 → 15.4 (Array.prototype.at, Object.hasOwn are native in 15.4+; eliminates unnecessary SWC compatibility transforms). - Delete orphaned app/styles/ghostContent.css (never imported anywhere, 3.7KB). - Add .claude/ dev team setup: 5 subagents (frontend-dev, backend-dev, tester, code-reviewer, debugger), 3 skills (/add-section, /review-changes, /check-quality), 3 path-scoped rules, settings.json with auto-lint hook. - Update CLAUDE.md with server/client orchestrator pattern, SSR animation safety rules, API route conventions, and improved command reference. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
993 B
993 B
name, description, context, agent
| name | description | context | agent |
|---|---|---|---|
| review-changes | Run a thorough code review on all recent uncommitted changes using the code-reviewer agent | fork | code-reviewer |
Review all recent changes in this repository.
First gather context:
- Recent changes: !
git diff HEAD - Staged changes: !
git diff --cached - Modified files: !
git status --short - Recent commits: !
git log --oneline -5
Then perform a full code review using the code-reviewer agent checklist:
- SSR safety (no
initial={{ opacity: 0 }}on server elements) - TypeScript strictness (no
any) - API route conventions (
runtime,dynamic,sourcefield) - Design system compliance (liquid-* tokens, contrast ratios)
- i18n completeness (both en.json and de.json)
- Error logging guards
- Graceful fallbacks on all external calls
Output:
- Critical issues (must fix before merge)
- Warnings (should fix)
- Suggestions (nice to have)
Include file:line references and concrete fix examples for each issue.