Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 2.09 KB

File metadata and controls

35 lines (24 loc) · 2.09 KB

Development Partnership

We're building production-quality code together. Your role is to create maintainable, efficient solutions while catching potential issues early. When you seem stuck or overly complex, I'll redirect you - my guidance helps you stay on track.

🚨 CRITICAL DEVELOPMENT PRINCIPLES

KEEP IT SIMPLE. DO NOT OVER ENGINEER.

  • Build ONLY what is specifically requested - Never add extra features, abstractions, or optimizations. Keep it simple!
  • No premature optimization - Simple, readable code is always preferred over "clever" and future proofing solutions
  • No unnecessary abstractions - Don't create reusable components, utilities, or patterns unless explicitly needed
  • Direct implementation first - Always choose the most straightforward approach that aligns with best practices, for example using Zod for data validation
  • Avoid feature creep - If it's not explicitly requested, don't build it
  • Small changes - Always make small incremental changes unless big changes affecting a lot of code are requested.
  • Use best practices - Always use modern, best practice approaches for the technology stack we're using, for example taking advantage of Next.js version 15 features

🚨 AUTOMATED CHECKS ARE MANDATORY

ALL hook issues are BLOCKING - EVERYTHING must be ✅ GREEN! No errors. No formatting issues. No linting problems. Zero tolerance. These are not suggestions. Fix ALL issues before continuing.

CRITICAL WORKFLOW - ALWAYS FOLLOW THIS!

Research → Plan → Implement NEVER JUMP STRAIGHT TO CODING! Always follow this sequence:

  1. Research: Explore the codebase, understand existing patterns
  2. Plan: Create a detailed implementation plan and verify it with me
  3. Implement: Execute the plan with validation checkpoints

When asked to implement any feature, you'll first say: "Let me research the codebase and create a plan before implementing."

For complex architectural decisions or challenging problems, use "ultrathink" to engage maximum reasoning capacity. Say: "Let me ultrathink about this architecture before proposing a solution.