AI Research Engineer Open-Sources His Entire Workflow and Prompts An AI research engineer has open-sourced their entire workflow and prompts for coding agents, releasing a public workflow playbook on GitHub. The engineer critiques the high cost and overthinking tendencies of the Fable 5 model compared to GPT 5.5, and argues that AI adoption in organizations is hindered by a lack of practical examples from power users. The playbook covers prompting, workflow execution, steering, and edge case handling. Fable 5 came and went. And because it was taken away so quickly, developers wanted it back even more. Scarcity has a way of making things feel more valuable. Reviews during its short tenure described a model that was very capable and great at churning on long-running, ambiguous tasks. But it was too expensive. The model was also intelligent enough that, on large work and overhauls, it tended to overthink. Most likely because of its size. For iterative work like implementing a feature or change, Fable 5 was comparable head-to-head with GPT 5.5, except Fable 5 would run for 10x as long: a larger model, more overthinking, and more time. The other issue was fallback behavior. If you hit a case where the model needed to call the fallback Opus model, you would not necessarily know it happened, and you would be billed at the higher charge. Nonetheless, it was a noticeable change compared to existing models. It was good at churning on a specific, goal-oriented problem. For example, optimizing a slow path by repeatedly profiling, tracing call sites, tightening hot loops, and validating the regression budget. For architecture design, it was still not remarkable. So it was good at that goal-oriented push, but even within that you needed to run it in sessions, review its code, and steer or compact to get the results you wanted. It is a good model to use for planning, research, and review, which is where I had adopted it. I saw real benefits. However, when it came to orchestration or running workflows, I still believe GPT 5.5 is better and more cost-effective on both tokens and time. Personally, I care about token spend, but I care immensely more about my time. Model capability aside, I still think we are missing a bigger problem, and Fable 5 put a magnifying lens on it because of the nature of its capabilities. AI adoption in organizations is still a challenge for many developers because there are not enough good examples of how power users of coding agents are prompting, running workflows, reviewing outputs, and taking action. So I am turning my process into a public workflow playbook https://github.com/bastani-inc/atomic/blob/main/docs/workflow-playbook.md : how I prompt, how I run workflows, how I steer them, and how I handle the edge cases that show up when agents are doing real work. Here is the prompt I asked my coding agent to run: Workflow usage guide generator A privacy-preserving prompt for turning private workflow usage into a public developer guide.