greptile 3.2.0 → 3.2.1

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,22 @@
2
2
 
3
3
  All notable changes to the Greptile CLI.
4
4
 
5
+ ## 3.2.1 - 2026-07-15
6
+
7
+ ### Added
8
+
9
+ - `greptile fix install`, `status`, and `uninstall` manage the macOS app used
10
+ by "Fix in Claude Code" links.
11
+ - Fix in Claude Code maps repositories, launches Claude Code in the active
12
+ terminal, submits full Fix All prompts, and returns the browser to the pull
13
+ request after handoff.
14
+ - Onboarding includes Blimp and SF Buses as referral source choices.
15
+
16
+ ### Changed
17
+
18
+ - The macOS support now ships inside the main CLI bundle. Setup is explicit and
19
+ no longer requires the archived package or Python.
20
+
5
21
  ## 3.2.0 - 2026-07-10
6
22
 
7
23
  ### 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,6 +29,9 @@ 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
@@ -51,6 +55,7 @@ Comments appear in the terminal as they come in.
51
55
  | `greptile logout` | Remove stored credentials. |
52
56
  | `greptile whoami` | Show who you are signed in as and your organizations. |
53
57
  | `greptile settings` | Save default settings (`list`, `get`, `set`, `unset`, `path`). |
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.
@@ -205,6 +210,30 @@ Settings live in `~/.config/greptile/settings.json` (or `$XDG_CONFIG_HOME/grepti
205
210
 
206
211
  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
212
 
213
+ ## Fix in Claude Code
214
+
215
+ On macOS, the CLI can set up the local app used by Greptile's "Fix in Claude
216
+ Code" links. It maps a repository slug such as `owner/repo` to its local
217
+ checkout and submits the full review prompt in your active terminal. Setup is
218
+ explicit and does not run as part of installing or updating the CLI.
219
+
220
+ ```sh
221
+ greptile fix install # install or repair
222
+ greptile fix status # human-readable health
223
+ greptile fix status --json # stable fields for scripts
224
+ greptile fix uninstall # remove app and service; keep mappings
225
+ greptile fix uninstall --remove-mappings # also remove repository folder choices
226
+ ```
227
+
228
+ The first link for a repository opens a Finder folder picker. The selection is
229
+ saved in `~/.greptile/repos.json`. Uninstall preserves these mappings unless
230
+ you pass `--remove-mappings`.
231
+
232
+ The generated URL handler is `~/Applications/Greptile Fix.app`. It supports
233
+ Terminal, Ghostty, iTerm, Warp, kitty, WezTerm, and Alacritty. If Fix in Claude
234
+ Code is not set up, Greptile falls back to Claude Code's native URL handler.
235
+ The native handler prefills a shorter prompt and may require you to submit it.
236
+
208
237
  ## Updating
209
238
 
210
239
  ```sh
@@ -224,6 +253,7 @@ greptile review [-b BRANCH] [--layout comments|diff | --diff] [--resume] [--incl
224
253
  greptile review show [ID] # same output flags as review
225
254
  greptile review status [--commit REF] [--json | --text | --agent]
226
255
  greptile settings list | get KEY | set KEY VALUE | unset KEY | path
256
+ greptile fix install | status [--json] | uninstall [--remove-mappings]
227
257
  greptile update
228
258
  ```
229
259