greptile 3.2.2 → 3.3.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 +31 -0
- package/README.md +32 -0
- package/dist/greptile.js +822 -352
- package/package.json +1 -1
- package/settings-schema.json +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the Greptile CLI.
|
|
4
4
|
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
## 3.3.0 - 2026-07-28
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `greptile skills` installs two skills for AI coding agents: `greptile-cli`
|
|
12
|
+
(commands, JSON output, exit codes) and `greploop` (review, fix, review again
|
|
13
|
+
until it comes back clean). They are written to `.agents/skills/`, plus
|
|
14
|
+
`.claude/skills/` and `.codex/skills/` when those agents are set up.
|
|
15
|
+
- Onboarding offers to install them, for this repository or for every project.
|
|
16
|
+
- Privacy-aware usage telemetry sends product events through Greptile's
|
|
17
|
+
first-party endpoint without including code, repository names, paths, or
|
|
18
|
+
review content. Interactive users choose whether to link usage to their
|
|
19
|
+
account, while automated runs remain anonymous until a choice is recorded.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- The Important Files Changed section is collapsed by default in new review
|
|
24
|
+
settings, while explicit repository, namespace, and personal settings still
|
|
25
|
+
take precedence.
|
|
26
|
+
- Removed retired steps from the CLI onboarding sequence so it stays aligned
|
|
27
|
+
with the current web onboarding flow.
|
|
28
|
+
|
|
29
|
+
## 3.2.3 - 2026-07-17
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Repository-aware commands now use the current branch's configured Git remote,
|
|
34
|
+
or the sole remote, instead of requiring a remote named `origin`.
|
|
35
|
+
|
|
5
36
|
## 3.2.2 - 2026-07-16
|
|
6
37
|
|
|
7
38
|
### Added
|
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ Greptile code review in your terminal. Runs the same review Greptile posts on yo
|
|
|
9
9
|
- [Authentication](#authentication)
|
|
10
10
|
- [Sensitive files](#sensitive-files)
|
|
11
11
|
- [Settings](#settings)
|
|
12
|
+
- [Agent skills](#agent-skills)
|
|
12
13
|
- [Diagrams](#diagrams)
|
|
13
14
|
- [Fix in Claude Code](#fix-in-claude-code)
|
|
14
15
|
- [Updating](#updating)
|
|
@@ -55,6 +56,7 @@ Comments appear in the terminal as they come in.
|
|
|
55
56
|
| `greptile logout` | Remove stored credentials. |
|
|
56
57
|
| `greptile whoami` | Show who you are signed in as and your organizations. |
|
|
57
58
|
| `greptile settings` | Manage CLI preferences, repositories, review settings, and team. |
|
|
59
|
+
| `greptile skills` | Install the Greptile agent skills for your AI coding agents. |
|
|
58
60
|
| `greptile fix` | Set up or remove Fix in Claude Code on macOS. |
|
|
59
61
|
| `greptile update` | Update the CLI to the latest version. |
|
|
60
62
|
|
|
@@ -210,6 +212,35 @@ A flag passed on the command line always wins over a saved setting for that run.
|
|
|
210
212
|
|
|
211
213
|
Settings live in `~/.config/greptile/settings.json` (or `$XDG_CONFIG_HOME/greptile/settings.json`); `greptile settings path` prints the exact location. The file includes a `$schema` reference to a published JSON Schema, so editors can validate and autocomplete it if you edit it by hand.
|
|
212
214
|
|
|
215
|
+
## Agent skills
|
|
216
|
+
|
|
217
|
+
Skills are instructions AI coding agents read. The CLI bundles two:
|
|
218
|
+
|
|
219
|
+
| Skill | What it covers |
|
|
220
|
+
| -------------- | --------------------------------------------------------------------------------------- |
|
|
221
|
+
| `greptile-cli` | How to run the CLI: commands, JSON output shapes, exit codes. |
|
|
222
|
+
| `greploop` | Reviewing a branch, fixing the findings, and reviewing again until it comes back clean. |
|
|
223
|
+
|
|
224
|
+
`greptile onboard` offers to install them. You can also do it anytime:
|
|
225
|
+
|
|
226
|
+
```sh
|
|
227
|
+
greptile skills list # what ships with this CLI
|
|
228
|
+
greptile skills install # asks where, if you're at a terminal
|
|
229
|
+
greptile skills install --global # all your projects, no prompt
|
|
230
|
+
greptile skills install greploop # just one
|
|
231
|
+
greptile skills install --force # replace installed copies
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
Skills are written to `.agents/skills/<name>/`, which Codex, Cursor, Gemini CLI, Copilot and other
|
|
235
|
+
tools following the [Agent Skills](https://agentskills.io) standard read, plus `.claude/skills/`
|
|
236
|
+
and `.codex/skills/` when those agents are set up in the same place.
|
|
237
|
+
|
|
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.
|
|
240
|
+
|
|
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.
|
|
243
|
+
|
|
213
244
|
## Diagrams
|
|
214
245
|
|
|
215
246
|
When a review summary includes a Mermaid diagram, greptile renders it inline in kitty and Ghostty, and links an SVG file in other terminals. The first time a diagram renders, greptile downloads a small renderer ([mmdr](https://github.com/1jehuang/mermaid-rs-renderer)) into `~/.cache/greptile/`. Set `GREPTILE_NO_AUTO_INSTALL=1` to skip the download.
|
|
@@ -257,6 +288,7 @@ greptile review [-b BRANCH] [--layout comments|diff | --diff] [--resume] [--incl
|
|
|
257
288
|
greptile review show [ID] # same output flags as review
|
|
258
289
|
greptile review status [--commit REF] [--json | --text | --agent]
|
|
259
290
|
greptile settings list | get KEY | set KEY VALUE | unset KEY | path
|
|
291
|
+
greptile skills list [--json] | install [NAME...] [-g] [-f] [--json]
|
|
260
292
|
greptile fix install | status [--json] | uninstall [--remove-mappings]
|
|
261
293
|
greptile update
|
|
262
294
|
```
|