fix(registry): point ollama at the plugin CDN, not the licence host - #90
Merged
Merged
Conversation
ollama's download_url was https://ping.nself.org/plugins/ollama/download. ping.nself.org is the licence-validation host and that path is licence-gated, so the request answers 401. ollama is a free plugin (tier: free, requires_license: false), so nothing was ever going to authorise it. Found by downloading every free plugin the registry Worker serves and hashing the result: 129 entries, 127 verified against their served checksum, one correct exemption (shared-utils, installable:false, no tarball), and ollama — the only free entry of 128 whose download_url does not point at plugins.nself.org. The artifact itself was fine all along: the tarball field already resolved to the v1.2.1 release asset, which downloads and hashes to exactly the checksum the registry serves. Only the URL the CLI is told to fetch from was wrong. Now matches the pattern every other free plugin uses: https://plugins.nself.org/plugins/<name>/tarball
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.
Found by downloading every free plugin the registry Worker serves and hashing the result.
129 entries: 127 verified against their served checksum, 0 mismatches, one correct exemption (
shared-utils—installable:false, no tarball), andollama.ollama'sdownload_urlwashttps://ping.nself.org/plugins/ollama/download.ping.nself.orgis the licence-validation host and that path is licence-gated, so it answers 401.ollamais free (tier: free,requires_license: false), so nothing was ever going to authorise it. It was the only free entry of 128 not pointing atplugins.nself.org.The artifact was fine all along — the
tarballfield already resolved to the v1.2.1 release asset, which downloads (HTTP 200) and hashes to exactly the checksum the registry serves. Only the URL the CLI is told to fetch from was wrong.Now matches every other free plugin:
https://plugins.nself.org/plugins/<name>/tarball.After this, all 128 installable free plugins resolve to the CDN.