<?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: susu su</title>
    <description>The latest articles on DEV Community by susu su (@susu_su_5e820fa824c3421bb).</description>
    <link>https://dev.to/susu_su_5e820fa824c3421bb</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%2F4083018%2Fd40a3fbc-3511-43cc-a92d-9e411dd8013d.png</url>
      <title>DEV Community: susu su</title>
      <link>https://dev.to/susu_su_5e820fa824c3421bb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/susu_su_5e820fa824c3421bb"/>
    <language>en</language>
    <item>
      <title>I Sandbox-Tested 1,800+ DeepSeek Harness Plugins. Here’s What Broke</title>
      <dc:creator>susu su</dc:creator>
      <pubDate>Tue, 18 Aug 2026 10:05:46 +0000</pubDate>
      <link>https://dev.to/susu_su_5e820fa824c3421bb/i-sandbox-tested-1800-deepseek-harness-plugins-heres-what-broke-2jo3</link>
      <guid>https://dev.to/susu_su_5e820fa824c3421bb/i-sandbox-tested-1800-deepseek-harness-plugins-heres-what-broke-2jo3</guid>
      <description>&lt;h1&gt;
  
  
  I Sandbox-Tested 1,800+ DeepSeek Harness Plugins. Here’s What Broke
&lt;/h1&gt;

&lt;p&gt;The DeepSeek Harness plugin ecosystem is growing fast.&lt;/p&gt;

&lt;p&gt;That sounds great until you actually try to install plugins at scale.&lt;/p&gt;

&lt;p&gt;When I started building a searchable catalogue for DSH plugins, I assumed the hard part would be discovery:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;finding repositories&lt;/li&gt;
&lt;li&gt;reading metadata&lt;/li&gt;
&lt;li&gt;extracting install commands&lt;/li&gt;
&lt;li&gt;sorting by stars and categories&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It wasn't.&lt;/p&gt;

&lt;p&gt;The hard part was figuring out which information could actually be trusted.&lt;/p&gt;

&lt;p&gt;After running sandbox installation checks on more than &lt;strong&gt;1,800 plugins&lt;/strong&gt;, I found several failure modes that were much more common than I expected.&lt;/p&gt;

&lt;p&gt;That work eventually became &lt;strong&gt;DSH Marketplace&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dshmarketplace.dev" rel="noopener noreferrer"&gt;https://dshmarketplace.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But the interesting part is what broke along the way.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. A package name in &lt;code&gt;package.json&lt;/code&gt; does not mean the package exists
&lt;/h2&gt;

&lt;p&gt;The first version of the pipeline was simple.&lt;/p&gt;

&lt;p&gt;If a repository contained:&lt;br&gt;
&lt;/p&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;"some-dsh-plugin"&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;p&gt;then generating an installation command seemed reasonable:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;dsh plugin &lt;span class="nt"&gt;--profile&lt;/span&gt; web add some-dsh-plugin
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The problem is that repository metadata is not the npm registry.&lt;/p&gt;

&lt;p&gt;Some packages simply did not exist.&lt;/p&gt;

&lt;p&gt;Others were even worse.&lt;/p&gt;

&lt;p&gt;A fork could inherit the upstream repository's &lt;code&gt;package.json&lt;/code&gt;, including its package name.&lt;/p&gt;

&lt;p&gt;Imagine:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;author-a/plugin
       ↓ fork
author-b/plugin
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The fork still contains:&lt;br&gt;
&lt;/p&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;"author-a-plugin"&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;p&gt;If a directory blindly trusts that metadata, the page for &lt;code&gt;author-b/plugin&lt;/code&gt; may tell users to install:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;dsh plugin &lt;span class="nt"&gt;--profile&lt;/span&gt; web add author-a-plugin
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The command works.&lt;/p&gt;

&lt;p&gt;But it installs someone else's package.&lt;/p&gt;

&lt;p&gt;That is more dangerous than a broken command because it looks successful.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. "Installation failed" does not mean "plugin is broken"
&lt;/h2&gt;

&lt;p&gt;My first validation model was essentially:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;success
failure
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That quickly turned out to be useless.&lt;/p&gt;

