# Send Oura Cli to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "oura-cli",
    "name": "Oura Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Supadoopa/oura-cli",
    "canonicalUrl": "https://clawhub.ai/Supadoopa/oura-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/oura-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=oura-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cmd/oura/main.go",
      "internal/api/client.go",
      "internal/api/endpoints.go",
      "internal/auth/oauth.go"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "oura-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T17:58:23.862Z",
      "expiresAt": "2026-05-13T17:58:23.862Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=oura-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=oura-cli",
        "contentDisposition": "attachment; filename=\"oura-cli-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "oura-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/oura-cli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/oura-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/oura-cli",
    "agentUrl": "https://openagent3.xyz/skills/oura-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/oura-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/oura-cli/agent.md"
  }
}
```
## Documentation

### Description

This tool allows retrieving health and biometric data from the Oura Ring API (V2) via a command-line interface. Use this to answer questions about the user's sleep, activity, readiness, and physiological stats.

Repository: https://github.com/ruhrpotter/oura-cli

### Prerequisite

The CLI must be authenticated. If a command fails with an auth error, notify the user to run ./oura auth login.

### Syntax

./oura get <category> [flags]

### Categories

personal: User profile (age, weight, height, email).
sleep: Daily sleep scores and efficiency.
activity: Daily activity scores, steps, and movement.
readiness: Daily readiness scores indicating recovery.
heartrate: Time-series heart rate data.
workout: Detailed workout sessions.
spo2: Blood oxygen saturation levels.
sleep-details: Detailed sleep sessions including hypnograms.
sessions: Activity sessions (e.g. naps, rest).
sleep-times: Optimal bedtime guidance.
stress: Daily stress levels.
resilience: Daily resilience scores and recovery.
cv-age: Cardiovascular age estimates.
vo2-max: VO2 Max measurements.
ring-config: Ring hardware configuration (color, size, etc.).
rest-mode: Rest mode periods.
tags: Enhanced tags (notes, lifestyle choices).

### Arguments

--start <YYYY-MM-DD>: REQUIRED for most time-series data. The start date of the range.
--end <YYYY-MM-DD>: OPTIONAL. The end date of the range. If omitted, it may default to the start date or return a single day depending on context.

### Agent Instructions

Date Resolution: You MUST resolve all relative date terms (e.g., "today", "yesterday", "last week", "this month") into absolute YYYY-MM-DD string format based on the current operational date.
Date ranges:

For "today": Set --start to today's date.
For "yesterday": Set --start to yesterday's date.
For "last 7 days": Set --start to 7 days ago and --end to today.


Path: Assume the binary is ./oura in the current working directory unless the user specifies otherwise.
Output: The CLI returns JSON. Parse the JSON data array to formulate a natural language response.

### Examples

User Request: "How was my sleep last night?"
Context: Today is 2024-03-15. "Last night" usually implies the sleep session ending on the morning of today, or the previous day's data depending on how Oura dates it (Oura dates sleep by the morning it ends).
Reasoning: Sleep for the night of the 14th to 15th is logged as 2024-03-15.
Command:

./oura get sleep --start 2024-03-15

User Request: "What is my readiness score today?"
Context: Today is 2024-03-15.
Command:

./oura get readiness --start 2024-03-15

User Request: "Show my heart rate for the first week of January 2024."
Command:

./oura get heartrate --start 2024-01-01 --end 2024-01-07

User Request: "Who am I?"
Command:

./oura get personal
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Supadoopa
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T17:58:23.862Z
- Expires at: 2026-05-13T17:58:23.862Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/oura-cli)
- [Send to Agent page](https://openagent3.xyz/skills/oura-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/oura-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/oura-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/oura-cli)