Role: Lead Creative Technologist & Motion Designer (specializing in 3D-for-web and interactive story...
Role: You are an expert Senior Frontend Engineer and UI/UX Designer specializing in high-end, dark-t...
Build a modern, premium agency landing page with the following specifications: ## Overall Theme & S...
Create a clean, conversion-focused startup landing page inspired by Y Combinator portfolio companies...
Create a premium product launch landing page inspired by Apple's product pages. Visual Design: - La...
Create a futuristic AI product landing page with dynamic gradient mesh backgrounds. Visual Identity...
Create a comprehensive analytics dashboard with real-time data visualization. Layout Structure: - C...
Build a full-featured admin dashboard for SaaS applications. Core Modules: 1. Overview: Revenue met...
Create a beautiful personal finance tracking dashboard. Features: 1. Account Overview: Total balanc...
Build a project management dashboard inspired by Notion and Linear. Views: 1. Board View: Kanban wi...
Create a stunning animated pricing table component. Design Requirements: - Three-tier layout (Basic...
Build a polished drag-and-drop file upload component. Features: - Drag and drop zone with visual fe...
Create a Spotlight/Linear-style command palette. Functionality: - Global keyboard shortcut (CMD/CTR...
Build a complete toast notification system. Toast Types: - Success (green checkmark) - Error (red X...
Create a high-converting product detail page for e-commerce. Above the Fold: - Image gallery with z...
Build a delightful shopping cart experience. Cart Drawer: - Slide-in drawer from right - Product li...
Create a conversion-optimized checkout flow. Steps: 1. Information: Email, shipping address form 2....
Build a product catalog with advanced filtering. Layout: - Filter sidebar (collapsible on mobile) -...
Create a unique developer portfolio with terminal/code aesthetics. Design Concept: - Dark theme wit...
Create a clean, minimal portfolio for designers. Design Philosophy: - Maximum whitespace - Typograp...
Build an immersive 3D portfolio experience. 3D Elements: - Three.js or React Three Fiber - 3D room ...
Role: Lead Creative Developer & WebGL Artist (Awwwards Jury Member level). Goal: Build a portfolio ...
Create a complete set of authentication pages. Pages Required: 1. Sign In: Email/password, social l...
Create a stunning glassmorphic login experience. Visual Design: - Gradient mesh animated background...
Create an engaging multi-step onboarding experience. Steps: 1. Welcome: Personalized greeting, valu...
Implement beautiful page transitions in Next.js. Transition Types: 1. Fade: Simple opacity transiti...
Create scroll-triggered animations library. Animation Types: 1. Fade In: Opacity 0 to 1 on scroll i...
Create a library of micro-interactions for UI polish. Button Interactions: - Ripple effect on click...
Build a modern real-time chat application. Features: 1. Direct Messages: One-on-one conversations 2...
Create a feature-rich todo application beyond the basics. Core Features: - Create, edit, delete tod...
Build a block-based note-taking application. Block Types: - Text (paragraph, headings H1-H3) - List...
Create a visually stunning weather application. Weather Data: - Current conditions (temp, feels lik...
You are a senior React engineer. Refactor the provided React/Next.js codebase to follow strict useEf...
You are a senior frontend engineer acting as a repo-wide refactor agent. Objective: Find, evaluate,...
You are a senior frontend performance engineer. Objective: Identify and fix tree-shaking and bundle...
Scan the repository for client components that import server-only modules, heavy utilities, or secre...
Find props and state patterns that cause unnecessary re-renders. Detect: - Inline object/array prop...
Scan the repository for duplicated fetch logic, over-fetching, and missing deduplication. Refactor:...
Find render-time non-determinism such as Date.now(), Math.random(), browser-only APIs, or locale-dep...
Scan for unused CSS, overly broad global styles, large Tailwind safelists, and unnecessary font file...
Detect libraries or APIs that trigger heavy polyfills or ES5 transpilation. Refactor: - Replace wit...
Scan the repository for unused exports, files, hooks, and feature-flagged code paths that are always...
Find console logs, debug flags, and dev-only logic shipped to production paths. Refactor: - Remove ...
Scan the repository for code whose correctness depends on undocumented assumptions, implicit default...
Identify functions, hooks, or utilities whose behavior is surprising or non-obvious. Look for: - Fu...
Scan for code paths where a single request can trigger linear or unbounded database queries, API cal...
Find loops, polling mechanisms, retries, or recursive logic without hard limits, backoff, or cancell...
Find code that assumes caching exists but does not enforce it. Examples: - Fetches without cache he...
Find places where partial failures are silently ignored. Look for: - Promise.all without per-item h...
Find places where errors are flattened, rethrown generically, or logged without context. Examples: ...
Scan tests that would pass even if the underlying logic were incorrect. Look for: - Snapshots asser...
Identify code that is difficult or impossible to test due to tight coupling, hidden globals, or side...
Find imports or dependencies that violate intended architectural layers. Examples: - UI importing d...
Identify code that represents one-way architectural decisions. Examples: - Hardcoded vendors - Tigh...
Scan for code that may behave incorrectly under concurrent execution. Look for: - Read-modify-write...
Find async code that assumes execution order without enforcing it. Output: - List ordering assumpti...
Find places where untrusted input crosses trust boundaries without validation. Examples: - Client t...
Find places where secrets, tokens, or credentials could leak into logs, client bundles, or errors. ...
Find code that behaves differently between dev, preview, and production. Examples: - process.env br...
Find sources of non-determinism in build or generation steps. Output: - Identify causes - Recommend...
Review this repository as if you are on call for it for the next 12 months. Question: What would wa...