@@ -15,19 +15,31 @@ xgit — AI-powered Git workflows: resolve conflicts, debug regressions, and rev
1515curl -fsSL https://raw.githubusercontent.com/hjun1052/xgit/main/scripts/install.sh | bash
1616```
1717
18+ The installer now offers a guided setup wizard by default. For unattended installs, use:
19+
20+ ``` bash
21+ curl -fsSL https://raw.githubusercontent.com/hjun1052/xgit/main/scripts/install.sh | XGIT_GUIDED_SETUP=never bash
22+ ```
23+
1824### Windows PowerShell
1925
2026``` powershell
2127irm https://raw.githubusercontent.com/hjun1052/xgit/main/scripts/install.ps1 | iex
2228```
2329
30+ For unattended installs on Windows:
31+
32+ ``` powershell
33+ $env:XGIT_GUIDED_SETUP = "never"; irm https://raw.githubusercontent.com/hjun1052/xgit/main/scripts/install.ps1 | iex
34+ ```
35+
2436### From source
2537
2638``` bash
2739git clone https://github.com/hjun1052/xgit.git
2840cd xgit
2941go build -o xgit ./cmd/xgit
30- ./xgit init --provider mock --non-interactive
42+ ./xgit init --wizard
3143```
3244
3345## Quick demo
@@ -147,6 +159,7 @@ In short: **xgit is not a new VCS**. It is a practical AI layer over the Git you
147159 - ` xgit test-fix ` : propose and validate fixes for failing tests
148160 - ` xgit doc ` : generate/update project docs
149161 - ` xgit auto ` : state-aware automation (conflict/test/diff driven)
162+ - ` xgit update ` : check the latest release and self-update on macOS/Linux
150163
151164- ** Workflow scaling**
152165 - ` xgit alias ` : compose multiple xgit commands into one reusable command
@@ -172,8 +185,9 @@ In short: **xgit is not a new VCS**. It is a practical AI layer over the Git you
172185### 1) Initial setup
173186
174187``` bash
175- xgit init --provider codex-cli --non-interactive
188+ xgit init --wizard
176189# or:
190+ xgit init --provider codex-cli --non-interactive
177191xgit config set provider openai
178192xgit config set api-key-env openai OPENAI_API_KEY
179193```
@@ -198,6 +212,9 @@ xgit explain history main..HEAD --limit 40
198212
199213# Ask xgit which Git commands to run
200214xgit do-git compare my branch with main before I merge
215+
216+ # Check for the latest release
217+ xgit update --check
201218```
202219
203220### 3) High-impact workflows
0 commit comments