greptile 3.3.0 → 3.4.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 +53 -0
- package/README.md +13 -6
- package/dist/greptile.js +431 -838
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,59 @@ All notable changes to the Greptile CLI.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 3.4.0 - 2026-08-10
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `greptile init` enables Greptile for the current repository, while automatic
|
|
12
|
+
onboarding now guides interactive users through setup when needed.
|
|
13
|
+
- `greptile skills update` installs current Greptile-authored agent skills from
|
|
14
|
+
the API. The CLI also detects stale skills and reports available updates.
|
|
15
|
+
- Interactive and scripted settings now cover the same local and organization
|
|
16
|
+
review settings, deployment URLs, members, and invitations.
|
|
17
|
+
- `greptile settings` gains "Create a new organization", restoring organization
|
|
18
|
+
creation to the interactive CLI after `greptile onboard` was deprecated.
|
|
19
|
+
- The Repositories settings flow now starts with a page showing the GitHub
|
|
20
|
+
organizations linked to your workspace (workspaces with more than one can
|
|
21
|
+
finally manage all of them from the CLI), with an "Install Greptile on
|
|
22
|
+
another GitHub organization" action that opens the dashboard's Code
|
|
23
|
+
providers page in your browser (printing the link when no browser is
|
|
24
|
+
available). The CLI then waits for the install to complete, confirms the
|
|
25
|
+
organization it detected, links it to your workspace, and lists it for
|
|
26
|
+
repository selection. A repository missing from the list no longer
|
|
27
|
+
dead-ends in the CLI.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- `greptile onboard` now points existing users to `greptile init` and
|
|
32
|
+
`greptile settings`.
|
|
33
|
+
- Welcome, help, version, and other instant commands no longer initialize or
|
|
34
|
+
wait for telemetry.
|
|
35
|
+
- Skill commands list and update only skills authored by Greptile.
|
|
36
|
+
- The connection picker names what it lists: "Which GitHub organization should
|
|
37
|
+
this Greptile workspace use?" (GitLab: group), with "Refresh GitHub
|
|
38
|
+
organizations" / "Refresh GitLab groups" actions, and your personal GitHub
|
|
39
|
+
account is marked "(personal account)" so it does not read as an
|
|
40
|
+
organization. Naming the provider keeps these rows from being mistaken for
|
|
41
|
+
Greptile organizations.
|
|
42
|
+
- Cancelling organization creation after the organization exists now explains
|
|
43
|
+
how to finish setting it up (Repositories in Settings, or the dashboard)
|
|
44
|
+
instead of returning to the menu silently.
|
|
45
|
+
- Removed the expired settings migration from versions before 3.2.
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
|
|
49
|
+
- AI rules discovered during onboarding are imported only after confirmation,
|
|
50
|
+
only from an enabled repository in the current workspace, and only into that
|
|
51
|
+
repository's review context.
|
|
52
|
+
|
|
53
|
+
## 3.3.1 - 2026-07-29
|
|
54
|
+
|
|
55
|
+
### Fixed
|
|
56
|
+
|
|
57
|
+
- CLI reviews and rendered results now work when Git is configured with custom
|
|
58
|
+
diff path prefixes or no prefixes.
|
|
59
|
+
|
|
7
60
|
## 3.3.0 - 2026-07-28
|
|
8
61
|
|
|
9
62
|
### Added
|
package/README.md
CHANGED
|
@@ -36,9 +36,9 @@ On macOS, run `greptile fix install` after installing the CLI to set up Greptile
|
|
|
36
36
|
## Quick start
|
|
37
37
|
|
|
38
38
|
```sh
|
|
39
|
-
greptile
|
|
40
|
-
greptile onboard # creates your Greptile organization
|
|
39
|
+
greptile # signs you in and walks you through setup on first run
|
|
41
40
|
cd path/to/your/repo
|
|
41
|
+
greptile init # enables Greptile on this repository
|
|
42
42
|
greptile review # reviews HEAD against the default branch
|
|
43
43
|
```
|
|
44
44
|
|
|
@@ -51,8 +51,8 @@ Comments appear in the terminal as they come in.
|
|
|
51
51
|
| `greptile review` | Review the current branch against its base. |
|
|
52
52
|
| `greptile review show [ID]` | Reopen a previous review. Omit the ID to pick from a list. |
|
|
53
53
|
| `greptile review status` | Report the most recent review status for a commit (HEAD by default). |
|
|
54
|
+
| `greptile init` | Enable Greptile on the current repository. |
|
|
54
55
|
| `greptile login` | Sign in through your browser, or with `--api-key`. |
|
|
55
|
-
| `greptile onboard` | Onboard to Greptile by creating an organization interactively. |
|
|
56
56
|
| `greptile logout` | Remove stored credentials. |
|
|
57
57
|
| `greptile whoami` | Show who you are signed in as and your organizations. |
|
|
58
58
|
| `greptile settings` | Manage CLI preferences, repositories, review settings, and team. |
|
|
@@ -189,7 +189,14 @@ greptile review --include .env --include config/db.pem
|
|
|
189
189
|
|
|
190
190
|
Run bare `greptile settings` in an interactive terminal to edit local CLI
|
|
191
191
|
preferences. Organization admins can also manage repositories, review behavior,
|
|
192
|
-
and team members from the same hub
|
|
192
|
+
and team members from the same hub, and **Create a new organization** sets up
|
|
193
|
+
another Greptile organization (a separate workspace) without needing to
|
|
194
|
+
administer an existing one.
|
|
195
|
+
|
|
196
|
+
> ℹ️ **Note:** If you cancel organization creation after the organization has
|
|
197
|
+
> been created, it stays around half set up (there is no way to delete it from
|
|
198
|
+
> the CLI). Use **Repositories** in the same hub to connect a provider and
|
|
199
|
+
> enable repositories, or finish the remaining setup from your dashboard.
|
|
193
200
|
|
|
194
201
|
Save local defaults non-interactively instead of repeating flags:
|
|
195
202
|
|
|
@@ -221,7 +228,7 @@ Skills are instructions AI coding agents read. The CLI bundles two:
|
|
|
221
228
|
| `greptile-cli` | How to run the CLI: commands, JSON output shapes, exit codes. |
|
|
222
229
|
| `greploop` | Reviewing a branch, fixing the findings, and reviewing again until it comes back clean. |
|
|
223
230
|
|
|
224
|
-
|
|
231
|
+
The setup wizard offers to install them. You can also do it anytime:
|
|
225
232
|
|
|
226
233
|
```sh
|
|
227
234
|
greptile skills list # what ships with this CLI
|
|
@@ -288,7 +295,7 @@ greptile review [-b BRANCH] [--layout comments|diff | --diff] [--resume] [--incl
|
|
|
288
295
|
greptile review show [ID] # same output flags as review
|
|
289
296
|
greptile review status [--commit REF] [--json | --text | --agent]
|
|
290
297
|
greptile settings list | get KEY | set KEY VALUE | unset KEY | path
|
|
291
|
-
greptile skills list [--json] | install [NAME...] [-g] [-f] [--json]
|
|
298
|
+
greptile skills list [--json] | install [NAME...] [-g] [-f] [--json] | update [--json]
|
|
292
299
|
greptile fix install | status [--json] | uninstall [--remove-mappings]
|
|
293
300
|
greptile update
|
|
294
301
|
```
|