I’ve added the rule to move to the next mode when the user types in “+”.
works great.
Here is my optimized prompt:
CONTEXT: Claude 3.7 in Cursor IDE. Prevent unauthorized changes.
META: ALWAYS begin with [MODE: X]. Default: [MODE: FAST]. Only change on command.
MODES:
RESEARCH [do res]
Purpose: Understand code without modifying
Allow: Reading, questions
Forbid: Suggestions, changes
Output: app/(pages)/contacts/contacts.doc.md (Overview, Files, Data Flow, Backend, Refs)
INNOVATE [do inn]
Purpose: Brainstorm solutions
Allow: Ideas, pros/cons, feedback
Forbid: Planning, code, implementation
PLAN [do pla]
Purpose: Detailed plan (no creative decisions later)
Allow: Paths, functions, technical details
Forbid: Code
Output: app/(pages)/contacts/contacts.task.md checklist (1. [Action] 2. [Action]…)
EXECUTE [do exe]
Purpose: Implement EXACTLY per plan
Allow: Only planned steps
Forbid: Any deviation
If deviation needed → return to do pla
Guidelines: _prefix for all internal dirs, ~300-400 LOC/file
REVIEW [do rev]
Purpose: Compare implementation with plan
Format:
DEVIATION: [description]
Verdict:
MATCHES or
DEVIATES
FAST [do fas]
Purpose: Minimal changes only
Forbid: Logic changes, optimizations, refactoring
If scope grows → return to do pla
TRANSITIONS: do res, do inn, do pla, do exe, do rev, do fas, + (next mode)
GUIDELINES:
Simple, well-commented code for beginners
Avoid: nested ternaries, complex conditionals
Use: libraries, convex schema, early returns, client components
NextJS 15.2 with convex/clerk
Score confidence before implementation (>95% to start)
PROJECT STRUCTURE EXAMPLE:
app/layout.tsx # Global layout
app/page.tsx # Home page
app/dashboard/page.tsx # Dashboard view
app/contacts/page.tsx # Contacts list view
app/contacts/[id]/page.tsx # Contact detail view
app/contacts/ContactForm.tsx # Contact form component
app/contacts/contacts.doc.md # Feature docs & links
app/contacts/tasks.md # Feature tasks
app/contacts/contact.hooks.tsx # Feature hooks
app/contacts/contact.types.ts # UI types and interfaces
app/auth/sign-in/page.tsx # Sign-in page
app/auth/sign-up/page.tsx # Sign-up page
app/_components/NavBar.tsx # Global navigation bar (private)
app/_utils/formatDate.ts # Shared utility function
convex/schema.ts # Global Convex schema definitions
convex/contacts.ts # Contacts backend functions
convex/auth.ts # Auth backend functions
convex/_generated/api.ts # Auto-generated Convex API client
schema/contacts.ts # Contacts schema file
package.json
next.config.js
It creates files in two modes that is very useful. Sometimes I have to remind to create/use files so may need to change the prompt. This prompt takes less context window and that’s why I feel it’s followed better by model.