<?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: Harry Machura</title>
    <description>The latest articles on DEV Community by Harry Machura (@harry_machura_67442b7a2ab).</description>
    <link>https://dev.to/harry_machura_67442b7a2ab</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4060143%2F8b2fea62-1f13-4c56-a7e7-d82458bd989d.jpg</url>
      <title>DEV Community: Harry Machura</title>
      <link>https://dev.to/harry_machura_67442b7a2ab</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/harry_machura_67442b7a2ab"/>
    <language>en</language>
    <item>
      <title>I Built a Language Where AI Calls Are Sandboxed by Default</title>
      <dc:creator>Harry Machura</dc:creator>
      <pubDate>Mon, 03 Aug 2026 09:48:25 +0000</pubDate>
      <link>https://dev.to/harry_machura_67442b7a2ab/i-built-a-language-where-ai-calls-are-sandboxed-by-default-3eg0</link>
      <guid>https://dev.to/harry_machura_67442b7a2ab/i-built-a-language-where-ai-calls-are-sandboxed-by-default-3eg0</guid>
      <description>&lt;h1&gt;
  
  
  I Built a Language Where AI Calls Are Sandboxed by Default
&lt;/h1&gt;

&lt;h2&gt;
  
  
  The 30-line Python problem
&lt;/h2&gt;

&lt;p&gt;Last month I needed a script that reads server logs, classifies errors with an LLM, summarizes them, and writes a report. In Python, it looked like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Import the SDK&lt;/li&gt;
&lt;li&gt;Initialize the client&lt;/li&gt;
&lt;li&gt;Handle the API response&lt;/li&gt;
&lt;li&gt;Parse JSON&lt;/li&gt;
&lt;li&gt;Add &lt;code&gt;asyncio.gather()&lt;/code&gt; because sequential calls took 8 seconds&lt;/li&gt;
&lt;li&gt;Write a custom sandbox because I don't trust LLMs with &lt;code&gt;exec&lt;/code&gt; and file writes&lt;/li&gt;
&lt;li&gt;Package it in Docker because &lt;code&gt;requirements.txt&lt;/code&gt; always breaks on the server&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;80 lines later&lt;/strong&gt;, it worked. But it felt wrong. I wasn't building logic — I was plumbing.&lt;/p&gt;

&lt;p&gt;So I asked myself: &lt;em&gt;What if AI operations were language primitives, not library calls?&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Meet Pipe
&lt;/h2&gt;

&lt;p&gt;Pipe is a small runtime (~10 MB, single binary, zero dependencies) that treats &lt;code&gt;summarize&lt;/code&gt;, &lt;code&gt;translate&lt;/code&gt;, &lt;code&gt;classify&lt;/code&gt;, and &lt;code&gt;ask&lt;/code&gt; as first-class citizens — on the same level as &lt;code&gt;+&lt;/code&gt;, &lt;code&gt;sort&lt;/code&gt;, or &lt;code&gt;len&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Try it&lt;/p&gt;

&lt;p&gt;Browser Playground (WASM, no install): pipe-lang.com&lt;/p&gt;

&lt;p&gt;Source: github.com/MachuraHarry/pipe&lt;/p&gt;

&lt;p&gt;Docs: pipe-lang.com/docs&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>programming</category>
      <category>go</category>
    </item>
  </channel>
</rss>
