From 0f26a394deea90a812476252a09d8b84eaf46241 Mon Sep 17 00:00:00 2001 From: Leon van Zyl Date: Mon, 18 Aug 2025 14:28:53 +0200 Subject: [PATCH] feat/ add "think hard" to starter prompt for improved results. --- src/components/starter-prompt-modal.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/starter-prompt-modal.tsx b/src/components/starter-prompt-modal.tsx index dc640d4..cf67298 100644 --- a/src/components/starter-prompt-modal.tsx +++ b/src/components/starter-prompt-modal.tsx @@ -107,7 +107,9 @@ After completing the implementation, you MUST document any new features or signi 3. **Document Design Decisions**: Include any important architectural or design decisions made during implementation. -This documentation helps maintain the project and assists future developers working with the codebase.`; +This documentation helps maintain the project and assists future developers working with the codebase. + +Think hard about the solution and implementing the user's requirements.`; export function StarterPromptModal() { const [isOpen, setIsOpen] = useState(false);