A Homebrew tap for CLI tools and macOS apps by MrDemonWolf, Inc.
brew tap mrdemonwolf/den
brew install <formula> # CLI tools
brew install --cask <name> # macOS apps| Formula | Version | Stability | Description |
|---|---|---|---|
iconwolf |
0.0.6 | Alpha | Cross-platform app icon generator for Expo/React Native projects |
| Cask | Description |
|---|---|
wolfwave |
macOS menu bar app that bridges Apple Music with Twitch, Discord, and stream overlays |
Browse the full documentation at mrdemonwolf.github.io/homebrew-den.
The site auto-rebuilds on every push to main and includes:
- Dark/light theme with system preference detection
- Cmd+K / Ctrl+K search palette for quick package lookup
- Per-formula detail pages with install commands, metadata, caveats, and version history
- Stability badges (Alpha, Beta, RC, Pre-release) based on semver and GitHub Releases
To build locally:
npm install # Install dependencies (first time only)
bash scripts/build-site.sh
open _site/index.htmlCreate a file at Casks/<name>.rb using this template:
cask "<name>" do
version "<version>"
sha256 "<sha256>"
url "https://github.com/<owner>/<repo>/releases/download/v#{version}/<name>-#{version}.dmg"
name "<App Name>"
desc "<Short description>"
homepage "https://github.com/<owner>/<repo>"
app "<App Name>.app"
endGenerate the SHA-256 checksum:
shasum -a 256 <name>-<version>.dmgTest the cask locally before pushing:
brew install --cask Casks/<name>.rbTests run automatically on every push and PR via CI. To run locally:
npm install
npm testMIT — © 2026 MrDemonWolf, Inc.