Skip to content

v4.1.1: Missing "owner" field in marketplace.json breaks Cowork sync #9

@davidepasseri-jpg

Description

@davidepasseri-jpg

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions