@devkitvault/recall 1.1.0 → 1.2.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/README.md +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,8 +27,18 @@ recall doctor
|
|
|
27
27
|
recall auth login
|
|
28
28
|
recall "find the 10 biggest files in this directory"
|
|
29
29
|
rec "that docker command from last week"
|
|
30
|
+
recall
|
|
30
31
|
```
|
|
31
32
|
|
|
33
|
+
No-args `recall` opens an Ask session (`Recall >`). `/save [name]` stores the last suggestion. `/exit` leaves.
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
recall playbook save deploy "docker compose up -d" "pnpm migrate"
|
|
37
|
+
recall playbook run deploy --dry-run
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
`recall playbook run` executes steps. Ask never does.
|
|
41
|
+
|
|
32
42
|
Ask prints a suggestion (`source` is `vault`, `cache`, or `llm`). Copy or save it yourself.
|
|
33
43
|
|
|
34
44
|
```sh
|