mind-cli 0.10.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.9.0"
  license "MIT"

  on_macos do
    on_arm do
      url "https://github.com/jaemk/mind/releases/download/v0.9.0/mind-0.9.0-aarch64-apple-darwin.tar.gz"
      sha256 "e7d4dc42f0024016ce8dd0020541e61693c6720ea130c89c985113f92abcb758"
    end
  end

  on_linux do
    on_arm do
      url "https://github.com/jaemk/mind/releases/download/v0.9.0/mind-0.9.0-aarch64-unknown-linux-gnu.tar.gz"
      sha256 "f9e583e9fddf36fca74919534bc891d41f36d8c1bd71a3e5fc462878b2c85935"
    end
    on_intel do
      url "https://github.com/jaemk/mind/releases/download/v0.9.0/mind-0.9.0-x86_64-unknown-linux-gnu.tar.gz"
      sha256 "56c5fb5a334d5cca32fb5d10fb14acdf14b4f066825cae18224821036dc3a573"
    end
  end

  def install
    bin.install "mind"
  end

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