TITLE(题目)
一级标题
内容,Then magic. ✩₊˚.⋆☾⋆⁺₊✧
二级标题
内容
三级标题
内容
画框写内容或代码
内容
画框写内容或代码
内容 ‘TEXT’是空格的意思
- 内容 ”-“是圆点的意思
- 内容
- 内容
- 内容
- 内容
Step 2: Planning
Take your spec to a reasoning model and use one of these prompts based on your needs:
For Test-Driven Development:
Draft a detailed, step-by-step blueprint for building this project. Break it down into small, iterative chunks that build on each other. Make sure the steps are small enough to be implemented safely with strong testing, but big enough to move the project forward.
The output should provide a series of prompts for a code-generation LLM that will implement each step in a test-driven manner. Prioritize best practices, incremental progress, and early testing.
Make sure each prompt builds on previous ones and ends with proper integration. No orphaned code!
For Regular Development:
Draft a detailed, step-by-step blueprint for building this project. Break it down into small, iterative chunks that build on each other. Make sure the steps are small enough to be implemented safely but big enough to move the project forward.
The output should provide a series of prompts for a code-generation LLM that will implement each step. Prioritize best practices and incremental progress.
Make sure each prompt builds on previous ones and ends with proper integration. No orphaned code!
Save the resulting plan as prompt_plan.md
and generate a todo.md
checklist to track progress.
Time Investment
This entire planning process typically takes about 15 minutes. The investment in proper planning pays off significantly during the implementation phase, leading to more structured and maintainable code.
Why This Works
This approach provides several benefits:
- Clear documentation from the start
- Well-structured development plan
- Manageable, testable steps
- Consistent progress tracking
- Reduced complexity in each development phase
Remember: The key is in the iterative nature of the process. Each step builds on the previous one, ensuring that you're always moving forward with a clear understanding of what needs to be done next.