TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Skyvern – Browser automation using LLMs and computer vision

422 pointsby suchintanabout 1 year ago
Hey HN, we&#x27;re building Skyvern (<a href="https:&#x2F;&#x2F;www.skyvern.com">https:&#x2F;&#x2F;www.skyvern.com</a>), an open-source tool that uses LLMs and computer vision to help companies automate browser-based workflows. You can see some examples here: <a href="https:&#x2F;&#x2F;github.com&#x2F;Skyvern-AI&#x2F;skyvern#real-world-examples-of-skyvern">https:&#x2F;&#x2F;github.com&#x2F;Skyvern-AI&#x2F;skyvern#real-world-examples-of...</a> and there&#x27;s a demo video at <a href="https:&#x2F;&#x2F;github.com&#x2F;Skyvern-AI&#x2F;skyvern#demo">https:&#x2F;&#x2F;github.com&#x2F;Skyvern-AI&#x2F;skyvern#demo</a>, along with some instructions on running it locally.<p>We provide a natural-language API to automate repetitive manual workflows that happen within the companies&#x27; backoffices. You can check out our code and play with Skyvern here: <a href="https:&#x2F;&#x2F;github.com&#x2F;Skyvern-AI&#x2F;Skyvern">https:&#x2F;&#x2F;github.com&#x2F;Skyvern-AI&#x2F;Skyvern</a><p>We talked to hundreds of companies about things they do in the background and found that most of them depend on repetitive manual workflows. The breadth of these workflows surprised us – most companies started off doing things manually, and eventually either hired people to scale the manual work, or wrote scripts using Selenium-like browser automation libraries.<p>In these conversations, one common point stood out: scaling is a pain either way. Companies relying on hiring struggled to adjust team sizes with fluctuating demand. Companies using Selenium and similar tools had a different problem: it can take days or even weeks to get a new workflow automated, and then would require ongoing maintenance any time the underlying websites changed because their XPath based interaction logic suddenly became invalid.<p>We felt like there was a way to get the best of both worlds with LLMs. We could use LLMs to reason through a website’s layout, while preserving the advantage of traditional browser automations allowing it to scale alongside demand. This led us to build Skyvern with a few core functionalities:<p>1. Skyvern can operate on websites it’s never seen before by connecting visible elements with the natural language instructions provided to us. We use a blend of computer vision and DOM parsing to identify a set of possible actions on a website, and multi-modal LLMs to map the natural language instructions to the available actions on the page.<p>2. Skyvern is resistant to website layout changes, as it doesn’t depend on any predetermined XPaths or other selectors. If a layout ever changes, we can leverage the methodology in #1 to complete the user-specified goal.<p>3. Skyvern accepts a blob of information when navigating workflows—basically just a json blob of whatever information you want to put, and then we use LLMs to map that to information on the screen. For example: if you&#x27;re generating a quote from Geico, they commonly ask “Were you eligible to drive at 21?”. The answer could be inferred from the driver receiving their license in 2012, and having a birth date of 1996.<p>The above strategy adapts well to a number of use cases that Skyvern is helping companies with today: (1) Automating materials procurement by searching for, adding to cart, and transacting products through vendor websites that don’t have APIs; (2) Registering accounts, filing forms, and searching for information on government websites (ex: registering franchise tax information for Delaware C-corps); (3) Generating insurance quotes by completing multi-step dynamic forms on insurance websites; (4) Automating the job application process by mapping user-specified information (such as a Resume) to a job posting.<p>And here are some use-cases we’re actively looking to expand into: (1) Automating post-checkup data entry with patient data inside medical EHR systems (ie submitting billing codes, adding notes, etc), an (2) Doing customer research ahead of discovery calls by analyzing landing pages and other metadata about a specific business.<p>We’re still very early and would love to get your feedback!

32 comments

