Prompt strategy for web development
Let’s apply the different guidelines presented in the former section, and through using these guidelines, we will step by step work ourselves toward a prompt strategy.
Break down the problem: “web system for inventory management”
Let’s use a real example, “inventory management” within web development, to see if we can understand the general problem. To “manage” an inventory, you need to read and write data to it. Most likely, you will have different roles in this system/app, everything from administrators to normal users. You might also need to consider how this system fits in with other systems, should you, for example, integrate it with other systems, what parts it consists of in that case and how.
The domain seems pretty straightforward so let’s move on to understand what parts it consists of.
At a high level, we understand what the system should do. But to solve...