← 返回 Skills 市场
freedompixels

日历管理器

作者 freedompixels · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
116
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install cn-calendar-manager
功能描述
将自然语言事件描述转换为标准.ics日历文件,支持日期解析和Google、Apple、Outlook日历兼容。
使用说明 (SKILL.md)

name: 日历事件创建助手 description: 将自然语言描述转换为标准 .ics 日历文件,支持 Google Calendar / Apple Calendar / Outlook。输入"明天上午10点开会",自动生成可导入的日历事件。 version: "1.0.0" entry: scripts/calendar_manager.py install: pip install python-dateutil

scope:

  • 将自然语言转换为 .ics 日历事件文件
  • 支持今天/明天/后天/下周+具体时间的日期解析
  • 支持自定义时长(小时/半小时)
  • 兼容 Google Calendar、Apple Calendar、Outlook
  • 支持标题、描述、地点的提取

env: []

test: | python3 scripts/calendar_manager.py "明天上午10点开会讨论项目"

输出: calendar_YYYYMMDD_日程.ics

example: input: "下周一14点进行团队培训" output: "calendar_YYYYMMDD_团队培训.ics (周一14:00-15:00)" input: "后天上午9点面试候选人张明" output: "calendar_YYYYMMDD_面试候选人张明.ics (后天09:00-10:00)" input: "2026年5月1日10点开会" output: "calendar_20260501_开会.ics (5月1日10:00-11:00)"

安全使用建议
This skill appears coherent and low-risk: it converts Chinese NL event descriptions into .ics files and does not exfiltrate data or request credentials. Before installing, consider: 1) Source trust — the package has no homepage and an unknown owner ID, so review the code (it's short and readable) before use. 2) File location — the script writes the .ics file to your home directory; if you prefer, run it from a controlled folder or modify the script to write to a directory you choose. 3) Dependency mismatch — SKILL.md suggests installing python-dateutil but the script doesn't use it; you can skip that install or ask the author to clarify. 4) Behavior quirk — UID uses Python's built-in hash(), which is not stable across Python runs; this is not a security problem but may affect deterministic UIDs. If you want stronger assurance, run the script locally with sample inputs to validate output before giving it broader use.
功能分析
Type: OpenClaw Skill Name: cn-calendar-manager Version: 1.1.0 The skill is a legitimate utility for converting natural language descriptions into standard .ics calendar files. The Python script (scripts/calendar_manager.py) uses regular expressions and the datetime library to parse dates and titles, then writes the output file to the user's home directory. There are no signs of data exfiltration, malicious execution, or prompt injection; the code's behavior is entirely consistent with its stated purpose.
能力评估
Purpose & Capability
Name/description match the provided code and SKILL.md: the script parses Chinese natural-language time phrases, extracts title/fields, and writes a .ics file compatible with Google/Apple/Outlook. There are no extra permissions or unrelated requirements. One minor mismatch: SKILL.md recommends 'pip install python-dateutil' but the included script does not import or use dateutil.
Instruction Scope
Runtime instructions are narrowly scoped to running the included Python script with a natural-language argument. The script does not read arbitrary user files, access environment variables, or make network calls. It writes the generated .ics file into the user's home directory (Path.home()), which is expected for a file-generation tool but worth noting.
Install Mechanism
There is no formal install spec in registry metadata (instruction-only), but SKILL.md suggests 'pip install python-dateutil'. That dependency appears unnecessary given the script's imports (datetime, re, pathlib). Using pip is low-risk, but the extra/unneeded dependency is a small inconsistency and should be removed or justified by the author.
Credentials
The skill requires no environment variables, credentials, or config paths. The script does not access secrets or other services; the requested scope is proportionate to the task.
Persistence & Privilege
always:false and no autonomous privilege escalation. The script only writes its own output file to the user home directory and does not modify other skills or system-wide configurations.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install cn-calendar-manager
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /cn-calendar-manager 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
v1.1.0: 修复SKILL.md格式,修复缺失脚本
元数据
Slug cn-calendar-manager
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

日历管理器 是什么?

将自然语言事件描述转换为标准.ics日历文件,支持日期解析和Google、Apple、Outlook日历兼容。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 116 次。

如何安装 日历管理器?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install cn-calendar-manager」即可一键安装,无需额外配置。

日历管理器 是免费的吗?

是的,日历管理器 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

日历管理器 支持哪些平台?

日历管理器 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 日历管理器?

由 freedompixels(@freedompixels)开发并维护,当前版本 v1.1.0。

💬 留言讨论