granola-toolkit 0.57.0 → 0.59.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.
Files changed (3) hide show
  1. package/README.md +9 -7
  2. package/dist/cli.js +337 -20
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -24,19 +24,21 @@ 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
+
38
+ If you start with `granola web`, the browser now walks you through the same first-run path:
39
+ enter a Granola API key, import your meetings, choose an agent provider, and land in a workspace
40
+ with a starter reviewable notes pipeline already configured.
41
+
40
42
  If you prefer to reuse the desktop app session instead, `granola auth login` still imports it from
41
43
  `supabase.json`.
42
44