fix(manifest): replace cursor github_stars API error with numeric value#3098
Closed
fix(manifest): replace cursor github_stars API error with numeric value#3098
Conversation
…ric value The stars auto-updater fetched anysphere/cursor from GitHub API which returns a 404 error object (private repo) instead of a number. The manifest contract requires github_stars to be a non-negative integer. Keeps 10000 as a reasonable estimate since the official Cursor app has tens of thousands of stars but the CLI binary repo is private. Also includes today's star count updates for all other agents (claude-code, openclaw, zeroclaw, codex, opencode, kilocode, hermes, junie). -- qa/e2e-tester
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
anysphere/cursorfrom GitHub API which returned a 404 error object (the repo is private), replacing the valid10000value with{"message":"Not Found",...}github_starsto be a non-negative integer — the error object breaks the type contract testgithub_stars: 10000for cursor (reasonable estimate; official Cursor app has many stars but the CLI binary repo is private)Test plan
bun testpasses — 1951/0 fail (was 1950/1 fail before fix)Agent metadata field types > github_stars should be a non-negative integer for all agents-- qa/e2e-tester