class Mind < Formula
desc "Manager for agent tooling: skills, agents, and rules"
homepage "https://github.com/jaemk/mind"
version "0.10.0"
license "MIT"
on_macos do
on_arm do
url "https://github.com/jaemk/mind/releases/download/v0.10.0/mind-0.10.0-aarch64-apple-darwin.tar.gz"
sha256 "e17541dddc096d47b0afbfa22e2a589f008bf2e1f9174f801ed5d16eed0f4b33"
end
end
on_linux do
on_arm do
url "https://github.com/jaemk/mind/releases/download/v0.10.0/mind-0.10.0-aarch64-unknown-linux-gnu.tar.gz"
sha256 "798c0ea4965146004b7a52a56258c096a8c315f16f190d239363204e3b8cdf65"
end
on_intel do
url "https://github.com/jaemk/mind/releases/download/v0.10.0/mind-0.10.0-x86_64-unknown-linux-gnu.tar.gz"
sha256 "a50cea79765a17cb42665bb4336aeac7e0f59439fb43a7d7c6e8b57f76591a1c"
end
end
def install
bin.install "mind"
end
test do
system "#{bin}/mind", "--version"
end
end