AVC 0.2.1
Fixed
avc initnow asks for confirmation before bootstrapping a brand-new AVC project at a path that doesn't already have one, preventing accidental project creation.
Changed
- AVC is now licensed under the GNU Affero General Public License v3.0 (AGPL-3.0), with Homebrew and Scoop package metadata updated to match.
- Fixed release pipeline issues with GoReleaser hook paths and Homebrew tap references, and renamed the Scoop bucket to
scoop-bucketto support multiple published tools going forward.
Install
macOS
Recommended — Homebrew handles PATH and removes the Gatekeeper prompt automatically.
brew install trevarix/tap/avcWindows
Recommended — Scoop handles PATH and bypasses the SmartScreen warning automatically.
No admin rights required.avcis available in any terminal immediately after install.
scoop bucket add trevarix https://github.com/trevarix/scoop-bucket
scoop install avcLinux
curl -sfL https://github.com/trevarix/agentic-vc/releases/download/v0.2.1/avc_0.2.1_linux_amd64.tar.gz | tar xz
sudo mv avc /usr/local/bin/Direct download (without a package manager)
macOS — extract the archive, then:
# Remove the Gatekeeper quarantine flag
xattr -rd com.apple.quarantine avc
chmod +x avc
sudo mv avc /usr/local/bin/Windows — extract the .zip, then either:
# Option A — move to an existing PATH location (no admin needed)
Move-Item avc.exe "$env:LOCALAPPDATA\Microsoft\WindowsApps\"
# Option B — create a personal bin directory and add it to your PATH
New-Item -ItemType Directory -Force "$env:USERPROFILE\bin"
Move-Item avc.exe "$env:USERPROFILE\bin\"
[Environment]::SetEnvironmentVariable(
"PATH",
"$env:USERPROFILE\bin;" + [Environment]::GetEnvironmentVariable("PATH","User"),
"User"
)
# Restart your terminal after running thisYou can also right-click
avc.exe→ Properties → check Unblock → OK
before moving it, to dismiss the SmartScreen warning on first run.
Verify the download (optional)
cosign verify-blob \
--certificate checksums.txt.pem \
--signature checksums.txt.sig \
checksums.txtAfter installing
avc --version # confirm the installed version
avc init # initialize AVC in your project
avc init --skills claude-code # configure Claude Code integration