healthcheck

Track water intake and sleep data in a local JSON file.

Updated Feb 4, 2026
One-click install
npx skills add https://github.com/SennTse/openclaw-backup --skill healthcheck-senntse
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: healthcheck
Source: https://github.com/SennTse/openclaw-backup/tree/main/skills/healthcheck
Command: npx skills add https://github.com/SennTse/openclaw-backup --skill healthcheck-senntse

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Healthcheck provides a lightweight, local way to track daily water intake and sleep data using a JSON file, enabling simple persistence without a database or cloud service.

Core Features & Use Cases

  • Record water: add new water intake entries with timestamps.
  • Record sleep and wake events: log sleep sessions and wake times to monitor rest patterns.
  • View statistics: summarize today’s water and sleep activity and inspect historical trends.

Quick Start

Record 2 cups of water today and log sleep at 11:00 PM to health-data.json.

Frequently Asked Questions about healthcheck

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I track daily water intake and sleep data using a local JSON file?

Track daily water intake and sleep data by running Node.js scripts that add, view, update, and delete entries in a local health-data.json file. It provides lightweight persistence without needing a database or cloud service.

What is the best way to log health events with ISO8601 timestamps without a database?

Logging health events with ISO8601 timestamps is handled via local JSON storage. Node.js scripts record water intake and sleep sessions directly to a portable JSON file, bypassing database setup for simple personal health monitoring.

Can I use Node.js to store and update sleep tracking records in local storage?

Yes, you can use Node.js to add and update sleep tracking records in local JSON storage. The scripts support logging sleep and wake times, allowing you to monitor rest patterns and view historical trends.

Does local JSON health tracking support viewing statistics for today's water and sleep activity?

Local JSON health tracking supports viewing statistics by summarizing today's water and sleep activity. The Node.js scripts inspect historical trends and provide simple analytics directly from the stored health-data.json records.

What are the limitations of using a JSON file for personal health monitoring versus a database?

Using a JSON file for personal health monitoring limits scalability compared to a database, as data is stored locally without cloud sync. It suits lightweight, portable tracking for individual water and sleep entries rather than heavy concurrent access.

How do I delete or update water intake entries in a local health-data.json file?

Update or delete water intake entries in the health-data.json file using dedicated Node.js script operations. The Skill includes full CRUD functionality to manage daily health records and ensure accurate historical tracking.