-
Notifications
You must be signed in to change notification settings - Fork 3
v4.1.1: Missing "owner" field in marketplace.json breaks Cowork sync #9
Copy link
Copy link
Closed
Description
Problem
Cowork marketplace sync fails with: "Marketplace-Synchronisierung fehlgeschlagen – Einige Plugins in diesem Marketplace weisen Validierungsfehler auf."
Users cannot update from v4.0.3 to v4.1.1.
Root Cause
The owner field was removed from .claude-plugin/marketplace.json in v4.1.1. This field is required by the Cowork marketplace schema (see Anthropic's knowledge-work-plugins marketplace as reference).
v4.0.3 (working):
{
"name": "bettercallclaude-marketplace",
"owner": { "name": "Federico Cesconi" },
"plugins": [...]
}v4.1.1 (broken):
{
"name": "bettercallclaude-marketplace",
"plugins": [...]
}Fix
Add the owner field back to .claude-plugin/marketplace.json:
{
"name": "bettercallclaude-marketplace",
"owner": {
"name": "Federico Cesconi"
},
"plugins": [
{
"name": "bettercallclaude",
"description": "Swiss Legal Intelligence -- BGE/ATF/DTF precedent research, case strategy, legal drafting, and citation verification across all 26 Swiss cantons with Anwaltsgeheimnis privacy protection.",
"source": "./bettercallclaude"
}
]
}Environment
- Cowork Desktop App (March 2026)
- BetterCallClaude v4.0.3 installed, attempting update to v4.1.1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels