mind-cli 0.6.2

A manager for agent tooling (skills, agents, rules, tools) that melds arbitrary git repos and links items into your agent directories.
# Auto-generated by .github/workflows/release.yml on each tagged release.
# The version, urls, and sha256 values are overwritten there; do not edit by hand.
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 "cff4e043080d8f1a91b8b9ba99de2dbd72b65d2664e46c34ff709675bb5b9cef"
    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 "5fec10f8fa00bc8291116fa227349e0872cc3f6c66e0a986560a9c7e3a3b5dcc"
    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 "fca072b864bf4f0eff5420d8347bca7cb9cd7f3bfb50e210eefa101dc56d62fa"
    end
  end

  def install
    bin.install "mind"
  end

  test do
    system "#{bin}/mind", "--version"
  end
end