From DSG Governance Control Plane
Fixes the two remaining marketplace launch blockers for a DSG Governance Control Plane plugin: edits a premature README claim and verifies the OAuth authorization-server endpoint after Vercel deploy.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dsg-governance:dsg-marketplace-fixThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Closes the remaining marketplace-launch blockers after `owner` was merged into
Closes the remaining marketplace-launch blockers after owner was merged into
.claude-plugin/marketplace.json (commit b08d3fc).
| Item | File | Status |
|---|---|---|
owner object | .claude-plugin/marketplace.json (lines 6-9) | ✅ Done — on main |
| Premature README claim | .claude-plugin/README.md (lines 12-13) | ❌ Still needs edit |
| OAuth endpoint live | production /.well-known/oauth-authorization-server | ⚠️ Verify after deploy |
Replace lines 12-13 of .claude-plugin/README.md:
Before:
### Claude.ai
Visit the Claude Code plugin marketplace and search for "DSG Governance Control Plane"
After:
### Claude.ai
Marketplace listing coming soon. For now, add the marketplace directly via the Claude Code CLI command above.
vercel --prod
curl -s https://tdealer01-crypto-dsg-control-plane.vercel.app/.well-known/oauth-authorization-server \
| python3 -m json.tool
Expected: HTTP 200 with authorization-server metadata (issuer, authorization_endpoint, token_endpoint, revocation_endpoint). If 404 → clear Vercel build cache and redeploy.
README.md lines 12-13 = "coming soon" copycurl returns 200 JSON (not 404)claude plugin add https://github.com/tdealer01-crypto/tdealer01-crypto-dsg-control-plane loads dsg-governancegit add .claude-plugin/README.md && git commit -m "fix: soften README marketplace claim" && git push origin mainvercel --prod (wait 2-3 min for build)curl returns 200 JSON with authorization_endpoint, not 404claude plugin marketplace add https://github.com/tdealer01-crypto/tdealer01-crypto-dsg-control-plane succeedsOnce all checks pass:
claude plugin addnpx claudepluginhub tdealer01-crypto/tdealer01-crypto-dsg-control-plane --plugin dsg-governanceGuides creation, validation, and management of Claude Code plugin marketplaces. Use when setting up marketplace.json, validating schema, or distributing plugins.
Create and configure Claude Code marketplaces and plugins. Use when the user wants to create a marketplace, publish plugins, set up team plugin distribution, or configure marketplace.json or plugin.json files. Triggers: create marketplace, publish plugin, plugin distribution, marketplace.json, plugin.json, team plugins, share plugins
Converts any Claude Code skills repository into an official plugin marketplace by generating marketplace.json, validating with `claude plugin validate`, testing installation, and PRing upstream.