greptile 3.5.4 → 3.6.0
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 +10 -0
- package/README.md +15 -1
- package/dist/greptile.js +159 -155
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to the Greptile CLI.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 3.6.0 - 2026-09-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `greptile review --plus` and `greptile review --apex` run a review at plus
|
|
12
|
+
or apex effort. The two flags are mutually exclusive and cannot be combined
|
|
13
|
+
with `--resume`. Output shows the effort level; JSON output adds `effort`.
|
|
14
|
+
- Exit code `6` when a feature is not enabled for your account. The CLI prints
|
|
15
|
+
a `notice:` instead of an error.
|
|
16
|
+
|
|
7
17
|
## 3.5.4 - 2026-09-21
|
|
8
18
|
|
|
9
19
|
### Changed
|
package/README.md
CHANGED
|
@@ -82,6 +82,19 @@ greptile review -b main
|
|
|
82
82
|
greptile review --instructions "focus on retry cancellation"
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
Choose review effort for a new run:
|
|
86
|
+
|
|
87
|
+
```sh
|
|
88
|
+
greptile review # base
|
|
89
|
+
greptile review --plus # plus
|
|
90
|
+
greptile review --apex # apex
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
`--plus` and `--apex` are mutually exclusive and cannot be combined with `--resume`.
|
|
94
|
+
They require the organization's effort feature and an effort-specific routing rule. If either
|
|
95
|
+
is unavailable, the review fails without running a fallback. Results include the effective
|
|
96
|
+
effort. Saved settings do not change effort.
|
|
97
|
+
|
|
85
98
|
Show findings beside the changed code instead of as a comment list:
|
|
86
99
|
|
|
87
100
|
```sh
|
|
@@ -437,7 +450,7 @@ CLI's telemetry setting or environment switches.
|
|
|
437
450
|
```sh
|
|
438
451
|
greptile login [--api-key] | logout | whoami
|
|
439
452
|
greptile review [-b BRANCH] [--layout comments|diff | --diff] [--resume] [--include PATH...]
|
|
440
|
-
[--instructions TEXT] [--json | --text | --agent] [--context LINES]
|
|
453
|
+
[--instructions TEXT] [--plus | --apex] [--json | --text | --agent] [--context LINES]
|
|
441
454
|
[--width COLUMNS] [--color | --no-color]
|
|
442
455
|
greptile review show [ID] # same output flags as review
|
|
443
456
|
greptile review status [--commit REF] [--json | --text | --agent]
|
|
@@ -498,6 +511,7 @@ stdin, or dotenv input, never as command arguments. Secret values are never show
|
|
|
498
511
|
| `3` | `review status` only: a review for the commit is still running. |
|
|
499
512
|
| `4` | `review status` only: the most recent review failed. |
|
|
500
513
|
| `5` | `review status` only: the most recent review was cancelled. |
|
|
514
|
+
| `6` | The feature isn't enabled for this account; stderr has a `notice:` line. |
|
|
501
515
|
| `130` | Interrupted with Ctrl-C. |
|
|
502
516
|
|
|
503
517
|
### Files
|