greptile 3.3.1 → 3.4.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
@@ -4,6 +4,66 @@ All notable changes to the Greptile CLI.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 3.4.1 - 2026-08-17
8
+
9
+ ### Changed
10
+
11
+ - Agent skills documentation now reflects that Greptile fetches compatible
12
+ skills from the API and can update installed copies independently of CLI
13
+ releases.
14
+ - Normalized `T-Rex` branding to `TREX` in terminal output.
15
+
16
+ ### Fixed
17
+
18
+ - Repository lookup strips credentials embedded in HTTP(S) Git remotes before
19
+ sending the remote to Greptile.
20
+
21
+ ## 3.4.0 - 2026-08-10
22
+
23
+ ### Added
24
+
25
+ - `greptile init` enables Greptile for the current repository, while automatic
26
+ onboarding now guides interactive users through setup when needed.
27
+ - `greptile skills update` installs current Greptile-authored agent skills from
28
+ the API. The CLI also detects stale skills and reports available updates.
29
+ - Interactive and scripted settings now cover the same local and organization
30
+ review settings, deployment URLs, members, and invitations.
31
+ - `greptile settings` gains "Create a new organization", restoring organization
32
+ creation to the interactive CLI after `greptile onboard` was deprecated.
33
+ - The Repositories settings flow now starts with a page showing the GitHub
34
+ organizations linked to your workspace (workspaces with more than one can
35
+ finally manage all of them from the CLI), with an "Install Greptile on
36
+ another GitHub organization" action that opens the dashboard's Code
37
+ providers page in your browser (printing the link when no browser is
38
+ available). The CLI then waits for the install to complete, confirms the
39
+ organization it detected, links it to your workspace, and lists it for
40
+ repository selection. A repository missing from the list no longer
41
+ dead-ends in the CLI.
42
+
43
+ ### Changed
44
+
45
+ - `greptile onboard` now points existing users to `greptile init` and
46
+ `greptile settings`.
47
+ - Welcome, help, version, and other instant commands no longer initialize or
48
+ wait for telemetry.
49
+ - Skill commands list and update only skills authored by Greptile.
50
+ - The connection picker names what it lists: "Which GitHub organization should
51
+ this Greptile workspace use?" (GitLab: group), with "Refresh GitHub
52
+ organizations" / "Refresh GitLab groups" actions, and your personal GitHub
53
+ account is marked "(personal account)" so it does not read as an
54
+ organization. Naming the provider keeps these rows from being mistaken for
55
+ Greptile organizations.
56
+ - Cancelling organization creation after the organization exists now explains
57
+ how to finish setting it up (Repositories in Settings, or the dashboard)
58
+ instead of returning to the menu silently.
59
+ - Removed the expired settings migration from versions before 3.2.
60
+
61
+ ### Fixed
62
+
63
+ - AI rules discovered during onboarding are imported only after confirmation,
64
+ only from an enabled repository in the current workspace, and only into that
65
+ repository's review context.
66
+
7
67
  ## 3.3.1 - 2026-07-29
8
68
 
9
69
  ### Fixed
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 login # opens your browser to sign in
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
 
@@ -214,32 +221,34 @@ Settings live in `~/.config/greptile/settings.json` (or `$XDG_CONFIG_HOME/grepti
214
221
 
215
222
  ## Agent skills
216
223
 
217
- Skills are instructions AI coding agents read. The CLI bundles two:
224
+ Skills are instructions AI coding agents read. Greptile provides two for the CLI:
218
225
 
219
226
  | Skill | What it covers |
220
227
  | -------------- | --------------------------------------------------------------------------------------- |
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
- `greptile onboard` offers to install them. You can also do it anytime:
231
+ The setup wizard offers to install them. You can also do it anytime:
225
232
 
226
233
  ```sh
227
- greptile skills list # what ships with this CLI
234
+ greptile skills list # what is installed on this machine
228
235
  greptile skills install # asks where, if you're at a terminal
229
236
  greptile skills install --global # all your projects, no prompt
230
237
  greptile skills install greploop # just one
231
238
  greptile skills install --force # replace installed copies
239
+ greptile skills update # update installed copies
232
240
  ```
233
241
 
234
242
  Skills are written to `.agents/skills/<name>/`, which Codex, Cursor, Gemini CLI, Copilot and other
235
243
  tools following the [Agent Skills](https://agentskills.io) standard read, plus `.claude/skills/`
236
244
  and `.codex/skills/` when those agents are set up in the same place.
237
245
 
238
- An installed skill is left alone unless you pass `--force`, so local edits are kept. A skill left
239
- incomplete by a failed write is repaired on the next run.
246
+ Skills are fetched from Greptile, so installation delivers the latest version compatible with your
247
+ CLI. The CLI checks installed Greptile-authored skills in the background and tells you when updates
248
+ are available. Run `greptile skills update` to apply them.
240
249
 
241
- They are compiled into the CLI, so they describe the version you have installed. Upgrade the CLI
242
- and re-run with `--force` to update them.
250
+ An installed skill is left alone unless you pass `--force`, so local edits are kept. A skill left
251
+ incomplete by a failed write is repaired on the next install. Updates replace stale installed files.
243
252
 
244
253
  ## Diagrams
245
254
 
@@ -288,7 +297,7 @@ greptile review [-b BRANCH] [--layout comments|diff | --diff] [--resume] [--incl
288
297
  greptile review show [ID] # same output flags as review
289
298
  greptile review status [--commit REF] [--json | --text | --agent]
290
299
  greptile settings list | get KEY | set KEY VALUE | unset KEY | path
291
- greptile skills list [--json] | install [NAME...] [-g] [-f] [--json]
300
+ greptile skills list [--json] | install [NAME...] [-g] [-f] [--json] | update [--json]
292
301
  greptile fix install | status [--json] | uninstall [--remove-mappings]
293
302
  greptile update
294
303
  ```