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