Bug Description
The README of examples/dsh-memory-plugin says the published package can be installed via:
dsh plugin --profile default add @openviking/dsh-memory-plugin
But this fails because the package @openviking/dsh-memory-plugin is not published to npm (the @openviking scope has no published packages at all).
Steps to Reproduce
- Clone the OpenViking repo (or any machine with
@deepseek-ai/dsh@0.1.0-rc.6 installed)
- Try the published-package install command from the README:
dsh plugin --profile default add @openviking/dsh-memory-plugin
- Observe failure:
npm error 404 Not Found - GET https://registry.npmjs.org/@openviking%2fdsh-memory-plugin - Not found
npm error 404 The requested resource '@openviking/dsh-memory-plugin@*' could not be found
Direct registry check also confirms:
curl https://registry.npmjs.org/@openviking%2Fdsh-memory-plugin
# → {"error":"Not found"}
Expected Behavior
Either:
- The npm package
@openviking/dsh-memory-plugin is published so the README's install command works, or
- The README marks the published-package route as "not yet published / coming soon" and only documents the source-path install method (
dsh plugin --profile default add ./examples/dsh-memory-plugin)
Environment
Note
For now, users installing from source also need to run npm ci inside examples/dsh-memory-plugin/ before dsh will boot, because the bundle imports @deepseek-ai/dsh-llm / @deepseek-ai/dsh-tools which are not resolvable from the source directory (peerDependencies are not auto-resolved when installed via link:). This might be worth documenting as well.
Context
Bug Description
The README of
examples/dsh-memory-pluginsays the published package can be installed via:But this fails because the package
@openviking/dsh-memory-pluginis not published to npm (the@openvikingscope has no published packages at all).Steps to Reproduce
@deepseek-ai/dsh@0.1.0-rc.6installed)Direct registry check also confirms:
curl https://registry.npmjs.org/@openviking%2Fdsh-memory-plugin # → {"error":"Not found"}Expected Behavior
Either:
@openviking/dsh-memory-pluginis published so the README's install command works, ordsh plugin --profile default add ./examples/dsh-memory-plugin)Environment
@deepseek-ai/dsh: 0.1.0-rc.6Note
For now, users installing from source also need to run
npm ciinsideexamples/dsh-memory-plugin/before dsh will boot, because the bundle imports@deepseek-ai/dsh-llm/@deepseek-ai/dsh-toolswhich are not resolvable from the source directory (peerDependencies are not auto-resolved when installed vialink:). This might be worth documenting as well.Context
@openviking/dsh-memory-plugin