01 — Dev log


Real Fixes.
No Fluff.


No polished announcement posts here — just the actual bugs found while building this, and what turned out to be true once we chased them down. Pulled straight from the dev build's own changelog.

02 — The one that explained everything


A Navigate
Step Was
Undoing
Every Fix


Every recorded workflow captures a "Navigated to …" step — including the exact URL right after a click. On replay, that step force-navigated back to the original recorded URL, unconditionally — even after an AI search and an AI-driven click had just correctly landed somewhere new.

The insight: a recorded navigate step isn't really "go to this fixed URL" — it's "wherever the previous action led." That only matters once the previous step's target genuinely varies. The fix tracks whether the prior step actually varied, and trusts wherever it led instead of force-replaying the old URL.

03 — When position-only matching still isn't enough


The Click
That Wouldn't
Track The
Search


Even with position-only matching, a click after an AI-varied search kept landing on the same specific old result — confirmed by swapping the search for something totally unrelated and watching it open the wrong page anyway. The recorded position resolved to a slot the page fills with its own variable content. No selector, id, or position could ever be "right" once what you actually want depends on the page's current state.

The fix: "Let AI choose what to click instead." A vision model looks at the live page and picks the right element based on your instruction — logged as AI clicked: "…", with its own reasoning, never a silent guess.

04 — More in the repo


That's The
Highlight Reel


The full changelog — every fix, every honest "not yet," every regression caught by testing — lives in the project's own README.Read it on GitHub.