Choosing Your First AI Project: A Framework That Works
Find a first AI project worth building by starting with the decisions you make on repeat, scoring them honestly, and shipping a two-week pilot.
Most people pick their first AI project the wrong way. They start with a shiny model or a trending library, then hunt for a problem it might solve. That is backwards. A good first project starts with a task you perform repeatedly, where a wrong answer costs little and a faster answer saves real time. This framework helps you find that task, score it honestly, and ship something small enough to finish in a couple of weeks.
List the decisions you make on repeat
If you work in content, the candidates are obvious: turning rough notes into a first draft, rewriting headlines, or summarizing a stack of reports. If you write code, look at boilerplate, test generation, and the queries you paste into documentation. The common thread is that each candidate is a decision you make often enough that saving ten minutes matters. Write down five to ten of these tasks before you evaluate anything, and resist the urge to pick a project before the list exists.
Score each candidate on four criteria
Rate every candidate from one to five on four questions, then sum the scores. Frequency: how often do you hit this task each week? Verifiability: can you tell at a glance whether the output is correct? Automation potential: does the task follow a pattern, or does it change every time? Data access: do you already have the examples the model needs to learn from? Projects that score highly on all four are rare, and that is the point. A high average hides weakness, so discard anything that fails on verifiability no matter how impressive it sounds.
- Frequency: aim for a task you do at least a few times per week.
- Verifiability: pick outputs you can check in seconds, like summaries or classifications.
- Automation potential: structured and repetitive beats open-ended and creative.
- Data access: favor tasks where past examples are already sitting in your files.
- Honesty: score before you build, not after you fall in love with an idea.
Scope it to a two-week pilot
Once you have a winner, shrink it until it could plausibly ship in ten working days. A document classifier for your inbox is a pilot; an enterprise-wide knowledge assistant is a program. Set a single acceptance test up front, such as accurate extraction from eighty percent of the sample files, and time-box the rest. If you can describe the pilot in one sentence and the failure mode in another, the scope is right. Any AI feature that needs a budget meeting before its first demo is not a first project.
Choose tools you can actually debug
Resist the temptation to assemble an agent stack on day one. For a first project, prefer the least glamorous option you understand end to end. A Python script that calls a hosted model through its API, with plain logging and a simple prompt, beats a framework pipeline you cannot step through. Use structured outputs and unit tests on the parsing layer, because most failures in small projects live in glue code, not in the model. Measure before you optimize: log inputs, outputs, and latency from the first run so you know whether the model or your wrapper is the bottleneck.
- Start with a hosted API; move to local models only when cost or privacy demands it.
- Log every prompt and response from day one so regressions are visible.
- Treat prompt changes like code changes: review them and keep them in version control.
Key takeaways
- Pick a task you do repeatedly with outputs you can verify in seconds.
- Score candidates on frequency, verifiability, automation potential, and data access.
- Scope the pilot to two weeks and time-box everything else.
- Start boring: a plain Python script with logs beats a clever agent framework.
Written by
Alex Morgan
Alex has spent a decade building software and five years writing about it. At AIComets they focus on prompt engineering, AI agents and honest product testing.
More articles by Alex Morgan →