Type help to see available commands. Press Ctrl+B to jump back here or use Ctrl+↑/Ctrl+↓ to scroll.

Thinking Hard or Hardly Thinking

In using the tools I’m limited with at my day job (github copilot, yuck), I’ve had to find some workarounds to the built in difficulties. Microsoft is doing a lot in that tool to really limit its costs, which, sure. But it does make this tool much less powerful than the unfettered tools and models (and I’ll point out, every time a developer has a bad experience with Agentic AI tools, you risk losing a customer for life). They are doing things like artificially limiting the context windows down to 100k tokens, adding stuff to the system prompt to make sure it doesn’t run for too long, etc. They’re obviously also using the “dumber” models and just calling them by their standard name, for instance there is no way in hell that the GPT-5 model in GHC is anything but the medium version or worse, because that thing compared to what I use on my own time is significantly nerfed. ...

October 8, 2025 · Chris Cullins

Rethinking Tools for Agents

One aspect of this new paradigm I’ve been really enjoying lately is rethinking all of these things we’ve just taken for granted for years. Like the fact that all of our tools are designed for humans. This usually will result in inefficiencies, such as wasted tokens going back to the model, or giving it more to sift through. But overall, I think we can do better than rg for search or curl to read a website. This led me to start building some new tools, to try this out. ...

October 6, 2025 · Chris Cullins

Documentation That Writes Itself

Every time I start a new project, I tell myself, “I’ll document this properly from the beginning,” and then three months later I’m staring at a README with a single line that says “TODO: Write documentation.”. Eventually I got tired of that loop and started tinkering with a script to help me out. The tinkering snowballed into Wiki Bot, a little assistant that reads a repository and spits out GitHub wiki pages. Just started working on it, but it’s been surprisingly handy. ...

October 5, 2025 · Chris Cullins

Not All Doom and Gloom

It’s not all doom and gloom. In fact, I’m pretty excited about this change. It comes off weird sometimes because I, and most developers, I think, have a lot of thoughts about this new world. It’s a lot to process. I’ve spent the last, I dunno, four months chewing on what this means for my career, the industry, everything. Eventually I decided to start writing about it, and that’s how we got here. ...

October 3, 2025 · Chris Cullins

The 24/7 Dev Team

I built something that still feels a bit surreal to watch in action: an orchestrator that chains together AI agents to handle the entire software development lifecycle. From planning to deployment, it’s agents all the way down. Honestly, it’s not even anything too impressive or hard to build at all. Just some simple python to handle a workflow system, and to wrap either the claude cli tool or codex cli. The really crazy part is that once you have the idea, it takes an afternoon to get it up and running. ...

September 30, 2025 · Chris Cullins