dsh-plugin-shop 0.8.0-beta.3 → 0.8.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.js +12 -3
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -4703,14 +4703,23 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4703
4703
|
* package that presents its own catalog of dsh plugins inside the Harness:
|
|
4704
4704
|
* `dsh-plugin` is the npm package of github.com/dshplugin/dsh-plugin-hub,
|
|
4705
4705
|
* `dsh-plugin-hub` and `@lanbaolu/dsh-plugin-hub` are app-store packages,
|
|
4706
|
-
*
|
|
4707
|
-
* query tools
|
|
4706
|
+
* `@mutocenew/dsh-plugin-catalog` ships a plugin directory with agent
|
|
4707
|
+
* query tools, and `@dsheval/dsh-top100-plugin` is dsheval.ai's rankings
|
|
4708
|
+
* market: "Discover, install and manage DSH-Eval Top100 plugins and Skills
|
|
4709
|
+
* in DeepSeek Harness", a Settings panel its own README heads "plugin
|
|
4710
|
+
* market" and which installs, updates and uninstalls from that index.
|
|
4711
|
+
*
|
|
4712
|
+
* A market can be named after anything, so this list only ever grows by
|
|
4713
|
+
* someone reading a package: a ranking, a leaderboard, a digest and an
|
|
4714
|
+
* index are all shopfronts, and none of those words is a store keyword.
|
|
4715
|
+
* Exact names only — nothing here is a pattern.
|
|
4708
4716
|
*/
|
|
4709
4717
|
const SHOP_LIKE_NAMES = [
|
|
4710
4718
|
"dsh-plugin",
|
|
4711
4719
|
"dsh-plugin-hub",
|
|
4712
4720
|
"@lanbaolu/dsh-plugin-hub",
|
|
4713
|
-
"@mutocenew/dsh-plugin-catalog"
|
|
4721
|
+
"@mutocenew/dsh-plugin-catalog",
|
|
4722
|
+
"@dsheval/dsh-top100-plugin"
|
|
4714
4723
|
];
|
|
4715
4724
|
/**
|
|
4716
4725
|
* Whether a package name reads as a plugin shop (a marketplace for dsh
|
package/package.json
CHANGED