@drakulavich/oura-cli 0.4.3 → 0.4.4
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/CHANGELOG.md +14 -0
- package/README.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.4] - 2026-05-13
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- README screencast (`assets/demo.webm`, ~270 KB) showing `--version`,
|
|
13
|
+
`db today`, `db week`, the narrative `report`, and the agent-discoverable
|
|
14
|
+
`describe` manifest. Generated reproducibly from `assets/demo.tape` via
|
|
15
|
+
[VHS](https://github.com/charmbracelet/vhs); see CONTRIBUTING.md for the
|
|
16
|
+
regeneration command. The `<video>` element renders inline on GitHub; the
|
|
17
|
+
fallback link survives on npmjs.com where `<video>` is stripped.
|
|
18
|
+
- CONTRIBUTING.md "Regenerating the demo" subsection.
|
|
19
|
+
|
|
9
20
|
## [0.4.3] - 2026-05-13
|
|
10
21
|
|
|
11
22
|
### Changed
|
|
@@ -215,6 +226,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
215
226
|
- Local SQLite cache at `~/.oura-cli/oura.db`.
|
|
216
227
|
- Auth via `oura-cli login`, `OURA_TOKEN`, `OURA_TOKEN_PATH`, or `~/.oura-token`.
|
|
217
228
|
|
|
229
|
+
[0.4.4]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.4
|
|
230
|
+
[0.4.3]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.3
|
|
231
|
+
[0.4.2]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.2
|
|
218
232
|
[0.4.1]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.1
|
|
219
233
|
[0.4.0]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.0
|
|
220
234
|
[0.3.4]: https://github.com/drakulavich/oura-cli/releases/tag/v0.3.4
|
package/README.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
<p align="center"><b>Own your Oura Ring data.</b> Pull your sleep, readiness, activity, heart rate, SpO₂, stress, and workouts from the Oura Cloud API straight to your terminal. No mobile app. No telemetry. Just SQLite and your data.</p>
|
|
12
12
|
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://github.com/drakulavich/oura-cli/raw/main/assets/demo.webm">
|
|
15
|
+
<video src="https://github.com/drakulavich/oura-cli/raw/main/assets/demo.webm" width="720" controls muted playsinline></video>
|
|
16
|
+
<em>Watch the 25-second demo</em>
|
|
17
|
+
</a>
|
|
18
|
+
</p>
|
|
19
|
+
|
|
13
20
|
- **Offline-first.** Everything caches into `~/.oura-cli/oura.db` after one `oura-cli sync`. Reports keep working when your internet doesn't.
|
|
14
21
|
- **Real terminal reports.** `oura-cli report` writes a weekly or monthly digest with averages, trend deltas, and "you slept poorly Tuesday" callouts. No dashboards, no logging in.
|
|
15
22
|
- **Pipe-friendly.** Output auto-switches to stable JSON when stdout isn't a terminal. Analyse with `jq`, plot with `gnuplot`, or feed it into your own scripts.
|
package/dist/index.js
CHANGED
package/package.json
CHANGED