<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Technology on Yarang's Tech Lair</title><link>https://blog.agentthread.dev/categories/technology/</link><description>Recent content in Technology on Yarang's Tech Lair</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Fri, 27 Feb 2026 19:30:00 +0900</lastBuildDate><atom:link href="https://blog.agentthread.dev/categories/technology/index.xml" rel="self" type="application/rss+xml"/><item><title>[ZeroClaw] Intro - High-Performance Rust Agent Runtime</title><link>https://blog.agentthread.dev/post/2026-02-27-introducing-zeroclaw/</link><pubDate>Fri, 27 Feb 2026 19:30:00 +0900</pubDate><guid>https://blog.agentthread.dev/post/2026-02-27-introducing-zeroclaw/</guid><description>&lt;h1 id="introducing-zeroclaw-high-performance-rust-agent-runtime"&gt;Introducing ZeroClaw: High-Performance Rust Agent Runtime
&lt;/h1&gt;&lt;p&gt;ZeroClaw is a &lt;strong&gt;high-performance autonomous agent runtime&lt;/strong&gt; built in Rust, designed for developers who need speed, efficiency, and reliability in their AI-powered applications.&lt;/p&gt;
&lt;h2 id="key-features"&gt;Key Features
&lt;/h2&gt;&lt;h3 id="performance-first"&gt;Performance First
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Rust-native&lt;/strong&gt;: Zero allocations where possible&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Async/await with Tokio&lt;/strong&gt;: Efficient concurrent operations&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Streaming support&lt;/strong&gt;: Real-time response streaming&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="extensibility"&gt;Extensibility
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Trait + Factory Architecture&lt;/strong&gt;: Extend by implementing traits&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;25+ Built-in Tools&lt;/strong&gt;: Shell, file ops, memory, browser, HTTP&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Plugin-friendly&lt;/strong&gt;: Add providers, channels, tools without core changes&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="security-by-default"&gt;Security by Default
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Sandbox Support&lt;/strong&gt;: Firejail, Bubblewrap, Landlock, Docker&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pairing Protocol&lt;/strong&gt;: 6-digit CSPRNG code&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Secret Storage&lt;/strong&gt;: ChaCha20-Poly1305 AEAD encryption&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="multi-platform"&gt;Multi-Platform
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;20+ Messaging Channels&lt;/strong&gt;: Telegram, Discord, Slack, WhatsApp, Signal, Matrix&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;13+ LLM Providers&lt;/strong&gt;: OpenAI, Anthropic, Gemini, Ollama, Bedrock, OpenRouter&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="quick-start"&gt;Quick Start
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;cargo install zeroclaw
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;zeroclaw config init
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;zeroclaw run --channel telegram
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="architecture"&gt;Architecture
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-fallback" data-lang="fallback"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;ZeroClaw Agent
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;├── Providers (OpenAI, Anthropic, Gemini, Ollama)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;├── Channels (Telegram, Discord, Slack, WhatsApp)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;├── Tools (Shell, File, Memory, Browser, HTTP)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;├── Memory (SQLite, PostgreSQL, Markdown)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;└── Security (Policy, Sandbox, Secret Store)
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="roadmap"&gt;Roadmap
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Phase 1&lt;/strong&gt;: Enhanced Multi-Agent (In Progress)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Phase 2&lt;/strong&gt;: More Integrations&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Phase 3&lt;/strong&gt;: Enterprise Features&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;Korean Version:&lt;/strong&gt; &lt;a class="link" href="https://blog.agentthread.dev/ko/post/2026-02-27-010-introducing-zeroclaw/" &gt;한국어 버전&lt;/a&gt;&lt;/p&gt;</description></item></channel></rss>