You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 11, 2025. It is now read-only.
As a test case, let's build towards a concrete product via AI:
Create a VideoHunt product which allows people to post video urls and upvote them.
Functionality for VideoHunt:
Post a url.
Show a list with all the videos.
Click a video to watch it.
Upvote a video.
Super basic crud type app. Doesn’t need user log in.
Prompts that should accomplish this:
Create a form that saves a video to our database
Create a table that displays all the videos
When someone clicks on an item in the table it should go to a new page where the user can watch a video. (Maybe we break this down into two prompts for the ai. 1. Add a link to table. 2. Create page. In a later version, ai could also break down tasks itself)
Add an upvote button to the video table that upvotes a video.
A later step could be for the AI to generate the 4 prompts from a single prompt itself. But let's get the basics working first.