ssot: declare the one path-scoped link policy waiver - #69
Conversation
The fleet link-policy scan renders this repo three published views and reports any URL whose host is not a WAVE publish domain. One finding stands: the npm page for @anthropic-ai/claude-agent-sdk, the optional peer dependency the SDK-server section documents. Scoped to that one package path, not to the npm host. A host-wide waiver would excuse every npm link in this repo permanently, including one added later by someone who never saw the waiver — which is the case most worth catching in a public repo. Verified: 0 unwaived with the scoped waiver; an arbitrary npm package link still BLOCKS (3 unwaived); with no waiver at all both block (6), so both were being detected. The waiver is scanner metadata, not content. All three rendered views are byte-identical before and after: README.md 11148 chars, llms.txt 9054, manifest.json 17116 — unchanged.
|
Bugbot couldn't run - usage limit reachedBugbot is counted against Cursor usage for this user or team, and this run hit a usage or spend limit. A user or team admin can review and increase usage limits in the Cursor dashboard. (requestId: serverGenReqId_d4496932-bae3-442b-937d-1da95587dc81) |
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 55 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: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
Comment |
Declares the single link-policy waiver this repo needs, scoped to one package path rather than to the whole npm host.
What the scan reports today
A fleet-wide link policy check renders this repo's three published views —
README.md,llms.txt,manifest.json— and reports any URL whose host is not a WAVE publish domain. One finding stands, in all three views:That is the optional peer dependency the SDK-server section documents. It is a legitimate link, so it gets a reasoned exception rather than a removal.
Why the waiver is path-scoped
The obvious form — waive the host
www.npmjs.com— would excuse every npm link in this repo, permanently, including one added years from now by someone who never saw the waiver. On a public repo that turns off the check in exactly the place it earns its keep: a dependency-links block that gets appended to over time.So the waiver names the package path:
{ "host": "www.npmjs.com", "pathPrefix": "/package/@anthropic-ai/claude-agent-sdk", "reason": "The optional peer dependency documented in the SDK-server section. …" }Path matching is on a segment boundary, not a bare string prefix, so a look-alike path under a different owner is not covered.
Receipts
Run through the scanner's own scan/count functions:
The second row is the point of the change, and the fourth is what makes the second meaningful — without it, "0 unwaived" could just mean nothing was being found.
Nothing new reaches a published byte
The waiver is scanner metadata, not content. No renderer reads it. All three published views are byte-identical before and after:
So this PR changes what the checker permits, and changes nothing a reader of this package ever sees.
Need help on this PR? Tag
@codesmith-botwith what you need. Autofix is enabled.Note
Low Risk
Metadata-only change to WAVE repo config; no runtime, auth, or published documentation bytes affected.
Overview
Adds a
policyWaiversentry in.wave/repo.jsonso the fleet link-policy scan can allow the documented optional peer dependency URL (www.npmjs.com/package/@anthropic-ai/claude-agent-sdk) without waiving all npm links.The waiver is path-scoped (
pathPrefixon that package path) rather than host-wide, so other third-party npm URLs in published views still fail the check. This is scanner metadata only; it does not change renderedREADME.md,llms.txt, ormanifest.jsonoutput.Reviewed by Cursor Bugbot for commit a8dcf88. Configure here.
Summary by cubic
Adds a path‑scoped link-policy waiver in
.wave/repo.jsonforhttps://www.npmjs.com/package/@anthropic-ai/claude-agent-sdk, allowing the documented optional peer dependency link. Other npm links remain blocked; no published files change.Written for commit a8dcf88. Summary will update on new commits.