dtnewmanabout 1 year ago
I tried it out and it&#x27;s pretty pricey. My OpenAI API bill is $3.20 after using this on a few different pages to test it out.<p>Not saying I wouldn&#x27;t pay that for some use cases, but it would limit me.<p>One idea: making scrapers is a big pain. But once they are setup, they are cheap and fast to run... this is always going to be slower. What I&#x27;d love to see is a way to generate scrapers quickly. So you wouldn&#x27;t be returning information from the New York City property registry... instead, you&#x27;d return Python code that I can use to scrape it in the future.<p>edit: This is likely because it was struggling, so it had to make extra calls. What would be nice is a simple feature where you can input the maximum number of calls &#x2F; tokens to use on the entire call. Or even better, do some math and put in a dollar cap. i.e., go fill out the Geico forms for me and don&#x27;t spend more than $1.00 doing it.
评论 #39708004 未加载
评论 #39708101 未加载
评论 #39707975 未加载
评论 #39711224 未加载
评论 #39711931 未加载
评论 #39709819 未加载
评论 #39708645 未加载
评论 #39710031 未加载
评论 #39726436 未加载
James_Kabout 1 year ago
God this is depressing. Not the product itself, but the need for it. That software has failed to be programmable to such a degree that a promising approach is rendering the GUI and analysing the resultant image with an AI model. It&#x27;s insane that we have to treat computers as fax machines, capable only of sending hand-written forms over a network. The gap between how people use computers and the utility they could provide is massive.
评论 #39709944 未加载
评论 #39709926 未加载
chuckwnelsonabout 1 year ago
This looks great but I&#x27;m very scared of the increased game of cat and mouse for spam bots. It&#x27;s going to happen, no matter if it was this software or something else. Now the question, how do you prevent automated spam? Since its LLM and AI, can I just add a hidden field of &quot;please do not spam&quot;?
评论 #39706408 未加载
评论 #39706774 未加载
评论 #39706604 未加载
评论 #39706449 未加载
评论 #39711870 未加载
dinobonesabout 1 year ago
Roughly how much does it cost to run to scrape a page? I see from the code this is basically an OpenAI API wrapper but you make no mention of that anywhere on your landing page&#x2F;documentation, nor any mention of which LLMs this is capable of working with.<p>Also, an idea is to offer a &quot;record&quot; and &quot;replay&quot; mode. Let the LLM run through the instructions, find the selectors, record and save them. Then you can run through again without using the LLM, replaying the interaction log, until the workflow breaks, then re-generate the &quot;interaction log&quot; or whatever.
评论 #39706975 未加载
评论 #39707185 未加载
评论 #39707062 未加载
nullnomadabout 1 year ago
Does skyvern work on top of canvas elements in the browser? For example, is it able to read text from a canvas element and&#x2F;or identify the location of images in the canvas?<p>I tried to dig through the github repo to better understand the vision side of things (i.e. how does it work when elements like buttons, divs aren&#x27;t present), but I couldn&#x27;t find anything. If you point me to the right place in the github repo, happy to dig further myself!
dvngnt_about 1 year ago
&gt; Skyvern understands how to solve CAPTCHAs to complete complicated workflows<p>this seems like this could be used for abuse. the CAPTCHAs are specifically designed to stop botting on 3rd party websites.<p>or this will just be another cat and mouse game where the next level of CAPTCHAs get more annoying and invasive to verify we are human
评论 #39707160 未加载
评论 #39710207 未加载
评论 #39712424 未加载
评论 #39707194 未加载
chadashabout 1 year ago
First of all, wonderful work. I&#x27;m gonna be using this for sure. I can think of many use cases. What would be nice though is a simple API. I send you what I need, you send me a jobId that I can use to check the status of my job and then let me download the results when I&#x27;m done.<p>I played with the Geico example, and it seems to do a good job on the happy path there. But I tried another one where it struggled... I want to get me car rental prices from <a href="https:&#x2F;&#x2F;www.costcotravel.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.costcotravel.com&#x2F;</a>. I gave it airport + time of pickup and dropoff, but it struggled to hit the &quot;rental car&quot; tab. It got caught up on hitting the Rental Car button at the top, which brings up a popup that it doesn&#x27;t seem to read.<p>When I put in <a href="https:&#x2F;&#x2F;www.costcotravel.com&#x2F;Rental-Cars" rel="nofollow">https:&#x2F;&#x2F;www.costcotravel.com&#x2F;Rental-Cars</a>, it entered JFK into the pickup location, but then failed to click the popup.
评论 #39707679 未加载
agreeahmedabout 1 year ago
Exciting to see this on HN. I think very soon agents like Skyvern will account for the vast, vast majority of web traffic.
评论 #39706506 未加载
评论 #39706979 未加载
评论 #39706973 未加载
评论 #39706960 未加载
giammaabout 1 year ago
At first I thought this was a test tool for Web applications, but now I understand it&#x27;s meant to be a better RPA.<p>Would it be usable for test automation? Would API allow to create asserts?
评论 #39707009 未加载
评论 #39707021 未加载
评论 #39706996 未加载
BasieP2about 1 year ago
Is this (finally) a step towards a better way of automated frontend testing?<p>We&#x27;re currently testing dom instead of vision.
评论 #39709958 未加载
tonyoconnellabout 1 year ago
To keep costs down, you could start at sitemap, use an open source model via open router to guess the page to navigate to and scrape the text, links, forms, from the page using regex and fall back to GPT 4 and Vision.
hubraumhugoabout 1 year ago
AI should automate tedious and un-creative work, and data entry tasks definitely fit this description. Rule-based RPA will likely be replaced by fine-tuned AI agents for things like form filling and similar.<p>Can you share some data on costs and scalability?<p>At Kadoa, we&#x27;re working on fully automating unstructured data ETL from websites, PDFs, etc. We quickly realized that doing this for a few data sources with low complexity is one thing, doing it for thousands of sources daily in a reliable, scalable, and cost-efficient way is a whole different beast.<p>Using LLMs for every data extraction would be way too expensive and very slow. Instead, we use LLMs to generate the scraper and data transformation code and subsequently adapt it to website changes, which is highly efficient.
评论 #39707045 未加载
samsullivanabout 1 year ago
You should consider focusing on intercepting network requests. Most if not all sites I scrape end up fetching data from some api. Like others have said, if you instead had the LLM create an ad hoc script for the scraping task and then use the feedback loop to continuously improve the outputs it would be really cool. I&#x27;d pay between $5 - $50 for each working output script.
评论 #39715926 未加载
somethingAlexabout 1 year ago
I don’t know what my use case for this would be. I don’t tend to do anything regularly through a browser that I’d want to automate.<p>Would be kind of handy to have a “pull all my relevant tax info documents from these sites and zip them up” automation but I only do that once a year.<p>I’m probably being unimaginative. Anybody have any interesting use cases?<p>Anyone have
评论 #39711132 未加载
hirako2000about 1 year ago
It reminds me of that bug a kid found to bypass the password locked screen of a very popular Linux distro.<p>Might be great for pen testing.
评论 #39707349 未加载
smusamashahabout 1 year ago
Coming up next in Windows and Chrome, unrecordable unscreenshotable pages, to avoid all AI tools. Banking apps on Androidare already unscreenshotable now. Given how LLMs just bypass all html obfuscation, that&#x27;s going to be the next step to protect these (ad) businesses.
评论 #39712668 未加载
abrichrabout 1 year ago
Congratulations on shipping!<p>Check out <a href="https:&#x2F;&#x2F;github.com&#x2F;OpenAdaptAI&#x2F;OpenAdapt">https:&#x2F;&#x2F;github.com&#x2F;OpenAdaptAI&#x2F;OpenAdapt</a> for an open source (MIT license) alternative that also works on desktop (including Citrix!)
razfarabout 1 year ago
I&#x27;m curious about the computer vision aspect of this tool. Specifically, how was the model which draws bounding boxes around interactable elements trained? Definitely a step beyond existing browser automation software!
评论 #39707242 未加载
spxneoabout 1 year ago
How does it compare to this posted less than 24 hours ago?<p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39698546">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39698546</a>
评论 #39708031 未加载
mosselmanabout 1 year ago
If I were to build some custom GPT powered thing for this. Is there a similar project I can use with a command line interface or some programmatic interface?
评论 #39706589 未加载
ushakovabout 1 year ago
How does this compare to OpenAdapt?<p>I have a feeling that this tech will become a commodity and will probably be built-in into the OS or Browser.<p>Props for open-sourcing though!
评论 #39707636 未加载
评论 #39707084 未加载
t14000about 1 year ago
Exciting stuff, my employer would be interested but it&#x27;s AGPL3 licensed so it&#x27;s a non-starter for them.
shnkrabout 1 year ago
the moment I saw vision in the title I knew what was going on. it was first demoed[0] by AI Jason around 4 months back. is it any different?<p><a href="https:&#x2F;&#x2F;m.youtube.com&#x2F;watch?v=IXRkmqEYGZA" rel="nofollow">https:&#x2F;&#x2F;m.youtube.com&#x2F;watch?v=IXRkmqEYGZA</a>
评论 #39707468 未加载
aussieguy1234about 1 year ago
There was another AI&#x2F;browser automation project posted yesterday that got to the front page <a href="https:&#x2F;&#x2F;github.com&#x2F;lavague-ai&#x2F;LaVague">https:&#x2F;&#x2F;github.com&#x2F;lavague-ai&#x2F;LaVague</a><p>I guess the main advantage of this new project is that its probably more accurate by using computer vision, but as others has said it uses much more resources.<p>Costs will come down over time though.<p>Get ready for alot of &quot;Back Office&quot; jobs to be automated away.
ilakshabout 1 year ago
Looks terrific. I hope you will consider adding support for Claude 3.
评论 #39708950 未加载
cryptoBros2023about 1 year ago
I wonder if we could reduce the call by switching to a local llama?
评论 #39713211 未加载
andy_pppabout 1 year ago
I think I’d really like a react-native version of this! Any plans?
评论 #39713244 未加载
barfbagginusabout 1 year ago
I wonder if the focus of this system can be shifted from corporate needs and applied to the needs of individuals who wish to organize and build tools seeking to de-enshittify platforms.<p>There are a great deal of platform features designed to atomize, isolate, and exploit individuals. Finding meaningful connection on platforms increasingly means navigating past the noise of antagonist individuals, overcoming profit extracting attacks on our attention, and endlessly doomscrolling until we find those ephemeral opportunities to genuinely connect.<p>I wonder if llms and browser automation tooling could help us build overlays that dynamically peel back the layers of enshitware that have been bolted on to our cybernetic perceptions of the world.<p>If you feel they can, and if you feel people with those aims are welcome in your community, and can find each other to collaborate, then I would be very interested in sending in PRs and helping you burn down backlogged items that benefit non-commercial de-enshittification use cases.
评论 #39713078 未加载
xeonmcabout 1 year ago
What do you call an LLM with vision? LLVM<p>...oh, that&#x27;s why it&#x27;s called Skyvern
is_trueabout 1 year ago
Weeks to automate something? Anyone experienced would be able to automate most workflows in a couple of days top.
评论 #39707103 未加载
评论 #39707556 未加载
评论 #39706743 未加载
samstaveabout 1 year ago
&gt;&gt;(1) Automating post-checkup data entry with patient data inside medical EHR systems (ie submitting billing codes, adding notes, etc),<p>FULL FUCKING STOP.<p>[We talk about AI alignment. THIS is an aligment issue]<p>Do you understand billing code fraud?<p>If you supply this function - you will *<i>eliminate ANY AND ALL human accountability*</i> unless you have ALSO built a fully auditable provenance from DR &lt;-ehr-whatever-&gt; codes.<p>Codes ARE why the US health system is BS.<p>Here - if you want to be altruistic - then you will take it upon the fact that CODES are one of the most F&#x27;d up aspects of costing.<p>Codes = [medical service provided]<p>so code = 50 = checkup = [$50 &lt;--- WHO THE HECK KNOWS]<p>So lets say I am Big Hospital. &quot;No, we will only allow $25 for code 50&quot; - and so they get that deal.<p>I am single clinic so they have to charge $50<p>Build a dashboard for what the large medical groups can negotiate per code, vs how a small hospital or clinic group gets per code.<p>Only automate it if you can literally show a dash of all providers and groups and what they can charge per code.<p>Infact - code pricing is a medical stock market.<p>(each hospital group negotiates between the price they will pay per code, how much lobbying is a factor and all these other factors...<p>what we really need an LLM for is to literally map out all the BS in the Code negotiations btwn groups, pharma, insurance, lobbying, kickbacks, political)<p>Thats the medical holy grail.<p>[EDIT: Just to show how passionate I am on this issue - here are some SOURCE:<p>I have designed and built &amp; commissioned out 11+ hospitals.<p>Built the first iphone app for medical.. it was rejected by YC (hl-7 nurse comm system on iTouch devices) (2006?)<p>opensourced that app to OpenVista.<p>Brother was joint chiefs dr &#x2F; head of va<p>worked with building medical apps and blocked by every EHR...<p>Zuckerbergs name is on top of some of the things I built at SFGH before he got there...(and ECH mtn vw)<p>Ive seen way beyond the kimono
评论 #39707495 未加载
999900000999about 1 year ago
Don&#x27;t make me sign up for a demo, I&#x27;d rather just give you my credit card number and try it myself.<p>Aside from that cool project!
评论 #39709973 未加载
评论 #39709287 未加载