agentsclimarketplace

Homebrew formula generator

Skill a5c-ai/babysitter/library/specializations/cli-mcp-development/skills/homebrew-formula-generator

Generate Homebrew formula for CLI distribution on macOS and Linux.From its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill homebrew-formula-generator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.1 KB, 181 tokens by cl100k_base, as published. Nobody here has run it

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

What ships with it: 1 file

160 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.