# homebrew-agentbay **Repository Path**: mirrors_aliyun/homebrew-agentbay ## Basic Information - **Project Name**: homebrew-agentbay - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-22 - **Last Updated**: 2025-11-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Agentbay Cloud Homebrew Tap This is the official Homebrew tap for Agentbay Cloud, providing a convenient way to install the Agentbay command-line tool. ## Quick Installation ### Install via Tap (Recommended) ```bash # 1. Add Agentbay Cloud's Homebrew tap brew tap aliyun/agentbay # 2. Install agentbay command-line tool brew install agentbay # 3. Verify installation agentbay version ``` ## Usage After installation, you can use the following commands: ```bash # Check version information agentbay version # View help information agentbay --help # Use Agentbay commands agentbay [command] [options] ``` ## Update and Uninstall ### Update to Latest Version ```bash # update only agentbay brew upgrade agentbay ``` ### Uninstall ```bash # Uninstall agentbay brew uninstall agentbay # Remove tap (optional) brew untap aliyun/agentbay ``` ## Project Information - **Project Homepage**: https://github.com/aliyun/agentbay-cli - **Current Version**: v$VERSION - **License**: MIT - **Description**: Secure infrastructure for running AI-generated code ## Troubleshooting ### Common Issues 1. **Installation Failed** ```bash # Update Homebrew brew update # Clean cache brew cleanup # Reinstall brew reinstall agentbay ``` 2. **Network Issues (Especially for Chinese Users)** The Formula has been configured with Chinese mirror sources. If you still have issues: ```bash # Set Go proxy export GOPROXY=https://goproxy.cn,direct export GOSUMDB=sum.golang.google.cn # Reinstall brew reinstall agentbay ``` 3. **Permission Issues** ```bash # Fix Homebrew permissions sudo chown -R $(whoami) $(brew --prefix)/* ``` ## Developer Information ### Formula File Description `Formula/agentbay.rb` contains: - **Build Dependencies**: Go language environment - **Network Optimization**: Configured with Chinese mirror sources to improve download speed - **Version Information**: Automatically injects version number, Git commit, and build time - **Test Cases**: Validates installation and basic functionality ## Support If you encounter issues: - Check [Issues](https://github.com/aliyun/homebrew-agentbay/issues) - Create a new Issue to report problems - View [Agentbay CLI Project](https://github.com/aliyun/agentbay-cli) ## Related Links - [Homebrew Official Website](https://brew.sh/) - [Agentbay CLI Project](https://github.com/aliyun/agentbay-cli) - [Homebrew Tap Documentation](https://docs.brew.sh/Taps)