granola-toolkit 0.58.0 → 0.60.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 +9 -2
- package/dist/cli.js +482 -42
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,8 +26,7 @@ macOS arm64, Linux x64, and Windows x64. Extract the archive and run `granola` (
|
|
|
26
26
|
```bash
|
|
27
27
|
granola init --provider openrouter
|
|
28
28
|
granola auth login --api-key grn_...
|
|
29
|
-
granola
|
|
30
|
-
granola sync --watch
|
|
29
|
+
granola service start
|
|
31
30
|
granola web
|
|
32
31
|
```
|
|
33
32
|
|
|
@@ -35,6 +34,14 @@ granola web
|
|
|
35
34
|
prompt files under `./.granola/` so the first-run setup is not just “read docs and assemble JSON by
|
|
36
35
|
hand”.
|
|
37
36
|
|
|
37
|
+
If you start with `granola web`, the browser now walks you through the same first-run path:
|
|
38
|
+
enter a Granola API key, import your meetings, choose an agent provider, and land in a workspace
|
|
39
|
+
with a starter reviewable notes pipeline already configured.
|
|
40
|
+
|
|
41
|
+
`granola service start` is the new long-running background mode. It keeps the local sync loop warm,
|
|
42
|
+
serves the browser workspace, and lets `granola attach` discover the running service without making
|
|
43
|
+
you keep a foreground terminal open.
|
|
44
|
+
|
|
38
45
|
If you prefer to reuse the desktop app session instead, `granola auth login` still imports it from
|
|
39
46
|
`supabase.json`.
|
|
40
47
|
|