02 · Article
On this page6 sections
There is a persistent idea that AI makes software development free. My week-one product experiment showed something more ordinary: agent tools change where the cost appears.
I did not keep a complete invoice and usage ledger for that period, so this is not a numerical return-on-investment study. It is a breakdown of the cost categories that became visible while directing agent-assisted work across three local app foundations.
The visible costs
Model usage
Usage varies with context size, task length, model choice, retries, and rework. A repository-wide review has a different cost shape from a bounded copy edit or schema check.
The useful unit is the workflow, not the number of agents named in a dashboard.
Development infrastructure
Local builds still require ordinary software infrastructure:
- development environments
- databases and storage
- build and test runners
- staging configuration
- logs and status artifacts
Deployment adds another set of costs, but the week-one foundations had not reached that stage.
Tooling and coordination
OpenClaw coordinated queued work, but orchestration was itself work. Tasks needed specifications, file boundaries, stopping rules, summaries, and review order.
Automation did not remove coordination. It made coordination part of the system design.
The hidden costs
Monitoring and error handling
Agent output can be incomplete, inconsistent, or confidently wrong. Useful workflows need logs, failed-state handling, and a clear path back to human review.
Testing and validation
Every accepted change still needs checks appropriate to its risk:
- schema and input validation
- type checks and linting
- build verification
- product-flow testing
- source and copy review
Fast output without validation creates deferred work rather than savings.
Operator time
The human work included:
- breaking objectives into bounded tasks
- reviewing diffs and decisions
- resolving conflicts between outputs
- testing the affected workflow
- deciding what not to build
Agent assistance changed the shape of this work; it did not eliminate it.
Context switching
Running work across three products increased mental overhead. Each repository had its own state, open decisions, and validation needs.
Parallel execution only helped when the scopes were independent and the review queue stayed understandable.
The opportunity cost
Time spent extending local builds was time not spent deploying, talking to users, or testing distribution.
At the dated week-one checkpoint, the experiment still had $0 in new recurring revenue and the three app foundations were not deployed. That was a historical experiment state, not a statement about current company revenue.
What could be counted
One build day has a directly bounded repository count: AgentPersonalities, PromptDuels, and TaskBounty recorded 153 commits in total on 4 February 2026.
That number describes activity across those three repositories on that day. It does not establish cost savings, production readiness, or product value.
Cost controls that improve the workflow
- define smaller tasks with explicit file scope
- separate build, review, and content work
- stop runs that reach an unresolved product decision
- record checks and incomplete work in the hand-off
- require human acceptance before deployment
- compare the reviewed output with the model and review effort it required
These controls make costs easier to reason about without pretending that every workflow has the same baseline.
The main lesson
AI does not eliminate cost. It redistributes it from continuous manual implementation toward:
- model and infrastructure usage
- specification and orchestration
- monitoring and failure handling
- human review
- deployment and user validation
Whether that trade is worthwhile depends on the accepted output and the problem being solved. The week-one experiment established the categories, not a universal performance or economics claim.