<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sidrel</title>
    <description>The latest articles on DEV Community by Sidrel (@sidrel).</description>
    <link>https://dev.to/sidrel</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3800946%2F67893333-b636-4f26-8ea7-63bd64917574.jpg</url>
      <title>DEV Community: Sidrel</title>
      <link>https://dev.to/sidrel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sidrel"/>
    <language>en</language>
    <item>
      <title>I Built an AI Agent That Controls My Real Safari Browser — No Extensions Needed</title>
      <dc:creator>Sidrel</dc:creator>
      <pubDate>Mon, 02 Mar 2026 05:50:31 +0000</pubDate>
      <link>https://dev.to/sidrel/i-built-an-ai-agent-that-controls-my-real-safari-browser-no-extensions-needed-4h00</link>
      <guid>https://dev.to/sidrel/i-built-an-ai-agent-that-controls-my-real-safari-browser-no-extensions-needed-4h00</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I wanted Claude to help me with browser tasks — check prices on a page, fill out a form, summarize an article I had open. Simple stuff.&lt;/p&gt;

&lt;p&gt;But every existing solution had a dealbreaker:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Playwright MCP&lt;/strong&gt; opens a &lt;em&gt;separate&lt;/em&gt; Chromium browser. My logins? Gone. My cookies? Gone. My 47 open tabs? Nowhere to be found.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chrome extensions&lt;/strong&gt; don't work with Safari (my daily driver on macOS).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Copy &amp;amp; paste&lt;/strong&gt; works, but doing it 50 times a day is soul-crushing.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I just wanted AI to use &lt;strong&gt;my real Safari&lt;/strong&gt; — the one with all my tabs, sessions, and logged-in accounts.&lt;/p&gt;

&lt;p&gt;So I built it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs01uk29hmv1q5qc6lmp2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs01uk29hmv1q5qc6lmp2.png" alt=" " width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Claude for Safari
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://safari.skilljam.dev" rel="noopener noreferrer"&gt;Claude for Safari&lt;/a&gt; is a skill for Claude Code that gives your AI agent full control over Safari using nothing but macOS built-in tools.&lt;/p&gt;

&lt;p&gt;No browser extensions. No separate browser. No dependencies to install.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add SDLLL/claude-for-safari
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After installing, you can say things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;"What tabs do I have open?"&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;"Read the article in my current tab and summarize it"&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;"Fill in the search box and click submit"&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;"Take a screenshot of this page"&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Playwright vs Claude for Safari
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Playwright MCP&lt;/th&gt;
&lt;th&gt;Claude for Safari&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Browser&lt;/td&gt;
&lt;td&gt;Separate Chromium&lt;/td&gt;
&lt;td&gt;Your real Safari&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Login state&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;Your existing sessions&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dependencies&lt;/td&gt;
&lt;td&gt;Node.js + Playwright&lt;/td&gt;
&lt;td&gt;None (macOS built-in)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Websites see&lt;/td&gt;
&lt;td&gt;Automation fingerprint&lt;/td&gt;
&lt;td&gt;Real user&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add SDLLL/claude-for-safari
claude
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="s2"&gt;"Show me what tabs are open in Safari"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Website&lt;/strong&gt;: &lt;a href="https://safari.skilljam.dev" rel="noopener noreferrer"&gt;safari.skilljam.dev&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/SDLLL/claude-for-safari" rel="noopener noreferrer"&gt;github.com/SDLLL/claude-for-safari&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;npm&lt;/strong&gt;: &lt;a href="https://www.npmjs.com/package/claude-for-safari" rel="noopener noreferrer"&gt;npmjs.com/package/claude-for-safari&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;MIT Licensed. macOS only.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you're building AI agents and want them to interact with a real browser instead of a headless sandbox, give it a try. I'd love to hear what use cases you come up with.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
