<?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: zenovis2-create</title>
    <description>The latest articles on DEV Community by zenovis2-create (@zenovis2create).</description>
    <link>https://dev.to/zenovis2create</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%2F4089046%2F4f2369d6-1266-419d-bb86-417103135b55.png</url>
      <title>DEV Community: zenovis2-create</title>
      <link>https://dev.to/zenovis2create</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/zenovis2create"/>
    <language>en</language>
    <item>
      <title>skillvet: scan AI agent skills before you run them</title>
      <dc:creator>zenovis2-create</dc:creator>
      <pubDate>Sat, 22 Aug 2026 07:51:46 +0000</pubDate>
      <link>https://dev.to/zenovis2create/skillvet-scan-ai-agent-skills-before-you-run-them-29ii</link>
      <guid>https://dev.to/zenovis2create/skillvet-scan-ai-agent-skills-before-you-run-them-29ii</guid>
      <description>&lt;h1&gt;
  
  
  skillvet: scan AI agent skills before you run them
&lt;/h1&gt;

&lt;p&gt;You dropped a random &lt;code&gt;SKILL.md&lt;/code&gt; folder into your agent and trusted it with your shell. It has the same access you do: network, &lt;code&gt;~/.ssh&lt;/code&gt;, every env token. Most of the time it is fine. Most of the time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;skillvet&lt;/strong&gt; is a one-command supply-chain scanner for AI agent skills and MCP servers. It reads the tree, does &lt;strong&gt;not&lt;/strong&gt; execute it, and prints a &lt;strong&gt;RED / YELLOW / GREEN&lt;/strong&gt; verdict in about five seconds.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skillvet ./my-skill
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That is the whole install. Node 20+, zero runtime dependencies, no dashboard.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it flags
&lt;/h2&gt;

&lt;p&gt;It walks the folder and scores five checks. The output below is real, straight from a fixture:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;phone-home    +40  undeclared host exfil.attacker.invalid
postinstall   +35  package.json scripts.postinstall
VERDICT  RED   75/100
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Check&lt;/th&gt;
&lt;th&gt;What gets flagged&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;phone-home&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;HTTP/WS/IPC URLs to hosts the skill never declared, plus &lt;code&gt;child_process&lt;/code&gt;, &lt;code&gt;eval(&lt;/code&gt;, &lt;code&gt;Function(&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;secret-access&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;~/.ssh&lt;/code&gt;, &lt;code&gt;~/.aws&lt;/code&gt;, &lt;code&gt;~/.config&lt;/code&gt;, &lt;code&gt;*_TOKEN&lt;/code&gt;, &lt;code&gt;GITHUB_TOKEN&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;postinstall&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;npm &lt;code&gt;preinstall&lt;/code&gt; / &lt;code&gt;install&lt;/code&gt; / &lt;code&gt;postinstall&lt;/code&gt; hooks — automatic YELLOW at least&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;obfuscation&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;Buffer.from(...,'base64')&lt;/code&gt;, &lt;code&gt;atob&lt;/code&gt;, hex-string &lt;code&gt;eval&lt;/code&gt;, minified sources&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;binaries&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;non-whitelisted executables (ELF / PE / Mach-O / &lt;code&gt;.exe&lt;/code&gt; / &lt;code&gt;.so&lt;/code&gt;)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;If a skill needs to call a host, it can declare it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ship-it&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Opens a pull request on GitHub.&lt;/span&gt;
&lt;span class="na"&gt;allowed-domains&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;api.github.com&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Declared hosts don't count as phone-home.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why now
&lt;/h2&gt;

&lt;p&gt;In August 2026 researchers flagged about &lt;strong&gt;7,600 malicious GitHub repositories&lt;/strong&gt;, and &lt;strong&gt;800+&lt;/strong&gt; of them were posing as AI skills or MCP servers. A GitHub takeover of the 25k-star Blender MCP repo showed how fast a "just paste this skill" habit becomes a supply-chain incident.&lt;/p&gt;

&lt;p&gt;Developers are still dropping unsigned &lt;code&gt;SKILL.md&lt;/code&gt; folders into agents with no review. skillvet is the five-second check before that happens.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest limits
&lt;/h2&gt;

&lt;p&gt;It is &lt;strong&gt;not&lt;/strong&gt; a sandbox. It will not catch a clever adversary, and a GREEN is not a proof of safety. It catches the stuff that is already in the wild: install hooks, stolen-token reads, mystery binaries, and a &lt;code&gt;fetch&lt;/code&gt; to a domain the skill never declared.&lt;/p&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 skillvet ./my-skill
npx skillvet https://github.com/some-user/some-skill
npx skillvet ./my-skill &lt;span class="nt"&gt;--json&lt;/span&gt;   &lt;span class="c"&gt;# for CI, exit code 0/1/2&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Repo: &lt;a href="https://github.com/zenovis2-create/skillvet" rel="noopener noreferrer"&gt;github.com/zenovis2-create/skillvet&lt;/a&gt; — MIT.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>javascript</category>
      <category>devops</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
