Official Homebrew tap for SAM (Synthetic Autonomic Mind) projects including CLIO and other AI development tools.
brew tap SyntheticAutonomicMind/homebrew# Install CLIO (Command Line Intelligence Orchestrator)
brew install clio
# Future tools
# brew install sambrew upgrade clio
# or update all SAM tools
brew upgrade| Tool | Purpose | Version |
|---|---|---|
| CLIO | Terminal-native AI coding assistant | 20260210.1 |
# Start a new session
clio --new
# Resume last session
clio --resume
# Or run a single command
clio --input "Your task here" --exit- Terminal-first experience with real markdown rendering
- File operations, git integration, terminal execution
- Memory system and persistent sessions
- Multiple AI backend support (GitHub Copilot, OpenAI, etc.)
- Privacy-first: code stays on your machine
- Zero external dependencies (Perl only)
More info: https://github.com/SyntheticAutonomicMind/CLIO
brew link cliobrew upgrade cliorm -rf ~/.clioTo add new SAM tools to this tap:
- Create
Formula/toolname.rbin this repository - Test locally:
brew install -s ./Formula/toolname.rb - Submit PR with:
- Formula file
- Tests included
- Documentation updated
-
Create
Formula/toolname.rb:class Toolname < Formula desc "Description" homepage "https://github.com/SyntheticAutonomicMind/toolname" url "https://github.com/SyntheticAutonomicMind/toolname/releases/download/VERSION/toolname-VERSION.tar.gz" sha256 "HASH_HERE" def install libexec.install Dir["*"] bin.install_symlink libexec/"toolname" end test do assert_match "version", shell_output("#{bin}/toolname --version") end end
-
Test the formula:
brew install -s ./Formula/toolname.rb brew test toolname -
Commit and push
The GitHub Action (.github/workflows/update-formula-on-release.yml) automatically updates formulas when releases are published.
To manually update:
- Edit
Formula/toolname.rb - Update
urlwith new release URL - Update
sha256with new hash (useshasum -a 256 file.tar.gz) - Test:
brew upgrade toolname - Commit with message:
chore(clio): update to VERSION
Each tool maintains its own license. See individual repositories for details.
Repository: https://github.com/SyntheticAutonomicMind/homebrew
Maintained by: SyntheticAutonomicMind
Last updated: 2026-02-01