技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 23 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:786793119/smart-reminder-companion
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's description matches a local Python-based reminder tool, but the package contains no script or install instructions — it instructs running a python script that isn't present and will read/write files under the user's home directory.
目的
Name/description (smart reminder) aligns with requiring python3 and storing reminders locally, but the SKILL.md commands call python smart-reminder-companion.py even though no code files or install steps are included in the skill bundle. It's unclear whether the agent is expected to have that script preinstalled or fetch it from the GitHub homepage.
说明范围
Instructions are narrowly scoped to adding/listing/deleting reminders and reference a local data file (~/.memory/reminders/reminders.json). They do not request other environment variables or instruct the agent to read unrelated system files or phone home. However, they do direct the agent to execute a local Python script if present.
安装机制
No install spec (instruction-only). This is low-risk from an automatic-install perspective, but it relies on an external Python script that is not bundled — the origin of that script must be verified separately.
证书
The skill requests no credentials or environment variables. The only resource referenced is the user's home path for storing reminders, which is proportionate for a reminder tool. Still, storing data in ~/.memory may contain personal information and should be considered.
持久
always is false and the skill does not request elevated privileges or modify other skills/configs. The agent can invoke the skill autonomously (platform default); combined with the missing script, this means the agent might try to execute an external binary if it exists on the system — review before enabling autonomous runs.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「每日提醒小管家」。简介:智能提醒小管家,支持定时提醒、情绪联动提醒、场景化提醒。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/786793119/smart-reminder-companion/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: smart-reminder-companion
slug: smart-reminder-companion
version: 1.0.0
description: 智能提醒小管家,支持定时提醒、情绪联动提醒、场景化提醒。
homepage: https://github.com/786793119/miya-skills
metadata: {"openclaw":{"emoji":"⏰","requires":{"bins":["python3"]},"os":["linux","darwin","win32"]}}
---
# 每日提醒小管家 (Smart Reminder Companion)
你的私人智能提醒管家。
## 功能
- 添加/删除提醒
- 查看所有提醒
- 启用/禁用提醒
- 情绪联动建议
- 天气相关提醒
## 使用示例
```bash
# 添加提醒
python smart-reminder-companion.py add "09:00" "起床啦~" daily
# 查看提醒
python smart-reminder-companion.py list
# 删除提醒
python smart-reminder-companion.py delete <ID>
```
## 数据存储
- 提醒数据: `~/.memory/reminders/reminders.json`
---
*By Miya - 2026*