From f910d9e53d4abb2f4682d033cb75711c691f0fcb Mon Sep 17 00:00:00 2001 From: Chetan Kapoor Date: Thu, 9 Apr 2026 10:51:38 +0200 Subject: [PATCH 1/3] feat: add Homebrew Cask definition for brew install support Co-Authored-By: Claude Sonnet 4.6 --- Casks/lil-agents.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Casks/lil-agents.rb diff --git a/Casks/lil-agents.rb b/Casks/lil-agents.rb new file mode 100644 index 0000000..fd8f4f0 --- /dev/null +++ b/Casks/lil-agents.rb @@ -0,0 +1,19 @@ +cask "lil-agents" do + version "1.2.2" + sha256 "a4cf7d9955ffb3881c6050505a9aedd91dd553952dc3e53aa00e4eb52485ea95" + + url "https://github.com/ryanstephen/lil-agents/releases/download/v#{version}/LilAgents-v#{version}.zip", + verified: "github.com/ryanstephen/lil-agents/" + name "lil agents" + desc "Tiny AI companions that live on your macOS dock" + homepage "https://lilagents.xyz" + + depends_on macos: ">= :sonoma" + + app "lil agents.app" + + zap trash: [ + "~/Library/Preferences/xyz.lilagents.LilAgents.plist", + "~/Library/Caches/xyz.lilagents.LilAgents", + ] +end From 07941a318ce7bf54c45989809e4b93f94d3836d5 Mon Sep 17 00:00:00 2001 From: Chetan Kapoor Date: Thu, 9 Apr 2026 10:52:44 +0200 Subject: [PATCH 2/3] docs: add Homebrew installation instructions to README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 7b996d8..fb8eb2b 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,19 @@ Supports **Claude Code**, **OpenAI Codex**, **GitHub Copilot**, and **Google Gem **[Download for macOS](https://lilagents.xyz)** ยท [Website](https://lilagents.xyz) +## install + +### Homebrew (recommended) + +```bash +brew tap ryanstephen/lil-agents +brew install --cask lil-agents +``` + +### Direct download + +Download the latest release from [lilagents.xyz](https://lilagents.xyz). + ## features - Animated characters rendered from transparent HEVC video From 385e79593e4499fea05047d4e45ed8e16ba0a00b Mon Sep 17 00:00:00 2001 From: Chetan Kapoor Date: Thu, 9 Apr 2026 10:53:49 +0200 Subject: [PATCH 3/3] feat: add official homebrew-cask submission reference file --- homebrew/lil-agents.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 homebrew/lil-agents.rb diff --git a/homebrew/lil-agents.rb b/homebrew/lil-agents.rb new file mode 100644 index 0000000..fd8f4f0 --- /dev/null +++ b/homebrew/lil-agents.rb @@ -0,0 +1,19 @@ +cask "lil-agents" do + version "1.2.2" + sha256 "a4cf7d9955ffb3881c6050505a9aedd91dd553952dc3e53aa00e4eb52485ea95" + + url "https://github.com/ryanstephen/lil-agents/releases/download/v#{version}/LilAgents-v#{version}.zip", + verified: "github.com/ryanstephen/lil-agents/" + name "lil agents" + desc "Tiny AI companions that live on your macOS dock" + homepage "https://lilagents.xyz" + + depends_on macos: ">= :sonoma" + + app "lil agents.app" + + zap trash: [ + "~/Library/Preferences/xyz.lilagents.LilAgents.plist", + "~/Library/Caches/xyz.lilagents.LilAgents", + ] +end