# Turn Browser Traces Into Reusable Agent Clients

*By Coding Agents Alpha Tracker • July 20, 2026*

A browser-agent technique turns one recorded web session into a reusable client, while Kody’s latest release adds an event-driven path for routing coding-agent feedback to Discord.

## 🔥 TOP SIGNAL

**Use browser automation once to capture the network contract, then promote it into a reusable client.** @thdxr, sharing a technique from @jlongster, recommends having an agent record a HAR file and derive a client from it instead of repeatedly controlling a browser; he used the approach to build a quick Uber Eats CLI. [^1] Kent C. Dodds frames this promotion from ad-hoc agent work into durable, deterministic, composable software as a core strength of Kody. [^2]

## ⚡ TRY THIS

- **Replace repeat browser-driving with a HAR-to-client pass.**
  1. Ask the agent to complete the browser flow once while recording network requests into a HAR file.
  2. Ask it to derive a client for that site from the captured requests.
  3. Use the client for subsequent calls rather than having the agent operate the browser each time. [^1]

- **Create an agent-feedback relay to Discord with Kody.** Ask your coding agent to “send feedback to @kodykoala.” That submission triggers an event; with your own Kody instance subscribed, the event can be forwarded to Discord. [^3]

## 📡 WHAT SHIPPED

- **Kody `v2026-07-19`** adds agent-submitted feedback addressed to `@kodykoala`, enabling the event-driven relay workflow above. [Release notes](https://github.com/kentcdodds/kody/releases/tag/v2026-07-19) [^3]

## 🎬 GO DEEPER

- **[Kody `v2026-07-19` release](https://github.com/kentcdodds/kody/releases/tag/v2026-07-19):** Inspect the feedback mechanism if you want to connect coding-agent output to an event subscriber and Discord notification flow. [^3]

*Editorial take: the durable agent pattern is to capture one-off interactive work, turn it into a reusable interface, and route exceptions or feedback through explicit events—not repeated manual browser control.* [^1][^2]

---

### Sources

[^1]: [𝕏 post by @thdxr](https://x.com/thdxr/status/2078727284865827140)
[^2]: [𝕏 post by @kentcdodds](https://x.com/kentcdodds/status/2078899202734846255)
[^3]: [𝕏 post by @kentcdodds](https://x.com/kentcdodds/status/2078856161894482224)