From sundial-org-awesome-openclaw-skills-4
Retrieves Oura Ring biometric data via Go CLI from API V2, covering sleep scores, activity, readiness, heart rate, workouts, SpO2, and stress levels. Query with start/end dates for health stats.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
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.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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
cd ~
git clone https://github.com/ruhrpotter/oura-cli.git
cd oura-cli
go build -o oura ./cmd/oura
http://localhost:8080/callbackexport OURA_CLIENT_ID="your_client_id"
export OURA_CLIENT_SECRET="your_client_secret"
./oura auth login
A browser will open for OAuth authorization. Tokens are stored in ~/.config/oura-cli/config.json.
The CLI must be authenticated. If a command fails with an auth error, notify the user to run ./oura auth login.
./oura get <category> [flags]
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).--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.YYYY-MM-DD string format based on the current operational date.--start to today's date.--start to yesterday's date.--start to 7 days ago and --end to today../oura in the current working directory unless the user specifies otherwise.data array to formulate a natural language response.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