&lt;p&gt;Real installation results looked more like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;passed
needs-approval
not-a-layer
failed
timeout
rejected
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Those distinctions matter.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;code&gt;needs-approval&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;Some packages contain build scripts that require explicit approval.&lt;/p&gt;

&lt;p&gt;That does not necessarily mean the plugin is broken.&lt;/p&gt;

&lt;p&gt;It may only need an &lt;code&gt;allowBuilds&lt;/code&gt; entry before it can activate.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;code&gt;not-a-layer&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;A package may install successfully but not declare a DSH profile layer.&lt;/p&gt;

&lt;p&gt;It could be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a theme&lt;/li&gt;
&lt;li&gt;a skill bundle&lt;/li&gt;
&lt;li&gt;a library&lt;/li&gt;
&lt;li&gt;an agent extension&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Calling that "broken" would be misleading.&lt;/p&gt;

&lt;p&gt;A useful validator needs to understand more than the process exit code.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. Sometimes your validator is the thing that failed
&lt;/h2&gt;

&lt;p&gt;This was the biggest lesson.&lt;/p&gt;

&lt;p&gt;At one point, a large batch of plugins came back as failed.&lt;/p&gt;

&lt;p&gt;The tempting conclusion was:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A huge percentage of DSH plugins are broken.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That conclusion was wrong.&lt;/p&gt;

&lt;p&gt;After inspecting the logs, many failures came from the validation infrastructure itself:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;bad npm package claims&lt;/li&gt;
&lt;li&gt;npm registry throttling&lt;/li&gt;
&lt;li&gt;temporary network failures&lt;/li&gt;
&lt;li&gt;monorepo resolution&lt;/li&gt;
&lt;li&gt;changes in the probe during a long validation run&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One batch produced more than a hundred failures that were mostly registry throttling.&lt;/p&gt;

&lt;p&gt;If I had published those results directly, perfectly valid plugins would have been labeled as broken.&lt;/p&gt;

&lt;p&gt;So the pipeline now tries to classify failures as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;OURS
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;THEIRS
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the failure cannot be explained confidently, the negative verdict should not be published.&lt;/p&gt;

&lt;p&gt;This became an important rule:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;An unexplained failure is a validator problem until proven otherwise.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  4. Testing third-party plugins means executing third-party code
&lt;/h2&gt;

&lt;p&gt;There is another obvious problem with installation validation:&lt;/p&gt;

&lt;p&gt;You are executing code you do not control.&lt;/p&gt;

&lt;p&gt;npm packages can run lifecycle scripts such as:&lt;br&gt;
&lt;/p&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;"scripts"&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="nl"&gt;"postinstall"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&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="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A malicious installation script can do much more than install dependencies.&lt;/p&gt;

&lt;p&gt;So the validator cannot run in the same environment that holds production credentials.&lt;/p&gt;

&lt;p&gt;The architecture now looks roughly like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Marketplace
    ↓
export plugins that need testing
    ↓
isolated validation job
    ↓
disposable containers
    ↓
installation results
    ↓
trusted job applies results
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The job that runs third-party installation code holds no production database secrets.&lt;/p&gt;

&lt;p&gt;The containers are also restricted:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;non-root&lt;/li&gt;
&lt;li&gt;no host mounts&lt;/li&gt;
&lt;li&gt;limited memory&lt;/li&gt;
&lt;li&gt;limited process count&lt;/li&gt;
&lt;li&gt;dropped capabilities&lt;/li&gt;
&lt;li&gt;disposable DSH profiles&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The important part is not that the sandbox is "perfect".&lt;/p&gt;

&lt;p&gt;It is that untrusted plugin code is separated from the credentials that matter.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Metadata needs continuous verification
&lt;/h2&gt;

&lt;p&gt;Even after fixing the first batch, the problem does not disappear.&lt;/p&gt;

&lt;p&gt;Repositories change.&lt;/p&gt;

&lt;p&gt;Packages get unpublished.&lt;/p&gt;

&lt;p&gt;Forks appear.&lt;/p&gt;

