archiver-ts 0.4.4 → 0.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/README.md +21 -3
- package/dist/index.js +1574 -1367
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,14 +37,12 @@ Query and maintenance:
|
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
arv list [-p|--plain]
|
|
40
|
-
arv log
|
|
41
|
-
arv log --id <log-id>
|
|
40
|
+
arv log
|
|
42
41
|
arv config
|
|
43
42
|
arv update [--repo <owner/repo>] [--install]
|
|
44
43
|
arv check
|
|
45
44
|
```
|
|
46
45
|
|
|
47
|
-
`arv log` without range now prints all records by default (grep-friendly).
|
|
48
46
|
|
|
49
47
|
## Interactive config editor
|
|
50
48
|
|
|
@@ -62,6 +60,12 @@ In the editor:
|
|
|
62
60
|
- Enter: save current action (or quick-save on field)
|
|
63
61
|
- q/Esc: cancel
|
|
64
62
|
|
|
63
|
+
All fullscreen interactive UIs (`arv list` picker, `arv config`, `arv dot`, and no-command selector) now:
|
|
64
|
+
|
|
65
|
+
- auto re-render on terminal resize
|
|
66
|
+
- keep fullscreen layout after resize
|
|
67
|
+
- show a terminal-size warning when the viewport is too small
|
|
68
|
+
|
|
65
69
|
## List output behavior
|
|
66
70
|
|
|
67
71
|
`arv list` opens an interactive picker (TTY):
|
|
@@ -96,6 +100,20 @@ Examples:
|
|
|
96
100
|
2 A work(1)::report.pdf
|
|
97
101
|
```
|
|
98
102
|
|
|
103
|
+
## Log output behavior
|
|
104
|
+
|
|
105
|
+
`arv log` always prints all records (no options) in a grep-friendly format.
|
|
106
|
+
|
|
107
|
+
- format: `<logId><TAB><time><TAB><level><TAB><op><TAB><message><TAB><archiveId><TAB><vaultId>`
|
|
108
|
+
- `op` uses `main/sub` when sub operation exists
|
|
109
|
+
- `archiveId` and `vaultId` are empty when not present
|
|
110
|
+
|
|
111
|
+
Example:
|
|
112
|
+
|
|
113
|
+
```text
|
|
114
|
+
12\t2026-02-12 10:22:33\tINFO\tarchive/put\tArchived foo.txt\t34\t0
|
|
115
|
+
```
|
|
116
|
+
|
|
99
117
|
## Shell wrapper note
|
|
100
118
|
|
|
101
119
|
On interactive terminal startup, `arv` may auto-install a shell wrapper function so `arv list` interactive `Enter slot` can move your shell to archive slot paths.
|