<?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: Chirs</title>
    <description>The latest articles on DEV Community by Chirs (@chirs_428b78486a09cfd138f).</description>
    <link>https://dev.to/chirs_428b78486a09cfd138f</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%2F3829670%2Fa12fb6ff-71a0-4798-8c2b-6d4b2ebe0172.png</url>
      <title>DEV Community: Chirs</title>
      <link>https://dev.to/chirs_428b78486a09cfd138f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/chirs_428b78486a09cfd138f"/>
    <language>en</language>
    <item>
      <title>My AI Agent Built Its Own Tools — Here's How OpenClaw Skills Actually Work</title>
      <dc:creator>Chirs</dc:creator>
      <pubDate>Tue, 17 Mar 2026 14:56:20 +0000</pubDate>
      <link>https://dev.to/chirs_428b78486a09cfd138f/my-ai-agent-built-its-own-tools-heres-how-openclaw-skills-actually-work-2kga</link>
      <guid>https://dev.to/chirs_428b78486a09cfd138f/my-ai-agent-built-its-own-tools-heres-how-openclaw-skills-actually-work-2kga</guid>
      <description>&lt;p&gt;I spent 12 hours installing OpenClaw on Windows WSL. The setup was painful, &lt;br&gt;
but what happened after was worth every minute.&lt;/p&gt;
&lt;h2&gt;
  
  
  The moment that changed my mind
&lt;/h2&gt;

&lt;p&gt;I told my AI agent: "Create a new skill called github-trending that shows &lt;br&gt;
me today's top GitHub projects."&lt;/p&gt;

&lt;p&gt;Two minutes later, it had written the skill code, committed it to git, &lt;br&gt;
and delivered a formatted report of today's trending repos — complete &lt;br&gt;
with Star counts and analysis of why each project matters.&lt;/p&gt;

&lt;p&gt;The AI didn't just use a tool. It built a tool, installed it, and used it.&lt;/p&gt;
&lt;h2&gt;
  
  
  The painful part: skill dependencies
&lt;/h2&gt;

&lt;p&gt;OpenClaw has 55 optional skills, but 45 of them failed to install on &lt;br&gt;
my first try. The error messages weren't helpful:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Install failed: github — brew not installed
Install failed: nano-pdf — uv not installed
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After hours of troubleshooting, I figured out the dependency chain:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Skills&lt;/strong&gt; need &lt;strong&gt;system tools&lt;/strong&gt; (gh, poppler, ffmpeg) which need &lt;br&gt;
&lt;strong&gt;package managers&lt;/strong&gt; (Homebrew, uv) which need &lt;strong&gt;your OS&lt;/strong&gt; to be &lt;br&gt;
properly configured.&lt;/p&gt;

&lt;p&gt;The fix was straightforward once I understood it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install Homebrew&lt;/span&gt;
/bin/bash &lt;span class="nt"&gt;-c&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="si"&gt;$(&lt;/span&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh&lt;span class="si"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;

&lt;span class="c"&gt;# Install core packages&lt;/span&gt;
brew &lt;span class="nb"&gt;install &lt;/span&gt;gh uv poppler ffmpeg imagemagick

&lt;span class="c"&gt;# Let OpenClaw fix the rest&lt;/span&gt;
openclaw doctor &lt;span class="nt"&gt;--fix&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;My eligible skills went from 10 → 14 → 16.&lt;/p&gt;

&lt;h2&gt;
  
  
  What skills can actually do
&lt;/h2&gt;

&lt;p&gt;Once configured, the results are genuinely impressive.&lt;/p&gt;

&lt;p&gt;I asked my agent to analyze today's OpenClaw GitHub activity and &lt;br&gt;
triage it into priority levels. In 30 seconds, it delivered a &lt;br&gt;
structured analysis of 20+ items — commits, issues, discussions — &lt;br&gt;
categorized into "needs attention," "good to know," and "just FYI."&lt;/p&gt;

&lt;p&gt;A human doing this manually would need 30-60 minutes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The full guide
&lt;/h2&gt;

&lt;p&gt;I documented the complete skill configuration process — every error &lt;br&gt;
message, every fix, every dependency — in a step-by-step guide:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://aiagentguides.ai/docs/configuration/openclaw-skill-configuration" rel="noopener noreferrer"&gt;OpenClaw Skills Guide — From Setup to Self-Building Tools&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It covers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which skills to install first (and which to skip)&lt;/li&gt;
&lt;li&gt;The full dependency fix chain&lt;/li&gt;
&lt;li&gt;Real demos of inbox-triage and github-trending&lt;/li&gt;
&lt;li&gt;How the agent creates its own skills&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're running OpenClaw or thinking about it, I'd love to hear &lt;br&gt;
about your setup.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>tutorial</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
