Agent Skills: Homebrew Formula Generator

Generate Homebrew formula for CLI distribution on macOS and Linux.

UncategorizedID: a5c-ai/babysitter/homebrew-formula-generator

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/plugins/babysitter/skills/babysit/process/specializations/cli-mcp-development/skills/homebrew-formula-generator

Skill Files

Browse the full folder contents for homebrew-formula-generator.

Download Skill

Loading file tree…

plugins/babysitter/skills/babysit/process/specializations/cli-mcp-development/skills/homebrew-formula-generator/SKILL.md

Skill Metadata

Name
homebrew-formula-generator
Description
Generate Homebrew formula for CLI distribution on macOS and Linux.

Homebrew Formula Generator

Generate Homebrew formula for CLI distribution.

Generated Patterns

class Myapp < Formula
  desc "My CLI application"
  homepage "https://github.com/myuser/myapp"
  url "https://github.com/myuser/myapp/releases/download/v1.0.0/myapp-1.0.0.tar.gz"
  sha256 "abc123..."
  license "MIT"

  depends_on "node" => :build

  def install
    system "npm", "install", *std_npm_args
    bin.install_symlink Dir["#{libexec}/bin/*"]
  end

  test do
    assert_match "myapp v#{version}", shell_output("#{bin}/myapp --version")
  end
end

Target Processes

  • package-manager-publishing
  • cli-binary-distribution