Now

What I'm focused on.

Updated June 2026

Building the HR agent is my main focus — a production recruiting agent that handles real talent workflows end to end, not a demo. The hard part isn't any single task; it's that the requests combine combinatorially, and the old reflex of writing a new tool for every new need is O(number of requests) of effort against an effectively infinite space. You never catch up.

So it runs on the code-action pattern: instead of choosing from a wall of bespoke tools, the agent writes code in a sandbox that calls a small set of stable primitives — looping, filtering, and batching in one script that runs once and returns only the aggregate. "Re-tag two hundred candidates" stops being two hundred model round-trips and becomes a few lines, and the maintenance cost drops from O(requests) to O(primitives). It's a LangGraph runtime kept in-process behind a facade — no separate server, because that complexity wouldn't earn its keep.

Code-action is only one pillar. The rest of the design is about accuracy, latency, cost, and trust — the parts that decide whether it survives production:

Alongside it:

This is a now page — a snapshot of the present, not a changelog.