https://github.com/zircote/homebrew-tap
Homebrew tap for various projects
https://github.com/zircote/homebrew-tap
Last synced: 3 months ago
JSON representation
Homebrew tap for various projects
- Host: GitHub
- URL: https://github.com/zircote/homebrew-tap
- Owner: zircote
- License: mit
- Created: 2025-12-15T19:49:28.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-03-09T16:23:34.000Z (4 months ago)
- Last Synced: 2026-03-09T20:15:48.347Z (4 months ago)
- Language: Ruby
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# zircote Homebrew Tap
Official [Homebrew](https://brew.sh/) tap for zircote projects.
## Available Formulae
| Formula | Description |
|---------|-------------|
| [adrscope](https://github.com/zircote/adrscope) | Validate, visualize, and manage Architecture Decision Records (ADRs) |
| [git-adr](https://github.com/zircote/git-adr) | Architecture Decision Records management using git notes |
| [subcog](https://github.com/zircote/subcog) | A persistent memory system for AI coding assistants |
## Installation
```bash
# Add this tap
brew tap zircote/tap
# Install a formula
brew install git-adr
```
Or install directly:
```bash
brew install zircote/tap/git-adr
```
## Updating
```bash
brew update
brew upgrade git-adr
```
## Uninstalling
```bash
brew uninstall git-adr
brew untap zircote/tap
```
## Post-Installation
To use git-adr as a git subcommand, add a git alias:
```bash
git config --global alias.adr '!git-adr'
```
Then you can use: `git adr new "My Decision"`
## What is git-adr?
git-adr is a CLI tool for managing Architecture Decision Records (ADRs) using git notes instead of files in your repository. This approach:
- Keeps your working tree clean (no ADR files)
- Integrates seamlessly with git workflows
- Survives rebases and amends
- Can be synced across remotes
Learn more at [github.com/zircote/git-adr](https://github.com/zircote/git-adr)
## Issues
For issues with a formula (installation, updates), please open an issue in this repository.
For issues with the tools themselves, please open an issue in the respective project repository.