Problem
No first-class way to install the fallout CLI (the .NET global tool Fallout.GlobalTools, command fallout — src/Fallout.Cli) on macOS. The tap (Fallout-build/homebrew-fallout) exists with a scaffolded fallout formula, but it's on placeholders with no anonymous source to install from (#482). This is the CLI counterpart to the agent story #122.
Outcome
brew tap Fallout-build/fallout && brew install fallout installs the CLI on arm64 macOS with no auth and brew-managed upgrades. Formula installs via depends_on "dotnet" + dotnet tool install (not a self-contained binary).
Acceptance criteria
Notes
Problem
No first-class way to install the
falloutCLI (the .NET global toolFallout.GlobalTools, commandfallout—src/Fallout.Cli) on macOS. The tap (Fallout-build/homebrew-fallout) exists with a scaffoldedfalloutformula, but it's on placeholders with no anonymous source to install from (#482). This is the CLI counterpart to the agent story #122.Outcome
brew tap Fallout-build/fallout && brew install falloutinstalls the CLI on arm64 macOS with no auth and brew-managed upgrades. Formula installs viadepends_on "dotnet"+dotnet tool install(not a self-contained binary).Acceptance criteria
Formula/fallout.rbuses a realurl+sha256;brew install falloutsucceeds on arm64 macOS (net10.0 tool on breweddotnet).Notes