15 comments

  • nicoburns6 hours ago
    This is built on top of Blitz (<a href="https:&#x2F;&#x2F;github.com&#x2F;dioxuslabs&#x2F;blitz" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;dioxuslabs&#x2F;blitz</a>): a new modular (open source) browser engine that I&#x27;ve been building for the last 2.5 years.<p>(I wasn&#x27;t involved in building kitesurf, but I am informed that they intend to open source and upstream their patches)
    • hugs5 hours ago
      any plans to support webdriver bidi for automation? (i&#x27;d be happy to help!)<p>[edit: for others reading who don&#x27;t usually nerd out on browser automation protocols: webdriver bidi is the new-ish w3c cross-browser standard inspired by CDP - the main magic was the upgrade to websockets and also to standardize the capture of network-level traffic. there are still feature gaps between CDP and BiDi (in spec and implementation), but long term, i believe we should bet on web standards, not proprietary protocols controlled by one company.<p>(disclosure: i started the selenium and appium projects.)]
      • nicoburns5 hours ago
        &gt; Long term, i believe we should bet on web standards, not proprietary protocols controlled by one company.<p>Totally agree.<p>Not sure if you&#x27;re involved in the development &#x2F; spec process for WebDriver Bidi, but the big limitation atm is that it has almost no support for the devtool inspection use cases served by the Chrome Devtools Protocol (CDP) and the Firefox Devtools Protocol (FDP).<p>The Servo and Ladybird browsers both have FDP implementations (and Blitz has an in-progress CDP implementation) for this reason. But we&#x27;d all love to switch to a single standardised protocol if it had the requisite support.
        • hugs4 hours ago
          thanks for the extra context. i&#x27;m friendly with devs working on the protocol, but looking for ways to get them more support.
      • nicoburns5 hours ago
        It&#x27;s definitely on the list of &quot;things that would be nice to have eventually&quot;. It hasn&#x27;t been very high up my personal list of priorities to build myself, but if you want to build it then I imagine we&#x27;d accept the patches (though I&#x27;d ideally like to see an implementation plan first).<p>(if kitesurf does upstream their patches then presumably we&#x27;ll get a CDP-based automation API as part of that)
        • hugs5 hours ago
          ok, cool. looks like i should chat with the fine people at cloudflare, too.
    • ravetcofx52 minutes ago
      I hope Cloudflare Hires, Sponsors, or at least donates a good chunk of change you way.
    • HaloZero1 hour ago
      Are you effectively building a separate renderer outside of Webkit?<p>Just curious on your thoughts about how Webkit was architected then, I guess it&#x27;s not a modular system where you can separate out things like &quot;Localstorage&quot; support?
      • nicoburns1 hour ago
        &gt; Are you effectively building a separate renderer outside of Webkit?<p>Yes, it&#x27;s new engine separate to Webkit&#x2F;Blink&#x2F;Gecko&#x2F;Servo&#x2F;Ladybird&#x2F;etc<p>&gt; Just curious on your thoughts about how Webkit was architected then, I guess it&#x27;s not a modular system where you can separate out things like &quot;Localstorage&quot; support?<p>Honestly, I&#x27;m not super-familiar with Webkit&#x27;s architecture. It&#x27;s a huge codebase, and it&#x27;s also C++ which is always pretty intimidating. I believe Webkit is more modular than most of the others, but Blitz goes quite extreme into modularity:<p>- The core is not coupled to the HTML parser<p>- The core is not coupled to the networking<p>- The core is not coupled to the rendering backend<p>- The core is not coupled to the windowing&#x2F;input layer<p>- The core is not coupled to the JS&#x2F;scripting engine<p>- The style engine (Stylo - shared with Servo and Firefox) is mostly implemented as a library which can be used independently<p>- The layout engine is mostly implemented in two libraries which can be used independently of the rest of the engine (Taffy for Flexbox&#x2F;Grid&#x2F;Block layout and Parley for Text&#x2F;Inline layout)<p>So, yes I&#x27;d hope that it will be possible to individually opt-in to features like localstorage (once we implement them), but it goes a bit further than that.
  • QuantumNomad_6 hours ago
    From the page <a href="https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;browser-run&#x2F;" rel="nofollow">https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;browser-run&#x2F;</a> linked to from this article:<p>&gt; Run headless Chrome on Cloudflare&#x27;s global network for browser automation, web scraping, testing, and content generation.<p>Does Cloudflare the CDN allow these browser instances to bypass their own anti-bot mechanisms? Or will Cloudflare the CDN block them the same as if someone was running scraping bots from a different provider?<p>Will Kitesurf in Cloudflare workers get special bypass privileges to content protected by Cloudflare the CDN?
    • buremba6 hours ago
      No it doesn&#x27;t and it&#x27;s simply useless. They have been trying to enable publishers to charge scrapers so that&#x27;s why they&#x27;re pushing this path hard.
  • dupontcyborg15 minutes ago
    kinda meta to have a js engine built in rust, compiled to wasm, running in cloudflare workers which itself is another js engine (v8 isolates)
  • cautiouscat5 hours ago
    Can someone give me examples of where you use agents in your browser? I’ve heard executive leaders tout that “people use agents to buy things for them” but I haven’t actually seen that.
    • nozzlegear4 hours ago
      &gt; <i>I’ve heard executive leaders tout that “people use agents to buy things for them” but I haven’t actually seen that.</i><p>My wife really dislikes building up the shopping cart for our weekly grocery delivery, so I built an agent... thing with earendil&#x27;s npm libs. It takes the menu my wife has decided on, confers with her about the ingredients (if it hasn&#x27;t seen a recipe before), and then uses Chrome&#x27;s devtools protocol to head to Walmart and add everything to the shopping cart.<p>It works fairly well and uses the local models I have running on my Mac Studio.
      • arosier101 hour ago
        Does walmart keep prompting you with &quot;Press and hold&quot; anti bot requests? I have a similar project and keep getting these on walmart.
      • diarrhea3 hours ago
        &gt; uses the local models<p>That is fantastic. Last I checked models capable of running on commodity (anything below a dedicated GPU rack) hardware were very lackluster.
        • nozzlegear1 hour ago
          Yeah, they&#x27;re excellent. I use a small Qwen3-4B-Instruct as the &quot;actor&quot; agent which goes out to the website, searches for a batch of items, decides which best matches the criteria, and puts them in the cart. Then I have Qwen3.6-35B-A3B as the &quot;orchestrator&quot; agent (it&#x27;s just what I use for my daily driver), it&#x27;s responsible for chatting with my wife about the menu, recipes and ingredients, and tells the smaller agent what to put in the cart with our brand preferences, dietary restrictions, etc. in mind.<p>I could probably drop the smaller Qwen at this point, but when I was first building this I was having an issue with search results and cart data filling up the main agent&#x27;s context.
    • terhechte56 minutes ago
      For any horrible web administration UI:<p>- Apple Appstore Connect (gazillions of forms of metadata to release an app) - AWS - DigitalOcean - Google Play Store<p>Whenever I dread logging in because I know the simple sounding task requires me to click through countless menus I use an agent browser. With confirmations of course. However, while the agent clicks through these (oftentimes dog slow) UIs I can do other things. Once it requires permission, I read, decide and act.
    • arjie2 hours ago
      It’s usually incidental. Costco’s receipts aren’t easy to get. You go to a particular page listing them all and then for each date you click view receipt and look for the thing you want. You can’t really search because the thing will be labeled SHWR103 or something.<p>I didn’t “use an agent to find a receipt” in the sense that I purpose built one. I just asked my existing agent that I talk to on telegram by photographing the thing I wanted to know if we could return and while I changed the baby it chugged along and by the time we were ready to go it could tell me whether we did buy it at Costco and when so I know if I can return it.
    • fulafel1 hour ago
      Web scraping is the age old pre-LLM way to implement scratch-your-own-itch automations on the web. Anything you do manually with a web browser. Also used in corporate settings to interface with bad &quot;enterprise&quot; software, it&#x27;s called RPA there. This kind of thing is the logical AI progression of those.<p>tldr; to workaround the lack (or shortcomings) of public m2m APIs in web apps
    • buskerrrrrr4 hours ago
      I often use it to browse sites to get web&#x2F;app design inspiration, then make moodboards based off it and send it to me. saves me a lot of manual browsing time
    • OroPla4 hours ago
      I would use them to solve captchas if that was a thing.
    • hugs4 hours ago
      i&#x27;ve been tempted to use an agent to help me find non-horrible seats to see the 70mm imax version of the odyssey. but that&#x27;s also the kind of thing that is heavily guarded by anti-bot detectors.
    • broker_desk1 hour ago
      [flagged]
  • Hexcles1 hour ago
    It&#x27;s nice to see wpt.fyi was used to help with the verification of this new browser! Also BiDi can&#x27;t come fast enough.
  • tonyrice50 minutes ago
    This reminds me of PhantomJS
  • fukaiall3 hours ago
    Seems like Cloudflare only writes Rust these days…
  • Hexcles1 hour ago
    Now that OpenAI basically abondoned Atlas, which had a truly novel architecture, let&#x27;s see if this more obvious technical route (not saying this to diminish the achievement!) would gain traction.
  • zuzululu5 hours ago
    wish it was open source so it can be run locally<p>a welcome addition although it&#x27;d be very easy for websites to fingerprint and block
    • donpark1 hour ago
      From the final notes section of their announcement blog post:<p>&gt; One last thing: we&#x27;re going to open source Kitesurf once we&#x27;re ready — hopefully soon. Our goal is to let any customer deploy their own version of Kitesurf on their own accounts, if they want to.
  • broker_desk1 hour ago
    [flagged]
  • nirbendavid4 hours ago
    [flagged]
  • saadyousfi4 hours ago
    [flagged]
  • hn0tdqaek43 hours ago
    [flagged]
  • hn5595p6982 hours ago
    [flagged]
  • LetsGetTechnicl5 hours ago
    Ugh