greptile 3.5.0 → 3.5.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 +17 -0
- package/README.md +16 -15
- package/dist/greptile.js +434 -576
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to the Greptile CLI.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 3.5.1 - 2026-09-03
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Repository settings can disable repositories, including the last enabled one.
|
|
12
|
+
- `greptile init` tells members to ask an organization admin instead of
|
|
13
|
+
prompting for a change they cannot make.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Warnings such as "Could not disable" show the full server error instead of a
|
|
18
|
+
truncated line.
|
|
19
|
+
|
|
7
20
|
## 3.5.0 - 2026-09-02
|
|
8
21
|
|
|
9
22
|
### Fixed
|
|
@@ -23,6 +36,10 @@ All notable changes to the Greptile CLI.
|
|
|
23
36
|
instead of naming an upgrade path that does not apply. Agent-skill notices
|
|
24
37
|
also survive, since `greptile skills` works regardless of how the CLI
|
|
25
38
|
itself was distributed.
|
|
39
|
+
- Repository settings can now disable repositories, including the last enabled
|
|
40
|
+
repository, and report the applied enable and disable counts.
|
|
41
|
+
- `greptile init` now tells members to ask an organization admin when the
|
|
42
|
+
current repository is disabled, instead of prompting for a change they cannot make.
|
|
26
43
|
|
|
27
44
|
## 3.4.2 - 2026-08-26
|
|
28
45
|
|
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ On macOS, run `greptile fix install` after installing the CLI to set up Greptile
|
|
|
38
38
|
```sh
|
|
39
39
|
greptile # signs you in and walks you through setup on first run
|
|
40
40
|
cd path/to/your/repo
|
|
41
|
-
greptile init # enables Greptile on this repository
|
|
41
|
+
greptile init # enables Greptile on this repository when you are an admin
|
|
42
42
|
greptile review # reviews HEAD against the default branch
|
|
43
43
|
```
|
|
44
44
|
|
|
@@ -46,19 +46,19 @@ Comments appear in the terminal as they come in.
|
|
|
46
46
|
|
|
47
47
|
## Commands
|
|
48
48
|
|
|
49
|
-
| Command | What it does
|
|
50
|
-
| --------------------------- |
|
|
51
|
-
| `greptile review` | Review the current branch against its base.
|
|
52
|
-
| `greptile review show [ID]` | Reopen a previous review. Omit the ID to pick from a list.
|
|
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.
|
|
55
|
-
| `greptile login` | Sign in through your browser, or with `--api-key`.
|
|
56
|
-
| `greptile logout` | Remove stored credentials.
|
|
57
|
-
| `greptile whoami` | Show who you are signed in as and your organizations.
|
|
58
|
-
| `greptile settings` | Manage CLI preferences, repositories, review settings, and team.
|
|
59
|
-
| `greptile skills` | Install the Greptile agent skills for your AI coding agents.
|
|
60
|
-
| `greptile fix` | Set up or remove Fix in Claude Code on macOS.
|
|
61
|
-
| `greptile update` | Update the CLI to the latest version.
|
|
49
|
+
| Command | What it does |
|
|
50
|
+
| --------------------------- | --------------------------------------------------------------------- |
|
|
51
|
+
| `greptile review` | Review the current branch against its base. |
|
|
52
|
+
| `greptile review show [ID]` | Reopen a previous review. Omit the ID to pick from a list. |
|
|
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 when you have admin access. |
|
|
55
|
+
| `greptile login` | Sign in through your browser, or with `--api-key`. |
|
|
56
|
+
| `greptile logout` | Remove stored credentials. |
|
|
57
|
+
| `greptile whoami` | Show who you are signed in as and your organizations. |
|
|
58
|
+
| `greptile settings` | Manage CLI preferences, repositories, review settings, and team. |
|
|
59
|
+
| `greptile skills` | Install the Greptile agent skills for your AI coding agents. |
|
|
60
|
+
| `greptile fix` | Set up or remove Fix in Claude Code on macOS. |
|
|
61
|
+
| `greptile update` | Update the CLI to the latest version. |
|
|
62
62
|
|
|
63
63
|
Run any command with `--help` for its full flag list.
|
|
64
64
|
|
|
@@ -196,7 +196,8 @@ administer an existing one.
|
|
|
196
196
|
> ℹ️ **Note:** If you cancel organization creation after the organization has
|
|
197
197
|
> been created, it stays around half set up (there is no way to delete it from
|
|
198
198
|
> the CLI). Use **Repositories** in the same hub to connect a provider and
|
|
199
|
-
> enable repositories, or finish the remaining setup from your
|
|
199
|
+
> enable or disable repositories, or finish the remaining setup from your
|
|
200
|
+
> dashboard.
|
|
200
201
|
|
|
201
202
|
Save local defaults non-interactively instead of repeating flags:
|
|
202
203
|
|