Back to index

Installation

This guide covers the different methods available for installing agent-sync.

Homebrew Installation (macOS)

You can install agent-sync using Homebrew:

brew install uphy/tap/agent-sync

Go Installation

Install via Go:

go install github.com/uphy/agent-sync/cmd/agent-sync@latest

Binary Downloads

Download pre-compiled binaries for your platform from GitHub Releases.

The release process automatically builds binaries for multiple platforms:

Simply download the appropriate archive for your platform, extract it, and place the binary in a directory included in your system’s PATH.

Verifying the Installation

After installation, verify that agent-sync is installed correctly by running:

agent-sync --version

You should see the version number of the installed agent-sync tool.

Next Steps

Once installed, you can create a new agent-sync project using the init command:

mkdir my-ai-instructions
cd my-ai-instructions
agent-sync init

For more information about using agent-sync, see the Command Line Interface documentation.


Previous Next
Index Configuration Guide

Back to index