@drakulavich/oura-cli 0.4.2 → 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 +23 -0
- package/README.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,26 @@ 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
|
+
|
|
20
|
+
## [0.4.3] - 2026-05-13
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Type-checker upgraded to TypeScript 7 via `@typescript/native-preview` (the
|
|
24
|
+
Go-based `tsgo` binary). `typescript` devDep bumped to `^6.0.3` (current
|
|
25
|
+
stable). CI now runs `bunx tsgo --noEmit` instead of `bunx tsc --noEmit`.
|
|
26
|
+
- `tsconfig.json` declares `types: ["bun", "node"]` explicitly so `tsgo`
|
|
27
|
+
resolves ambient globals (`process`, `import.meta.dir`, `bun:test`).
|
|
28
|
+
|
|
9
29
|
## [0.4.2] - 2026-05-13
|
|
10
30
|
|
|
11
31
|
### Added
|
|
@@ -206,6 +226,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
206
226
|
- Local SQLite cache at `~/.oura-cli/oura.db`.
|
|
207
227
|
- Auth via `oura-cli login`, `OURA_TOKEN`, `OURA_TOKEN_PATH`, or `~/.oura-token`.
|
|
208
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
|
|
209
232
|
[0.4.1]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.1
|
|
210
233
|
[0.4.0]: https://github.com/drakulavich/oura-cli/releases/tag/v0.4.0
|
|
211
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drakulavich/oura-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Oura Ring CLI — query and analyze Oura Ring health data from the command line, designed for humans and AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oura",
|
|
@@ -57,8 +57,9 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/bun": "^1.3.14",
|
|
59
59
|
"@types/node": "^25.3.3",
|
|
60
|
+
"@typescript/native-preview": "^7.0.0-dev.20260513.1",
|
|
60
61
|
"ajv": "^8.20.0",
|
|
61
62
|
"ajv-formats": "^3.0.1",
|
|
62
|
-
"typescript": "^
|
|
63
|
+
"typescript": "^6.0.3"
|
|
63
64
|
}
|
|
64
65
|
}
|