greptile 3.2.1 → 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 +16 -0
- package/README.md +8 -4
- package/dist/greptile.js +287 -292
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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
|
+
|
|
5
21
|
## 3.2.1 - 2026-07-15
|
|
6
22
|
|
|
7
23
|
### Added
|
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ On macOS, run `greptile fix install` after installing the CLI to set up Greptile
|
|
|
36
36
|
|
|
37
37
|
```sh
|
|
38
38
|
greptile login # opens your browser to sign in
|
|
39
|
-
greptile onboard # creates
|
|
39
|
+
greptile onboard # creates your Greptile organization
|
|
40
40
|
cd path/to/your/repo
|
|
41
41
|
greptile review # reviews HEAD against the default branch
|
|
42
42
|
```
|
|
@@ -51,10 +51,10 @@ Comments appear in the terminal as they come in.
|
|
|
51
51
|
| `greptile review show [ID]` | Reopen a previous review. Omit the ID to pick from a list. |
|
|
52
52
|
| `greptile review status` | Report the most recent review status for a commit (HEAD by default). |
|
|
53
53
|
| `greptile login` | Sign in through your browser, or with `--api-key`. |
|
|
54
|
-
| `greptile onboard` |
|
|
54
|
+
| `greptile onboard` | Onboard to Greptile by creating an organization interactively. |
|
|
55
55
|
| `greptile logout` | Remove stored credentials. |
|
|
56
56
|
| `greptile whoami` | Show who you are signed in as and your organizations. |
|
|
57
|
-
| `greptile settings` |
|
|
57
|
+
| `greptile settings` | Manage CLI preferences, repositories, review settings, and team. |
|
|
58
58
|
| `greptile fix` | Set up or remove Fix in Claude Code on macOS. |
|
|
59
59
|
| `greptile update` | Update the CLI to the latest version. |
|
|
60
60
|
|
|
@@ -185,7 +185,11 @@ greptile review --include .env --include config/db.pem
|
|
|
185
185
|
|
|
186
186
|
## Settings
|
|
187
187
|
|
|
188
|
-
|
|
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:
|
|
189
193
|
|
|
190
194
|
```sh
|
|
191
195
|
greptile settings set review.layout diff # always show findings beside the code
|