技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 20 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:786793119/habit-tracker-companion
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's description matches a habit-tracker, but the runtime instructions require running a Python script that is not provided—this mismatch is suspicious and could lead to executing unknown code if a script with that name exists on the system.
目的
Name and features (add habit, check-in, stats, streaks) align with a habit-tracker. Requesting python3 as a binary is proportional. However, the SKILL.md expects a local script (habit-tracker-companion.py) to exist and be executed; no such code is bundled or installed by the skill, which is an incoherence between claimed capability and provided artifacts.
说明范围
Instructions explicitly tell the agent to run 'python habit-tracker-companion.py' with various commands and to read/write ~/.memory/habits/habits.json. That file-path access is reasonable for a tracker, but directing execution of a local script that the skill does not supply is risky: the agent (or user) might run an unknown script already present on disk or must obtain it from an unspecified source. The SKILL.md does not explain how the scrip…
安装机制
No install spec is present (instruction-only). This is low-risk from an automatic-install perspective since nothing will be downloaded or written by an installer. The only requirement is python3 being available on PATH.
证书
The skill requests no environment variables or credentials. It uses a per-user path (~/.memory/habits/habits.json) for storage, which is consistent with a local habit tracker and is proportionate to the described functionality.
持久
The skill does not request always:true and does not modify other skills or system-wide settings. It can be invoked by the agent (normal). There is no indication of elevated persistence or cross-skill configuration access.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「习惯养成打卡」。简介:习惯养成打卡助手,连续激励、数据统计、陪你养成好习惯。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/786793119/habit-tracker-companion/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: habit-tracker-companion
slug: habit-tracker-companion
version: 1.0.0
description: 习惯养成打卡助手,连续激励、数据统计、陪你养成好习惯。
homepage: https://github.com/786793119/miya-skills
metadata: {"openclaw":{"emoji":"🎯","requires":{"bins":["python3"]},"os":["linux","darwin","win32"]}}
---
# 习惯养成打卡 (Habit Tracker Companion)
陪你养成好习惯的打卡助手。
## 功能
- 添加新习惯
- 打卡记录
- 连续打卡天数统计
- 完成率数据分析
- 连续激励(里程碑鼓励)
## 使用示例
```bash
# 添加习惯
python habit-tracker-companion.py add_habit "每天喝水" "每天喝8杯水"
# 打卡
python habit-tracker-companion.py check_in 1
# 查看连续天数
python habit-tracker-companion.py get_streak 1
# 查看统计
python habit-tracker-companion.py get_stats 1
```
## 数据存储
- 习惯数据: `~/.memory/habits/habits.json`
---
*By Miya - 2026*