Scoop manifest
Agent Skills
npx -y skills add woyxiang/skills --skill scoop-manifestAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create Scoop application manifests for Windows. Use when: (1) user asks to create a scoop manifest, bucket JSON, or app manifest, (2) user wants to package a CLI tool for scoop, (3) user mentions scoop bucket, (4) user asks how to add an app to scoop
SKILL.md
1.9 KB, as published. Nobody here has run it
Scoop Manifest
Create JSON manifests for the Scoop Windows package manager.
Detection
Triggers: "scoop manifest", "bucket JSON", "app manifest", "create manifest for", "add to scoop", "scoop package"
File patterns: bucket/*.json in Scoop bucket repos
Keywords: scoop, manifest, bucket, checkver, autoupdate
Routing
| When you need to... | Read |
|---|---|
| Understand the manifest schema (all fields) | manifest-schema.md |
| Set up version detection and auto-update | autoupdate.md |
| Add install/uninstall scripts or persist data | install-scripts.md |
| Follow the step-by-step workflow to create a manifest | workflow.md |
| See real manifest patterns from the Main bucket | examples.md |
Workflow Summary
- Search — Find the GitHub repo, identify the latest release
- Inspect — Check release assets for Windows binaries, note naming convention
- Analyze — Download zip, find
binpath andextract_dir - Build — Fill fields per manifest-schema.md, pick pattern from examples.md
- Autoupdate — Set
checkver+autoupdateper autoupdate.md - Validate — JSON syntax + structural consistency
Dependencies
- curl or gh(use api to find GitHub repos and release pages)
- Web search (to find app's home page)
- JSON validation (
node -e "require('./file.json')"or similar)
Source
Manifest schema and autoupdate docs adapted from the Scoop Wiki.