AI made me faster at building, but I had to change what “progress” meant
AI has made some parts of building dramatically faster for me.

A feature that used to take a long session can sometimes become a much shorter implementation task.
At first, I treated that as straightforward productivity.
More shipped = more progress.
Then I noticed something.
The faster I could generate changes, the more time I needed to spend deciding:
Is this actually the right change?
Did the agent touch anything unrelated?
Does this fit the existing workflow?
What assumptions did it make?
What needs to be tested?
Is this worth keeping?
So I started separating creation time from decision time.
Before:
Build → Build → Build → Review later
Now I try to work more like:
Decide → Build → Check → Learn → Decide again
It feels slightly slower in the moment.
But I think it gives me a better definition of progress.
A line of code being generated isn't progress by itself.
A feature being shipped isn't necessarily progress either.
Reducing uncertainty, solving a real problem, or learning something important is progress.
AI makes creation cheaper.
That makes choosing what deserves your attention even more important.
For people building with AI:
Have you changed how you measure progress since AI made building faster?
Replies
I found that faster implementation can create more unfinished decisions. My approach is to keep a small decision log so each build has a clear reason behind it.
@alheri_murya One thing I’ve started watching is how much rework a feature creates. If faster implementation leads to more fixing later, the initial speed doesn’t really feel like progress to me
There’s definitely a trap here: faster building can create a false sense of momentum . You can end the day with 20 changes and still have no clearer idea whether the product is better.
I like the definition of progress here . S hipping is an activity. Learning ,reducing uncertainty, and solving the right problem are outcomes. AI makes it easier to confuse the two.
Thank you for this post @evolvix_ai I’ve started treating rework as a better progress signal than output. If AI helps me ship five things but two get reverted and another creates more cleanup, the speed was mostly noise.
Have you started tracking how much AI-generated work survives unchanged after a week?