granola-toolkit 0.64.0 → 0.66.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 +6 -4
- package/dist/cli.js +174 -54
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,6 @@ 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 service start
|
|
30
29
|
granola web
|
|
31
30
|
```
|
|
32
31
|
|
|
@@ -38,9 +37,12 @@ If you start with `granola web`, the browser now walks you through the same firs
|
|
|
38
37
|
enter a Granola API key, import your meetings, choose an agent provider, and land in a workspace
|
|
39
38
|
with a starter reviewable notes pipeline already configured.
|
|
40
39
|
|
|
41
|
-
`granola
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
`granola web` now prefers the long-running background-service path by default: it will reuse the
|
|
41
|
+
existing service when one is already running, or start it for you when you have not asked for a
|
|
42
|
+
foreground/debug session.
|
|
43
|
+
|
|
44
|
+
`granola service start` is still available when you want to warm the local sync loop without
|
|
45
|
+
opening a browser first.
|
|
44
46
|
|
|
45
47
|
If you prefer to reuse the desktop app session instead, `granola auth login` still imports it from
|
|
46
48
|
`supabase.json`.
|