granola-cli 0.1.0 → 0.1.1
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 -2
- package/dist/main.js +319 -265
- package/dist/main.js.map +1 -1
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Granola CLI
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/granola-cli)
|
|
4
|
+
[](https://www.npmjs.com/package/granola-cli)
|
|
5
|
+
[](https://github.com/magarcia/granola-cli/blob/main/LICENSE)
|
|
6
|
+
[](https://github.com/magarcia/granola-cli/actions/workflows/ci.yml)
|
|
7
|
+
|
|
3
8
|
> [!IMPORTANT]
|
|
4
9
|
> **Disclaimer**: This is an **unofficial, open-source community project** and is **not affiliated with, endorsed by, or connected to Granola Labs, Inc.** (the company behind [Granola.ai](https://www.granola.ai/)). Granola is a registered trademark of Granola Labs, Inc. This CLI is an independent tool that uses the publicly available Granola API to provide command-line access to your own meeting data.
|
|
5
10
|
|
|
@@ -583,7 +588,6 @@ DEBUG=granola:cli:* granola meetings
|
|
|
583
588
|
| ------------------- | ---------------------------- |
|
|
584
589
|
| `granola:cli` | CLI entry point, startup |
|
|
585
590
|
| `granola:cli:alias` | Alias expansion |
|
|
586
|
-
| `granola:cli:subcommand` | External subcommand discovery |
|
|
587
591
|
| `granola:service:*` | All service layer operations |
|
|
588
592
|
| `granola:lib:*` | All library utilities |
|
|
589
593
|
| `granola:cmd:*` | All command handlers |
|
|
@@ -687,7 +691,7 @@ npm install
|
|
|
687
691
|
|
|
688
692
|
### Testing
|
|
689
693
|
|
|
690
|
-
The project uses [Vitest](https://vitest.dev/) for testing with
|
|
694
|
+
The project uses [Vitest](https://vitest.dev/) for testing with high code coverage (95%+ threshold).
|
|
691
695
|
|
|
692
696
|
```bash
|
|
693
697
|
# Run tests
|