granola-toolkit 0.21.0 → 0.22.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 +18 -0
- package/dist/cli.js +945 -449
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,7 @@ Installed command:
|
|
|
33
33
|
```bash
|
|
34
34
|
granola --help
|
|
35
35
|
granola auth login
|
|
36
|
+
granola exports --help
|
|
36
37
|
granola meeting --help
|
|
37
38
|
granola notes --help
|
|
38
39
|
granola serve --help
|
|
@@ -47,6 +48,7 @@ Local build:
|
|
|
47
48
|
```bash
|
|
48
49
|
vp pack
|
|
49
50
|
node dist/cli.js --help
|
|
51
|
+
node dist/cli.js exports --help
|
|
50
52
|
node dist/cli.js meeting --help
|
|
51
53
|
node dist/cli.js notes --help
|
|
52
54
|
node dist/cli.js serve --help
|
|
@@ -73,6 +75,8 @@ granola notes
|
|
|
73
75
|
|
|
74
76
|
node dist/cli.js notes --supabase "$HOME/Library/Application Support/Granola/supabase.json"
|
|
75
77
|
node dist/cli.js notes --format json --output ./notes-json
|
|
78
|
+
granola exports list
|
|
79
|
+
granola exports rerun notes-1234abcd
|
|
76
80
|
```
|
|
77
81
|
|
|
78
82
|
Export transcripts:
|
|
@@ -194,7 +198,9 @@ The initial server API includes:
|
|
|
194
198
|
- `GET /meetings`
|
|
195
199
|
- `GET /meetings/resolve?q=<query>`
|
|
196
200
|
- `GET /meetings/:id`
|
|
201
|
+
- `GET /exports/jobs`
|
|
197
202
|
- `POST /exports/notes`
|
|
203
|
+
- `POST /exports/jobs/:id/rerun`
|
|
198
204
|
- `POST /exports/transcripts`
|
|
199
205
|
|
|
200
206
|
This is the foundation for the future `granola web` client and any attachable TUI flows.
|
|
@@ -212,8 +218,20 @@ The initial browser client includes:
|
|
|
212
218
|
- keyboard-first workspace switching with `1`-`4`, `[` and `]`
|
|
213
219
|
- app-state status from the shared core
|
|
214
220
|
- note and transcript export actions backed by the same local API
|
|
221
|
+
- a recent export-jobs panel with rerun actions
|
|
215
222
|
- stronger empty and error states for list/detail failures
|
|
216
223
|
|
|
224
|
+
### Export Jobs
|
|
225
|
+
|
|
226
|
+
Exports are now tracked as jobs with:
|
|
227
|
+
|
|
228
|
+
- persistent local history across CLI and web runs
|
|
229
|
+
- running, completed, and failed status
|
|
230
|
+
- per-export progress counters
|
|
231
|
+
- rerun support from `granola exports rerun <job-id>` or the web client
|
|
232
|
+
|
|
233
|
+
Use `granola exports list` to inspect recent jobs from the CLI.
|
|
234
|
+
|
|
217
235
|
## Auth
|
|
218
236
|
|
|
219
237
|
If you do not want to keep passing `--supabase`, import the desktop app session once:
|