@kud/revu-cli 1.0.11 → 1.0.12
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/README.md +22 -18
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -33,24 +33,28 @@ revu --against main
|
|
|
33
33
|
|
|
34
34
|
## Keys
|
|
35
35
|
|
|
36
|
-
| Key | Action
|
|
37
|
-
| ------------ |
|
|
38
|
-
| `↑↓` / `j k` | Move cursor
|
|
39
|
-
| `shift+↑↓` | Select range
|
|
40
|
-
| `↵` | Annotate line / range
|
|
41
|
-
| `d` | Delete annotation
|
|
42
|
-
| `] [` | Next / prev hunk
|
|
43
|
-
| `c C` | Next / prev annotation
|
|
44
|
-
| `n p` | Next / prev file
|
|
45
|
-
| `{ }` | Scroll annotation preview
|
|
46
|
-
| `←` | Back to file tree
|
|
47
|
-
| `e` | Export annotations to
|
|
48
|
-
| `s` | Settings (theme, view
|
|
49
|
-
| `q` | Quit
|
|
36
|
+
| Key | Action |
|
|
37
|
+
| ------------ | ---------------------------------------------------------------------------------- |
|
|
38
|
+
| `↑↓` / `j k` | Move cursor |
|
|
39
|
+
| `shift+↑↓` | Select range |
|
|
40
|
+
| `↵` | Annotate line / range |
|
|
41
|
+
| `d` | Delete annotation |
|
|
42
|
+
| `] [` | Next / prev hunk |
|
|
43
|
+
| `c C` | Next / prev annotation |
|
|
44
|
+
| `n p` | Next / prev file |
|
|
45
|
+
| `{ }` | Scroll annotation preview |
|
|
46
|
+
| `←` | Back to file tree |
|
|
47
|
+
| `e` | Export annotations to `revu-review.md` (prompts for an optional AI context header) |
|
|
48
|
+
| `s` | Settings (theme, view) |
|
|
49
|
+
| `q` | Quit |
|
|
50
|
+
|
|
51
|
+
## Files
|
|
52
|
+
|
|
53
|
+
| File | Purpose |
|
|
54
|
+
| ---------------- | ------------------------------------------------------------------------------------------------------------------------ |
|
|
55
|
+
| `.revu.json` | Autosaved annotations (JSON). Persists across sessions. Compatible with the revu VSCode extension. Do not edit manually. |
|
|
56
|
+
| `revu-review.md` | Markdown export for human and AI review. Generated by pressing `e`. Safe to delete after use. |
|
|
50
57
|
|
|
51
58
|
## Config
|
|
52
59
|
|
|
53
|
-
Press `s` inside revu to open settings. Changes are saved automatically
|
|
54
|
-
|
|
55
|
-
- **Global** (theme, view mode) → `~/.config/revu/settings.json`
|
|
56
|
-
- **Per-repo** (output filename) → `revu.json` in the repo root
|
|
60
|
+
Press `s` inside revu to open settings. Changes are saved automatically to `~/.config/revu/settings.json` (theme and view mode).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kud/revu-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "Interactive terminal diff reviewer",
|
|
5
5
|
"module": "index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"bump:major": "bun scripts/bump.ts major"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@kud/revu-cli-darwin-arm64": "1.0.
|
|
27
|
-
"@kud/revu-cli-linux-x64": "1.0.
|
|
28
|
-
"@kud/revu-cli-linux-arm64": "1.0.
|
|
26
|
+
"@kud/revu-cli-darwin-arm64": "1.0.12",
|
|
27
|
+
"@kud/revu-cli-linux-x64": "1.0.12",
|
|
28
|
+
"@kud/revu-cli-linux-arm64": "1.0.12"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/bun": "latest"
|