mind-cli 0.9.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.8.0"
  license "MIT"

  on_macos do
    on_arm do
      url "https://github.com/jaemk/mind/releases/download/v0.8.0/mind-0.8.0-aarch64-apple-darwin.tar.gz"
      sha256 "9c131f9f4eae8bbcafe99b6cd3ff8cbf8cb5240870180b4eb3fae964391a6d07"
    end
  end

  on_linux do
    on_arm do
      url "https://github.com/jaemk/mind/releases/download/v0.8.0/mind-0.8.0-aarch64-unknown-linux-gnu.tar.gz"
      sha256 "aca2e3ba1bade94659bbcdbb1bb1125ee22a8a186b66e158dafb9900f0ef1b89"
    end
    on_intel do
      url "https://github.com/jaemk/mind/releases/download/v0.8.0/mind-0.8.0-x86_64-unknown-linux-gnu.tar.gz"
      sha256 "e4e500af07adb210071d57ba487a32af4140d070a3c775a4847e9b068886241f"
    end
  end

  def install
    bin.install "mind"
  end

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