-
Notifications
You must be signed in to change notification settings - Fork 1.6k
claude: Add version 0.14.10 #16950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zeldrisho
wants to merge
1
commit into
ScoopInstaller:master
Choose a base branch
from
zeldrisho:claude
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+38
−0
Open
claude: Add version 0.14.10 #16950
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| { | ||
| "version": "0.14.10", | ||
| "description": "A next generation AI assistant built by Anthropic", | ||
| "homepage": "https://claude.ai", | ||
| "license": "Proprietary", | ||
| "architecture": { | ||
| "64bit": { | ||
| "url": "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-x64/AnthropicClaude-0.14.10-full.nupkg", | ||
| "hash": "0be53c645f8f7fb08ea8fe66bc8833f5af4ad3c78482a25b5f4a3e90f90683fc" | ||
| }, | ||
| "arm64": { | ||
| "url": "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-arm64/AnthropicClaude-0.14.10-full.nupkg", | ||
| "hash": "82733b0b6ef2e2f8d22a499b23ee7642b45d5ea7a69b84799827bb62a1fb60a3" | ||
| } | ||
| }, | ||
| "extract_dir": "lib\\net45", | ||
| "shortcuts": [ | ||
| [ | ||
| "claude.exe", | ||
| "Claude" | ||
| ] | ||
| ], | ||
| "checkver": { | ||
| "url": "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-x64/RELEASES", | ||
| "regex": "([\\d.]+)-full", | ||
| "reverse": true | ||
| }, | ||
| "autoupdate": { | ||
| "architecture": { | ||
| "64bit": { | ||
| "url": "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-x64/AnthropicClaude-$version-full.nupkg" | ||
| }, | ||
| "arm64": { | ||
| "url": "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-arm64/AnthropicClaude-$version-full.nupkg" | ||
| } | ||
| } | ||
| } | ||
| } | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: ScoopInstaller/Extras
Length of output: 4567
🌐 Web query:
Claude Anthropic distribution Windows nupkg hash verification Scoop package manager💡 Result:
Short answer — yes. Recommended workflow and commands:
Obtain the official Claude Windows nupkg from Anthropic (their downloads/docs). [1]
Compute the SHA256 of the downloaded .nupkg (PowerShell):
Get-FileHash .\claude-.nupkg -Algorithm SHA256
Copy the Hash value. [4]
Create a Scoop manifest including that SHA256 in the "hash" field (Scoop uses SHA256 by default). Example minimal manifest:
{
"version": "x.y.z",
"url": "https://.../claude-x.y.z.nupkg",
"hash": "012345... (sha256)",
"bin": "claude.exe"
}
Scoop will verify the downloaded file against that hash on install. [2][3]
(Optional) For autoupdate, use scoop's autoupdate.hash options to extract published hashes or let Scoop download+hash when building the manifest. [3]
Sources: Anthropic downloads/docs; Scoop app-manifest and autoupdate docs; PowerShell Get-FileHash. [1][2][3][4]
References:
[1] Anthropic Claude downloads/docs. (support.anthropic.com)
[2] Scoop App Manifests (hash field). (github.com)
[3] Scoop App Manifest Autoupdate (autoupdate.hash modes). (github.com)
[4] Get-FileHash (PowerShell) usage (SHA256). (pdq.com)
If you want, I can generate a complete manifest for a specific Claude nupkg URL + hash — paste the URL or the .nupkg hash.
Citations:
Add hash extraction to the autoupdate block.
The RELEASES file is available and contains SHA1 hashes for all versions. Hash extraction can be configured to automatically extract these hashes during autoupdate, enabling file integrity verification and reducing manual maintenance.
For each architecture, add hash extraction from the RELEASES file:
Recommended hash extraction configuration
🤖 Prompt for AI Agents