Track water and sleep with JSON file storage
使用JSON文件简单记录饮水和睡眠情况。
文件:{baseDir}/health-data.json
json
{
water: [{time: ISO8601, cups: 2}],
sleep: [{time: ISO8601, action: sleep|wake}]
}
当用户说uống X cốc或uống nước X cốc时:
bash
node -e const fs=require(fs);const f={baseDir}/health-data.json;let d={water:[],sleep:[]};try{d=JSON.parse(fs.readFileSync(f))}catch(e){}d.water.push({time:new Date().toISOString(),cups:CUPS});fs.writeFileSync(f,JSON.stringify(d));console.log(Da ghi: +CUPS+ coc)
将CUPS替换为用户输入的数值。
当用户说đi ngủ时:
bash
node -e const fs=require(fs);const f={baseDir}/health-data.json;let d={water:[],sleep:[]};try{d=JSON.parse(fs.readFileSync(f))}catch(e){}d.sleep.push({time:new Date().toISOString(),action:sleep});fs.writeFileSync(f,JSON.stringify(d));console.log(Da ghi: di ngu)
当用户说thức dậy或dậy rồi时:
bash
node -e const fs=require(fs);const f={baseDir}/health-data.json;let d={water:[],sleep:[]};try{d=JSON.parse(fs.readFileSync(f))}catch(e){}const last=d.sleep.filter(s=>s.action===sleep).pop();d.sleep.push({time:new Date().toISOString(),action:wake});fs.writeFileSync(f,JSON.stringify(d));if(last){const h=((new Date()-new Date(last.time))/3600000).toFixed(1);console.log(Da ngu: +h+ gio)}else{console.log(Da ghi: thuc day)}
当用户说thống kê或xem thống kê时:
bash
node -e const fs=require(fs);const f={baseDir}/health-data.json;let d={water:[],sleep:[]};try{d=JSON.parse(fs.readFileSync(f))}catch(e){}console.log(Water:,d.water.length,records);console.log(Sleep:,d.sleep.length,records);const today=d.water.filter(w=>new Date(w.time).toDateString()===new Date().toDateString());console.log(Today:,today.reduce((s,w)=>s+w.cups,0),cups)
更新最后一条饮水记录:
bash
node -e const fs=require(fs);const f={baseDir}/health-data.json;let d=JSON.parse(fs.readFileSync(f));d.water[d.water.length-1].cups=NEW_CUPS;fs.writeFileSync(f,JSON.stringify(d));console.log(Updated)
删除最后一条饮水记录:
bash
node -e const fs=require(fs);const f={baseDir}/health-data.json;let d=JSON.parse(fs.readFileSync(f));d.water.pop();fs.writeFileSync(f,JSON.stringify(d));console.log(Deleted)
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 healthcheck-litiao-1776346502 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 healthcheck-litiao-1776346502 技能
skillhub install healthcheck-litiao-1776346502
文件大小: 1.58 KB | 发布时间: 2026-4-17 15:00