Nine years ago, I built two versions of Highlander: an original jQuery application and a React/Redux version that used the same backend concepts. After successfully reviving and deploying the jQuery version, I turned to Highlander-react-redux.
The goal was not simply to make an old repository run again. I wanted to improve the product, modernize its architecture without rewriting everything, and deploy something people could actually explore. This time, I used Turtle AI: a plan-driven engineering workflow built around Codex. It gave the AI explicit phases for planning, implementation, verification, testing, documentation, security review, and performance review.
The process worked—but it also taught me that more guardrails do not automatically create a more efficient workflow.
The application had the typical problems of a nine-year-old project:
The app also had useful product ideas that had never been fully developed. Coaches could manage teams, players, and stats, but the experience needed stronger analytics, season support, collaboration, and more reliable workflows.
I did not want to throw away the existing application and replace it with a new stack. The challenge was to preserve its original value while making targeted improvements.
My previous Highlander revival prioritized:
For the React/Redux version, I followed a more structured workflow:
That sequence made the work deliberate. It prevented the AI from treating the repository like an unlimited refactoring exercise.
Turtle AI is a workflow I created around one principle: build with AI without losing understanding.
Most AI coding workflows optimize for generating code quickly. Turtle AI instead optimizes for engineer comprehension, controlled progress, and long-term ownership of the codebase. The engineer remains the source of truth, while the AI operates as a constrained implementation partner.
Turtle AI runs as a collection of repository-scoped Codex skills. Each feature begins with repository analysis and a written plan. Every implementation step then moves through a controlled loop:
EXECUTE → VERIFY → ENGINEER CHECKPOINT → TEST → DEBUG → PLAN STEP UPDATE
The Engineer Checkpoint is what makes the workflow different. Before moving forward, the developer must explain what changed, why it works, how it fits into the system, and what risks remain. This is intended to prevent a common problem with AI-assisted development: shipping increasingly large amounts of code while gradually losing understanding of the application.
The workflow also includes dedicated skills for backlog management, architecture documentation, security review, performance review, feature documentation, and commit preparation.
Highlander-react-redux became the first large project where I used Turtle AI from planning through deployment. It gave me an opportunity to test the workflow against a real legacy application—not just demonstrate it with isolated coding exercises.
The project is open source on GitHub: heriberto-codes/turtle_ai.
That experience showed me both why the workflow is valuable and where its current design needs to improve.
The application gained several capabilities that made it more useful for coaches:
These features extended existing workflows instead of creating disconnected pages or parallel APIs.
The production deployment includes:
The deployed application serves the React build and Express API from the same origin. This simplifies cookies, API requests, and CORS behavior.
The most valuable part of Turtle AI was not the code it generated. It was how the workflow forced me to engage with that code. After implementing a plan step, the Engineer Checkpoint asked me to explain:
This turned the AI workflow into a learning tool. Instead of accepting generated code and moving on, I had to demonstrate that I understood the behavior. When my answer was incomplete, the checkpoint could ask me to retry, review the implementation, or rebuild my explanation.
That process helped me practice reviewing code, explaining architectural decisions, identifying risks, and thinking like the engineer responsible for maintaining the system.
For learning, this was extremely useful.
The Engineer Checkpoint was also the biggest weakness in the workflow.
Depending on the complexity of a change, it could ask four to eight questions for every individual plan step. Each question required the session to retain or reload:
That consumed the context window quickly.
On a long feature, the checkpoint process could use more context than the implementation itself. The same information was often repeated across the plan, verification, checkpoint, tests, security review, performance review, and final documentation.
Eventually, the context window could become so overloaded that the workflow designed to protect quality started making the AI less effective.
The AI had less room for the repository, product decisions, and active implementation because so much of the available context was occupied by process.
My main takeaway is that Turtle AI currently makes more sense to me as a learning tool than as a default workflow for production application development.
It is useful when the goal is to slow down, study a codebase, understand every change, and practice explaining engineering decisions. The checkpoints make it difficult to remain passive while the AI writes the application.
That is a strength for:
For production work, however, the context cost is difficult to justify. A large company may be able to provide access to models with very large or effectively unlimited context windows. In that environment, a highly structured workflow with repeated checkpoints may be practical.
For an individual developer working within normal context limits, it can become expensive, slow, and repetitive. Production work usually requires faster iteration and more selective controls.
I would not remove the guardrails completely. I would make them proportional to the risk:
The checkpoint should confirm understanding. It should not consume so much context that it interferes with the work it was designed to protect.
This project became more than a migration from jQuery to React.
It became an exercise in:
The original jQuery revival demonstrated how quickly an application can be restored with focused AI assistance.
The React/Redux revival demonstrated something different: a structured AI workflow can help a developer deeply understand and evolve an application, but that educational value comes with a substantial context and productivity cost.
Turtle AI made me more involved in the engineering process. It also taught me that the best AI workflow is not necessarily the one with the most steps or guardrails.
It is the one that applies the right amount of structure for the risk, the developer, and the environment.
Demo: https://highlander-react-redux-demo.fly.dev
GitHub: https://github.com/heriberto-codes/highlander-react-redux
Github: https://github.com/heriberto-codes/turtle_ai