greptile 3.2.0 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,38 @@
2
2
 
3
3
  All notable changes to the Greptile CLI.
4
4
 
5
+ ## 3.2.2 - 2026-07-16
6
+
7
+ ### Added
8
+
9
+ - Manage repositories directly from `greptile settings`.
10
+
11
+ ### Changed
12
+
13
+ - Settings navigation now replaces outdated cards as you move between sections.
14
+ - Reduced redundant status and cancellation messages.
15
+
16
+ ### Fixed
17
+
18
+ - GitHub repository setup now recovers more smoothly from expired authorization
19
+ and temporary connection issues.
20
+
21
+ ## 3.2.1 - 2026-07-15
22
+
23
+ ### Added
24
+
25
+ - `greptile fix install`, `status`, and `uninstall` manage the macOS app used
26
+ by "Fix in Claude Code" links.
27
+ - Fix in Claude Code maps repositories, launches Claude Code in the active
28
+ terminal, submits full Fix All prompts, and returns the browser to the pull
29
+ request after handoff.
30
+ - Onboarding includes Blimp and SF Buses as referral source choices.
31
+
32
+ ### Changed
33
+
34
+ - The macOS support now ships inside the main CLI bundle. Setup is explicit and
35
+ no longer requires the archived package or Python.
36
+
5
37
  ## 3.2.0 - 2026-07-10
6
38
 
7
39
  ### Added
package/README.md CHANGED
@@ -10,6 +10,7 @@ Greptile code review in your terminal. Runs the same review Greptile posts on yo
10
10
  - [Sensitive files](#sensitive-files)
11
11
  - [Settings](#settings)
12
12
  - [Diagrams](#diagrams)
13
+ - [Fix in Claude Code](#fix-in-claude-code)
13
14
  - [Updating](#updating)
14
15
  - [Reference](#reference)
15
16
 
@@ -28,11 +29,14 @@ curl -fsSL https://raw.githubusercontent.com/greptileai/cli/main/install.sh | ba
28
29
 
29
30
  > ℹ️ **Note:** The npm and script installs need Node 22 or newer.
30
31
 
32
+ On macOS, run `greptile fix install` after installing the CLI to set up Greptile's
33
+ "Fix in Claude Code" links.
34
+
31
35
  ## Quick start
32
36
 
33
37
  ```sh
34
38
  greptile login # opens your browser to sign in
35
- greptile onboard # creates or configures your Greptile organization
39
+ greptile onboard # creates your Greptile organization
36
40
  cd path/to/your/repo
37
41
  greptile review # reviews HEAD against the default branch
38
42
  ```
@@ -47,10 +51,11 @@ Comments appear in the terminal as they come in.
47
51
  | `greptile review show [ID]` | Reopen a previous review. Omit the ID to pick from a list. |
48
52
  | `greptile review status` | Report the most recent review status for a commit (HEAD by default). |
49
53
  | `greptile login` | Sign in through your browser, or with `--api-key`. |
50
- | `greptile onboard` | Create or reconfigure a Greptile organization interactively. |
54
+ | `greptile onboard` | Onboard to Greptile by creating an organization interactively. |
51
55
  | `greptile logout` | Remove stored credentials. |
52
56
  | `greptile whoami` | Show who you are signed in as and your organizations. |
53
- | `greptile settings` | Save default settings (`list`, `get`, `set`, `unset`, `path`). |
57
+ | `greptile settings` | Manage CLI preferences, repositories, review settings, and team. |
58
+ | `greptile fix` | Set up or remove Fix in Claude Code on macOS. |
54
59
  | `greptile update` | Update the CLI to the latest version. |
55
60
 
56
61
  Run any command with `--help` for its full flag list.
@@ -180,7 +185,11 @@ greptile review --include .env --include config/db.pem
180
185
 
181
186
  ## Settings
182
187
 
183
- Save defaults instead of repeating flags:
188
+ Run bare `greptile settings` in an interactive terminal to edit local CLI
189
+ preferences. Organization admins can also manage repositories, review behavior,
190
+ and team members from the same hub.
191
+
192
+ Save local defaults non-interactively instead of repeating flags:
184
193
 
185
194
  ```sh
186
195
  greptile settings set review.layout diff # always show findings beside the code
@@ -205,6 +214,30 @@ Settings live in `~/.config/greptile/settings.json` (or `$XDG_CONFIG_HOME/grepti
205
214
 
206
215
  When a review summary includes a Mermaid diagram, greptile renders it inline in kitty and Ghostty, and links an SVG file in other terminals. The first time a diagram renders, greptile downloads a small renderer ([mmdr](https://github.com/1jehuang/mermaid-rs-renderer)) into `~/.cache/greptile/`. Set `GREPTILE_NO_AUTO_INSTALL=1` to skip the download.
207
216
 
217
+ ## Fix in Claude Code
218
+
219
+ On macOS, the CLI can set up the local app used by Greptile's "Fix in Claude
220
+ Code" links. It maps a repository slug such as `owner/repo` to its local
221
+ checkout and submits the full review prompt in your active terminal. Setup is
222
+ explicit and does not run as part of installing or updating the CLI.
223
+
224
+ ```sh
225
+ greptile fix install # install or repair
226
+ greptile fix status # human-readable health
227
+ greptile fix status --json # stable fields for scripts
228
+ greptile fix uninstall # remove app and service; keep mappings
229
+ greptile fix uninstall --remove-mappings # also remove repository folder choices
230
+ ```
231
+
232
+ The first link for a repository opens a Finder folder picker. The selection is
233
+ saved in `~/.greptile/repos.json`. Uninstall preserves these mappings unless
234
+ you pass `--remove-mappings`.
235
+
236
+ The generated URL handler is `~/Applications/Greptile Fix.app`. It supports
237
+ Terminal, Ghostty, iTerm, Warp, kitty, WezTerm, and Alacritty. If Fix in Claude
238
+ Code is not set up, Greptile falls back to Claude Code's native URL handler.
239
+ The native handler prefills a shorter prompt and may require you to submit it.
240
+
208
241
  ## Updating
209
242
 
210
243
  ```sh
@@ -224,6 +257,7 @@ greptile review [-b BRANCH] [--layout comments|diff | --diff] [--resume] [--incl
224
257
  greptile review show [ID] # same output flags as review
225
258
  greptile review status [--commit REF] [--json | --text | --agent]
226
259
  greptile settings list | get KEY | set KEY VALUE | unset KEY | path
260
+ greptile fix install | status [--json] | uninstall [--remove-mappings]
227
261
  greptile update
228
262
  ```
229
263