<?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: Jimmy</title>
    <description>The latest articles on DEV Community by Jimmy (@jimmy660538).</description>
    <link>https://dev.to/jimmy660538</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%2F3899025%2Faeb13d6d-73a2-49d7-a8fa-c5ca61df4abf.jpg</url>
      <title>DEV Community: Jimmy</title>
      <link>https://dev.to/jimmy660538</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jimmy660538"/>
    <language>en</language>
    <item>
      <title>I built a manifest standard for agent-callable CLI tools – 93.6% routing accuracy, zero fine-tuning</title>
      <dc:creator>Jimmy</dc:creator>
      <pubDate>Sun, 26 Apr 2026 16:21:11 +0000</pubDate>
      <link>https://dev.to/jimmy660538/i-built-a-manifest-standard-for-agent-callable-cli-tools-936-routing-accuracy-zero-fine-tuning-56h6</link>
      <guid>https://dev.to/jimmy660538/i-built-a-manifest-standard-for-agent-callable-cli-tools-936-routing-accuracy-zero-fine-tuning-56h6</guid>
      <description>&lt;p&gt;I've been building agentic systems and kept running into the same problem: &lt;br&gt;
agents either stuff entire tool docs into every prompt, or hallucinate &lt;br&gt;
the wrong tool entirely.&lt;/p&gt;

&lt;p&gt;CLI tools are 10–32× cheaper than MCP and nearly 100% reliable — but &lt;br&gt;
there's no standard way for agents to discover and invoke them.&lt;/p&gt;

&lt;p&gt;So I built CLIbrary: an open standard where each CLI tool has a &lt;br&gt;
manifest.json with intent_triggers — natural language phrases &lt;br&gt;
describing when to use it.&lt;/p&gt;

&lt;p&gt;A routing layer does nearest-neighbor search over these embeddings &lt;br&gt;
and returns a ready-to-execute tool call.&lt;/p&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;p&gt;Validated on 1,380 test cases using multilingual-e5-base, zero fine-tuning:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Overall accuracy: 93.6%&lt;/li&gt;
&lt;li&gt;All 8 categories above 90%&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Current state
&lt;/h2&gt;

&lt;p&gt;69 manifests across 8 categories (ai-ml, devops, data, web, security, &lt;br&gt;
media, productivity, finance). Schema and metadata only right now — &lt;br&gt;
no CLI implementations yet. This is the standard layer first.&lt;/p&gt;

&lt;h2&gt;
  
  
  Manifest example
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"sql-runner"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"category"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"data"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"intent_triggers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"query a database"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"run a SQL statement"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"get data from postgres"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Looking for feedback
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Does the manifest schema make sense for your use case?&lt;/li&gt;
&lt;li&gt;What CLIs or categories would you want to see first?&lt;/li&gt;
&lt;li&gt;Is anyone else building tooling for agent tool discovery? 
Would love to connect.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/clibrary-hub/manifests" rel="noopener noreferrer"&gt;https://github.com/clibrary-hub/manifests&lt;/a&gt;&lt;/p&gt;

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