From string-concatenation to a real DSH bundle: one link, six verified plugins A developer at DeepSeek Harness (DSH) replaced a fragile shell-command chain for bundling six plugins with a native profile-based approach, after discovering the original string concatenation had a URL bug causing all installs to fail. The new solution uses a single tarball with a profile manifest, resolving dependency issues and passing a Docker-based acceptance test. Every plugin store ends up doing the same thing eventually: bundling. "Install these six together." The naive implementation is a shell-command chain — six dsh plugin add calls joined by && . I shipped exactly that. Then someone pointed out it was not a bundle at all; it was a very long string. And the string had a bug in it: the URLs contained a double slash, so every single one of the six installs 404'd. The "one-click bundle" was, in fact, a one-click failure. The lesson was old: if you ship a command, test the command. But the deeper lesson was newer: read the platform's own docs before designing your own format. DeepSeek Harness DSH has a precise vocabulary: dsh.bundle with a cordis.patch.yml layer. The patch rows reference packages by name, resolved through the profile's node modules. $DSH HOME/profiles/