greptile 3.4.0 → 3.4.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 CHANGED
@@ -4,6 +4,35 @@ All notable changes to the Greptile CLI.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 3.4.2 - 2026-08-26
8
+
9
+ ### Changed
10
+
11
+ - The organization settings editor now shows pull request update reviews as
12
+ disabled when the setting is absent, matching Greptile's default.
13
+
14
+ ### Fixed
15
+
16
+ - `greptile login` now completes sign-in against self-hosted Greptile
17
+ deployments whose authorization server binds loopback redirects to
18
+ `localhost`.
19
+ - Messages with counts now use the correct singular label for one review,
20
+ file, email, second, or comment.
21
+
22
+ ## 3.4.1 - 2026-08-17
23
+
24
+ ### Changed
25
+
26
+ - Agent skills documentation now reflects that Greptile fetches compatible
27
+ skills from the API and can update installed copies independently of CLI
28
+ releases.
29
+ - Normalized `T-Rex` branding to `TREX` in terminal output.
30
+
31
+ ### Fixed
32
+
33
+ - Repository lookup strips credentials embedded in HTTP(S) Git remotes before
34
+ sending the remote to Greptile.
35
+
7
36
  ## 3.4.0 - 2026-08-10
8
37
 
9
38
  ### Added
package/README.md CHANGED
@@ -221,7 +221,7 @@ Settings live in `~/.config/greptile/settings.json` (or `$XDG_CONFIG_HOME/grepti
221
221
 
222
222
  ## Agent skills
223
223
 
224
- 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:
225
225
 
226
226
  | Skill | What it covers |
227
227
  | -------------- | --------------------------------------------------------------------------------------- |
@@ -231,22 +231,24 @@ Skills are instructions AI coding agents read. The CLI bundles two:
231
231
  The setup wizard offers to install them. You can also do it anytime:
232
232
 
233
233
  ```sh
234
- greptile skills list # what ships with this CLI
234
+ greptile skills list # what is installed on this machine
235
235
  greptile skills install # asks where, if you're at a terminal
236
236
  greptile skills install --global # all your projects, no prompt
237
237
  greptile skills install greploop # just one
238
238
  greptile skills install --force # replace installed copies
239
+ greptile skills update # update installed copies
239
240
  ```
240
241
 
241
242
  Skills are written to `.agents/skills/<name>/`, which Codex, Cursor, Gemini CLI, Copilot and other
242
243
  tools following the [Agent Skills](https://agentskills.io) standard read, plus `.claude/skills/`
243
244
  and `.codex/skills/` when those agents are set up in the same place.
244
245
 
245
- An installed skill is left alone unless you pass `--force`, so local edits are kept. A skill left
246
- 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.
247
249
 
248
- They are compiled into the CLI, so they describe the version you have installed. Upgrade the CLI
249
- 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.
250
252
 
251
253
  ## Diagrams
252
254