docs(ci): record the read:org gotcha for manual registry publishing - #360
Conversation
Publishing the first registry entry by hand failed twice with a 403 naming io.github.bomly-guy/* instead of io.github.bomly-dev/*. The interactive `mcp-publisher login github` flow does not request the read:org scope, so the registry cannot read the publisher's org role and falls back to the personal namespace. The 403 suggests making org membership public. That is a red herring — membership was made public and a freshly minted token still carried only the personal namespace. Passing a token that has read:org (the gh CLI's own token does) grants both namespaces immediately. io.github.bomly-dev/bomly-cli 0.21.1 is now live in the registry. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Bomly Diff SummaryCompared Overview
Dependency Changes✅ No dependency changes. Vulnerabilities✅ No vulnerability changes. License Changes✅ No license changes. Project Posture✅ No project posture changes ( Policy Findings✅ No policy differences were identified. |
|
Warning Review limit reached
Next review available in: 35 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
io.github.bomly-dev/bomly-cli0.21.1 is now live in the official MCP Registry. This documents the one thing that cost time getting there.Publishing the first entry by hand failed twice with:
That suggestion is a red herring. Membership was made public, a fresh token was minted afterwards, and it still carried only
io.github.bomly-guy/*.The real cause: the interactive
mcp-publisher login githubflow does not request theread:orgscope, so the registry cannot read the publisher's organization role and falls back to the personal namespace. Passing a token that hasread:orgfixes it immediately — and theghCLI's own token already carries it:mcp-publisher login github --token "$(gh auth token)"Token claims before and after:
Adds a short "Publishing the registry entry by hand" section to
dev-docs/CI.mdso the next person does not re-derive this. Does not touch the CI path, which uses OIDC and is unaffected.🤖 Generated with Claude Code