granola-toolkit 0.56.0 → 0.58.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 +5 -7
- package/dist/cli.js +514 -37
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,19 +24,17 @@ macOS arm64, Linux x64, and Windows x64. Extract the archive and run `granola` (
|
|
|
24
24
|
## Quick Start
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
+
granola init --provider openrouter
|
|
27
28
|
granola auth login --api-key grn_...
|
|
28
29
|
granola sync
|
|
29
30
|
granola sync --watch
|
|
30
|
-
granola automation rules
|
|
31
|
-
granola automation runs
|
|
32
|
-
granola search customer onboarding
|
|
33
|
-
granola folder list
|
|
34
|
-
granola meeting list --limit 10
|
|
35
|
-
granola notes --folder Team
|
|
36
31
|
granola web
|
|
37
|
-
granola tui
|
|
38
32
|
```
|
|
39
33
|
|
|
34
|
+
`granola init` creates a local `.granola.toml`, starter harnesses, starter automation rules, and
|
|
35
|
+
prompt files under `./.granola/` so the first-run setup is not just “read docs and assemble JSON by
|
|
36
|
+
hand”.
|
|
37
|
+
|
|
40
38
|
If you prefer to reuse the desktop app session instead, `granola auth login` still imports it from
|
|
41
39
|
`supabase.json`.
|
|
42
40
|
|