[Bug] dsh 0.1.0-rc.8 is not installable from npm: missing dsh-agent-loop@^0.1.0-rc.8 #3461
Replies: 3 comments
|
Thanks for the detailed report — reproduced and root-caused against the registry. Verified facts:
Most likely cause of the ETARGET: stale npm cache from the publish-propagation window. rc.8 shipped 2026-08-19 ~15:37 UTC; if your npm cache fetched the Unblock: npm cache clean --force
npx -y @deepseek-ai/dsh@0.1.0-rc.8 --versionDrop Observation for maintainers (optional): since |
|
Confirmed the package is currently visible on the official registry, including its tarball integrity. One operational refinement: preserve the configured-registry and cached-packument evidence before using a broad probe_cache="$(mktemp -d)"
npx -y --cache "$probe_cache" \
--registry=https://registry.npmjs.org/ \
@deepseek-ai/dsh@0.1.0-rc.8 --versionIf that succeeds while the configured registry fails, the owner is the mirror/proxy replication path—not the published release. Also, Full registry/cache decision table, PowerShell probe, CI cache guidance, and coordinated-release gates: https://sandbaseai.github.io/deepseek-harness-handbook/npm-etarget-rc8.html Canonical guide: https://github.com/sandbaseai/deepseek-harness-handbook/blob/main/docs/en/troubleshooting/npm-etarget-rc8.md |
|
是不是用的镜像源,镜像源还没有更新到最新版本 |
Uh oh!
There was an error while loading. Please reload this page.
Environment
Reproduction
The command stalls for a long time during npm's
idealTreedependency resolution.Running the same command with peer dependency resolution disabled exposes the underlying error:
Result:
As a control, rc.7 works normally in the same environment:
Result:
It looks like the rc.8 npm release may be missing
@deepseek-ai/dsh-agent-loop@0.1.0-rc.8or another package in the rc.8 release set.All reactions