-
-
Notifications
You must be signed in to change notification settings - Fork 69k
@openclaw/nextcloud-talk npm package contains unresolved workspace dependency #8145
Copy link
Copy link
Closed
Description
Bug Description
The @openclaw/nextcloud-talk npm package (version 2026.2.1) cannot be installed due to an unresolved workspace:* dependency in its package.json.
Error Message
npm error code EUNSUPPORTEDPROTOCOL
npm error Unsupported URL Type "workspace:": workspace:*
Root Cause
The published package.json contains:
{
"devDependencies": {
"openclaw": "workspace:*"
}
}The workspace:* protocol is only valid within a monorepo development environment. When publishing to npm, this should be replaced with an actual version number (e.g., "^2026.2.1") or moved to peerDependencies.
Steps to Reproduce
- Run
openclaw plugins install @openclaw/nextcloud-talk - The installation fails with
EUNSUPPORTEDPROTOCOLerror - Navigate to
~/.openclaw/extensions/nextcloud-talk/ - Run
npm install- same error occurs
Expected Behavior
The npm package should install successfully without workspace protocol errors.
Environment
- OpenClaw version: 2026.2.1
- OS: Ubuntu 24.04.3 LTS
- Node.js: (bundled with OpenClaw)
Suggested Fix
Update the publish/packaging script to:
- Replace
workspace:*with the actual OpenClaw version being published - OR move
openclawtopeerDependenciesif it's meant to be provided by the host
Related
This likely affects other plugins published from the monorepo that use workspace:* dependencies.
Thank you for the great work on OpenClaw! Let me know if you need any additional information.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Fields
Give feedbackNo fields configured for issues without a type.