mind-cli 0.8.0

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.7.0"
  license "MIT"

  on_macos do
    on_arm do
      url "https://github.com/jaemk/mind/releases/download/v0.7.0/mind-0.7.0-aarch64-apple-darwin.tar.gz"
      sha256 "15443ecaa1d57c96b27f3c4be4df8061b8e61503c0b58669d89a28568a71da4f"
    end
  end

  on_linux do
    on_arm do
      url "https://github.com/jaemk/mind/releases/download/v0.7.0/mind-0.7.0-aarch64-unknown-linux-gnu.tar.gz"
      sha256 "d623fd5e3f98495488a55a5ced411a3b7f961b48d30f1609a765fbd4f7330134"
    end
    on_intel do
      url "https://github.com/jaemk/mind/releases/download/v0.7.0/mind-0.7.0-x86_64-unknown-linux-gnu.tar.gz"
      sha256 "6d87cd5e40a0d0751b1edba5cadb87da78b9a83385e8e6d2b55e59cac8c580de"
    end
  end

  def install
    bin.install "mind"
  end

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