Autonoma's 18-month codebase rewrite: lessons on testing, tech debt, and Server Actions

Why a successful product needed a complete rewrite
Autonoma, a company that pivoted multiple times (enterprise search, documentation generation, coding agent, QA testing platform), developed a product for over 1.5 years, closed clients, raised funding from a major industry player, and hired a team of 14. Despite this traction, they decided to throw away their entire codebase and start over.
The no-tests era and its consequences
Initially, the team used a TypeScript monorepo with no strict mode and no tests. This worked with 2 engineers who owned large portions of the codebase, but became disastrous after hiring. The codebase developed null issues, undefined behavior, and bad error handling, leading to bugs appearing "out of the blue" and even losing a client. The founder initially prohibited tests to maintain a culture of shipping fast, but later realized this affected product quality and productivity.
Technical decisions driving the rewrite
The original product was built during the GPT-4 era (not 4o) when models required extensive guardrails. They built sophisticated Playwright and Appium wrappers with complex inspections and 7 clicking strategies that would self-heal on the fly. With model advancements, this sophisticated inspection is no longer necessary, making the legacy codebase with tech debt less valuable.
Dropping Next.js and Server Actions
The team is moving away from Next.js and Server Actions, citing several issues:
- Server Actions are async, requiring useEffect blocks or manual state handling in React
- They're hard to test - testing requires creating Prisma objects with in-memory databases or mocking
- No dependency injection capability
- They execute sequentially globally, creating a "manufactured Python Global Interpreter Lock but in TypeScript"
The new implementation starts with tests from the ground up and uses the most strict TypeScript mode.
📖 Read the full source: HN AI Agents
👀 See Also

Memory Now 63% of AI Chip Cost: HBM Spend Hits $32B
Epoch AI data shows HBM memory’s share of AI chip component costs rose from 52% to 63% between Q1 2024 and Q4 2025. Total component spend grew from $22B to $52B, with HBM accounting for $20B of that increase.

Setting Up Subagents in OpenClaw: Key Considerations
Users experimenting with OpenClaw are facing issues with setting up subagents, particularly when modifying JSON files.

Claude Code v2.1.170: Claude Fable 5 Model Access and VS Code Session Fix
Claude Code v2.1.170 adds Claude Fable 5, a Mythos-class model with unprecedented capabilities, and fixes session transcript saving in VS Code integrated terminal.

Docker Containers: The Case Against Cron Jobs
A discussion from r/openclaw highlights the contentious topic of using cron jobs within Docker containers. While easy automation might be the immediate appeal, the community advises against it.