EDIT: To clarify, I realize there are skill files that can be used with Claude directly, but the snapshot analysis model seems to require a key. Any way to route that effort through Claude Code itself, such as for example exporting the raw snapshot to a file and instructing Claude Code to use a built-in subagent instead?
Show HN: Libretto – Making AI browser automations deterministic
51–60 of 72 posts
Re: Show HN: Libretto – Making AI browser automations deterministic
#521. playwright-cli for exploration and ad-hoc scraping, in order to determine what works. 2. playwright code generation based on 1, which captures a repeatable workflow 3. agent skills - these can be playwright based, but in some cases if I can just rely on built-in tools like Web Search and Web Fetch, I will. playwright is one of the unsung heroes of agentic workflows. I heavily rely on it. In addition to the obvious…
Re: Show HN: Libretto – Making AI browser automations deterministic
#53Re: Show HN: Libretto – Making AI browser automations deterministic
#541. playwright-cli for exploration and ad-hoc scraping, in order to determine what works. 2. playwright code generation based on 1, which captures a repeatable workflow 3. agent skills - these can be playwright based, but in some cases if I can just rely on built-in tools like Web Search and Web Fetch, I will. playwright is one of the unsung heroes of agentic workflows. I heavily rely on it. In addition to the obvious…
"Claude, reverse engineer the APIs of this website and build a client. Use Dev Tools."
I have succeed 8/8 websites with this.
Sites like Booking.com, Hotels.com, try to identify real humans with their AWS solution and Cloudflare, but you can just solve the captcha yourself, login and the session is in disguishable from a human. Playwright is detected and often blocked.
Re: Show HN: Libretto – Making AI browser automations deterministic
#55We used to deal with RPA stuff at work. Always fragile. Good to see evolution in the space.
Re: Show HN: Libretto – Making AI browser automations deterministic
#56[flagged]
Re: Show HN: Libretto – Making AI browser automations deterministic
#57Re: Show HN: Libretto – Making AI browser automations deterministic
#58Re: Show HN: Libretto – Making AI browser automations deterministic
#59Re: Show HN: Libretto – Making AI browser automations deterministic
#601. playwright-cli for exploration and ad-hoc scraping, in order to determine what works. 2. playwright code generation based on 1, which captures a repeatable workflow 3. agent skills - these can be playwright based, but in some cases if I can just rely on built-in tools like Web Search and Web Fetch, I will. playwright is one of the unsung heroes of agentic workflows. I heavily rely on it. In addition to the obvious…
The playwright codegen tool exists, but the script it generates is super simple and it can't handle loops or data extraction.
So for libretto we often use a mix of instructions + recording my actions for the agent. Makes the process faster than just relying on a description and waiting for the agent to figure out the whole flow