openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > 智能照护排班

通过对话即可完成养老机构护理排班,简单快捷

媒体与内容

作者:Sean zheng @cnspica

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 57 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:cnspica/ai-care-scheduler

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's files and instructions are consistent with a nursing-home scheduling tool; no obvious malicious behavior, but there is an optional/undeclared external API key field and UI auto-generation behavior worth reviewing before use.

目的

Name/description (care scheduling) match the included Python and JS code: scheduler.py and generate.py implement local schedule generation and CSV export; assets implement a UI for entering staff and generating schedules. No unrelated credentials, binaries, or install steps are requested.

说明范围

SKILL.md instructs a simple conversational flow to collect staff names and parameters and to output a Markdown table and offer CSV export. That stays within scope. The included code will create CSV files on disk if executed; SKILL.md does not explicitly document use of the bundled scripts or the client-side '通义千问 API Key' UI element seen in assets/app.js, which could allow the app to call an external model if implemented.

安装机制

No install spec or remote downloads; this is primarily code bundled with the skill (no package installs or archive downloads). This is lower risk than remote install mechanisms.

证书

The skill declares no required env vars or credentials (primaryEnv none). However, assets/app.js exposes an optional input labeled '通义千问 API Key' and a link to dashscope.console.aliyun.com; if the JS uses that key it could transmit staff names and schedule data to a third-party model service. The SKILL.md does not mention this optional external API. Do not provide API keys unless you trust the endpoint and have reviewed the client code path.

持久

always:false and no system-wide config changes. The Python code writes CSV files to the local working directory when exporting—normal for this function but be aware of filesystem writes. There is no indication the skill modifies other skills or requests elevated privileges.

综合结论

The skill appears to do what it says: it generates schedules and can export CSVs. Before installing or using it, review the bundled assets/app.js generate() path to confirm whether it sends data to an external API when an API key is provided. If you will process real staff/personal data, prefer the local Python generator (scheduler.py), avoid entering any third‑party API keys, and run the code in a controlled environment so exported CSVs are s…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「智能照护排班」。简介:通过对话即可完成养老机构护理排班,简单快捷。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/cnspica/ai-care-scheduler/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: 智能照护排班
description: 通过对话即可完成养老机构护理排班,简单快捷
---

# 智能照护排班

通过对话就能完成排班,无需打开网页。

## 触发方式

当用户说以下内容时,使用此 skill:
- "帮我生成养老院排班表"
- "创建护理排班"
- "帮我排个班"
- "生成排班表"

## 对话流程

**第1步:询问工作人员**
请告诉我要排班的工作人员姓名,每行一个。

例如:`张三、李四、王五、赵阿姨`

**第2步:确认参数**
- 每人每周上几班?(默认5班)
- 排班周期:一周还是一个月?(默认一周)
- 从哪天开始?(默认下周周一)

**第3步:生成排班**
直接生成排班表,以表格形式展示,并询问是否需要导出CSV。

## 排班规则(自动应用)

- 不连续排班(连续上班后休息1天)
- 夜班后必须休息1天
- 每周班次不超过设定值
- 尽量公平分配

## 班次配置

系统默认配置:
- 早班 07:00-15:00(需要2人)
- 中班 15:00-23:00(需要2人)
- 夜班 23:00-07:00(需要1人)

## 输出格式

排班结果以 Markdown 表格形式展示,包含:日期、班次、时间、值班人员。

## 示例

**用户**:帮我生成排班表

**你**:请告诉我工作人员姓名(每行一个)

**用户**:张护士、李护理员、王护工、赵阿姨、钱大姐、孙护士

**你**:好的,7人排班。一周还是一个月?每人每周几班?从哪天开始?

**用户**:一周,每人5班,从下周一开始

**你**:生成排班表...

| 日期 | 班次 | 时间 | 值班人员 |
|------|------|------|----------|
| 3月17日 周一 | 早班 | 07:00-15:00 | 张护士、李护理员 |
| 3月17日 周一 | 中班 | 15:00-23:00 | 王护工、赵阿姨 |
| ... | ... | ... | ... |

需要导出CSV文件吗?