The README's install line
brew tap NeuroSkill-com/skill && brew install --cask neuroskill
can't work today, for two independent reasons:
1. The tap repo doesn't exist. brew tap NeuroSkill-com/skill fetches github.com/NeuroSkill-com/homebrew-skill (Homebrew always prepends homebrew-), which is a 404:
$ curl -s -o /dev/null -w "%{http_code}" https://github.com/NeuroSkill-com/homebrew-skill
404
The cask actually lives at Casks/neuroskill.rb inside this repo — a location brew tap never looks at.
2. The cask is 92 versions stale. Casks/neuroskill.rb pins version "0.0.37" (with its sha256), while the latest release is v0.0.129. Even if the tap existed, it would install a build from months ago.
Suggested fix
- Create the
NeuroSkill-com/homebrew-skill repo and move (or mirror) the cask there.
- Auto-bump the cask's
version + sha256 as a step in the release workflow, so it can't drift again.
One ordering note
Until a clean stable is promoted (see #55 — the shipped v0.0.129 daemon links Homebrew's libusb and aborts on machines without it), the tap would serve users that broken build. Worth sequencing the tap after the next stable.
The README's install line
can't work today, for two independent reasons:
1. The tap repo doesn't exist.
brew tap NeuroSkill-com/skillfetchesgithub.com/NeuroSkill-com/homebrew-skill(Homebrew always prependshomebrew-), which is a 404:The cask actually lives at
Casks/neuroskill.rbinside this repo — a locationbrew tapnever looks at.2. The cask is 92 versions stale.
Casks/neuroskill.rbpinsversion "0.0.37"(with its sha256), while the latest release is v0.0.129. Even if the tap existed, it would install a build from months ago.Suggested fix
NeuroSkill-com/homebrew-skillrepo and move (or mirror) the cask there.version+sha256as a step in the release workflow, so it can't drift again.One ordering note
Until a clean stable is promoted (see #55 — the shipped v0.0.129 daemon links Homebrew's libusb and aborts on machines without it), the tap would serve users that broken build. Worth sequencing the tap after the next stable.