This repository contains Homebrew formulae for installing various command-line tools developed by az5app, including OCR tools, VS Code extensions, and AI data management utilities.
brew tap az5app/tapAn OCR (Optical Character Recognition) command-line tool built with Swift:
brew install swift-ocrA Go CLI tool for VS Code Copilot extension modifications:
brew install vs-active-claudeAIHub Korea API command-line interface for downloading AI datasets:
brew install aihubshellFor AIHub Shell, you'll need to set your API key:
export AIHUB_APIKEY="your-api-key-here"For instructions on how to verify the integrity of the downloaded binaries by checking their SHA-256 checksums, see: Verify Checksum Guide
To update the tap repository to get the latest formulae:
cd "$(brew --repo az5app/tap)"
git pull --rebase
cd -Or if you want the latest development version (available for swift-ocr and vs-active-claude):
brew install --HEAD <formula-name>| Package | Description | Version | Platforms | License |
|---|---|---|---|---|
| swift-ocr | OCR CLI tool built with Swift | 1.0.0 | Intel & Apple Silicon | Apache-2.0 |
| vs-active-claude | VS Code Copilot extension modifier | 1.0.0 | macOS (Intel & Apple Silicon), Linux (Intel & ARM) | Apache-2.0 |
| aihubshell | AIHub Korea API CLI for AI datasets | 0.5 | All platforms (requires bash & curl) | MIT |
This Homebrew tap is licensed under the Apache License 2.0. See the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
If you encounter a SHA256 mismatch error for any formula:
Error: <formula-name>: SHA256 mismatch
Expected: <expected-hash>
Actual: <actual-hash>
This typically happens when the binary has been updated without changing the version number. To resolve this issue:
- Untap the repository:
brew untap az5app/tap- Clear Homebrew's download cache:
brew cleanup- Re-tap the repository:
brew tap az5app/tap- Install the formula again:
brew install <formula-name>If the issue persists, please check if there's a newer version of the formula or report the issue to the repository maintainers.