grepai-installationlisted
Install: claude install-skill NNIIKKKKII/grepai-skills
# GrepAI Installation
This skill covers all methods to install GrepAI on any platform.
## When to Use This Skill
- Installing GrepAI for the first time
- Upgrading an existing GrepAI installation
- Building GrepAI from source
- Verifying a successful installation
## Prerequisites
- **macOS/Linux:** Terminal access
- **Windows:** PowerShell
- **From source:** Go 1.24+ installed
## Installation Methods
### Method 1: Homebrew (macOS - Recommended)
The easiest way to install on macOS:
```bash
# Add the tap and install
brew install yoanbernabeu/tap/grepai
# Verify installation
grepai version
```
**Advantages:**
- Automatic updates with `brew upgrade grepai`
- Clean uninstall with `brew uninstall grepai`
- Manages dependencies automatically
### Method 2: Shell Script (Linux/macOS)
Universal installation script:
```bash
# Download and run the installer
curl -sSL https://raw.githubusercontent.com/yoanbernabeu/grepai/main/install.sh | sh
# Verify installation
grepai version
```
**What the script does:**
1. Detects your OS and architecture
2. Downloads the appropriate binary
3. Installs to `/usr/local/bin/`
4. Sets executable permissions
### Method 3: PowerShell (Windows)
Native Windows installation:
```powershell
# Run in PowerShell (Admin recommended)
irm https://raw.githubusercontent.com/yoanbernabeu/grepai/main/install.ps1 | iex
# Verify installation
grepai version
```
**Note:** You may need to adjust execution policy:
```powershell
Set-ExecutionPolicy -Executi