&lt;p&gt;Install commands go stale.&lt;/p&gt;

&lt;p&gt;So npm verification cannot be a one-time migration.&lt;/p&gt;

&lt;p&gt;The catalogue now re-checks package claims as part of its recurring sync process.&lt;/p&gt;

&lt;p&gt;The basic pipeline is:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;discover
→ refresh metadata
→ verify npm claims
→ apply admission rules
→ sandbox install
→ classify failures
→ update results
→ deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is more expensive than scraping a GitHub topic once.&lt;/p&gt;

&lt;p&gt;But it produces much more useful data.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I ended up building DSH Marketplace
&lt;/h2&gt;

&lt;p&gt;Originally, I wanted a simple plugin directory.&lt;/p&gt;

&lt;p&gt;But a directory that only shows:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;name
description
stars
GitHub URL
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;does not solve much.&lt;/p&gt;

&lt;p&gt;GitHub already does that.&lt;/p&gt;

&lt;p&gt;The useful questions are:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What does this plugin actually do?&lt;/p&gt;

&lt;p&gt;Is the install command still valid?&lt;/p&gt;

&lt;p&gt;Does the npm package belong to this repository?&lt;/p&gt;

&lt;p&gt;Did the plugin fail, or did the validator fail?&lt;/p&gt;

&lt;p&gt;Does installation require approval?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That is why DSH Marketplace gradually became more than a list of links.&lt;/p&gt;

&lt;p&gt;Today it indexes &lt;strong&gt;2,500+ DeepSeek Harness plugins&lt;/strong&gt;, with &lt;strong&gt;1,800+ sandbox installation checks&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can browse it here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dshmarketplace.dev" rel="noopener noreferrer"&gt;https://dshmarketplace.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fll09gsnuwvy1tpf9sgu6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fll09gsnuwvy1tpf9sgu6.png" alt=" " width="799" height="401"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The project is open source:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/DshMarketPlace" rel="noopener noreferrer"&gt;https://github.com/DshMarketPlace&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  It also works inside DSH
&lt;/h2&gt;

&lt;p&gt;The Marketplace itself is available as a DSH plugin:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;dsh plugin &lt;span class="nt"&gt;--profile&lt;/span&gt; web add dshmarketplace-plugin
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There are also:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a CLI&lt;/li&gt;
&lt;li&gt;Python SDK / CLI&lt;/li&gt;
&lt;li&gt;public API&lt;/li&gt;
&lt;li&gt;browser userscript for GitHub/npm&lt;/li&gt;
&lt;li&gt;the web marketplace&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The public API does not require a key:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="s1"&gt;'https://dshmarketplace.dev/api/v1/plugins?q=memory&amp;amp;limit=5'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The goal is to keep all of these surfaces backed by the same catalogue.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I learned
&lt;/h2&gt;

&lt;p&gt;The biggest lesson was not about Docker or npm.&lt;/p&gt;

&lt;p&gt;It was about trust.&lt;/p&gt;

&lt;p&gt;When building a software directory, it is easy to assume that metadata is truth.&lt;/p&gt;

&lt;p&gt;But:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;README files become outdated&lt;/li&gt;
&lt;li&gt;package names can be inherited&lt;/li&gt;
&lt;li&gt;registries can disagree with repositories&lt;/li&gt;
&lt;li&gt;install commands can silently install the wrong thing&lt;/li&gt;
&lt;li&gt;automated tests can generate false negatives&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At enough scale, every shortcut eventually becomes visible.&lt;/p&gt;

&lt;p&gt;So the principle I ended up with is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Trust metadata less. Verify behavior more.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;DSH Marketplace is still early, but this validation pipeline has already been much more useful than simply collecting more repositories.&lt;/p&gt;

&lt;p&gt;If you're using DeepSeek Harness, I'd be interested to know:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you currently decide whether a plugin is worth installing?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;GitHub stars? Awesome lists? Community recommendations? Or do you test them yourself?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>deepseek</category>
      <category>opensource</category>
      <category>devtool</category>
    </item>
  </channel>
</rss>
