← 返回 Skills 市场
kopfkinok3

ICS CRM Reminder

作者 viSales & Gerhard Schröder · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
137
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ics-crm-reminder
功能描述
Generates ICS calendar files with structured CRM data for B2B sales follow-ups. Creates importable .ics reminders with customer details, deal status, priorit...
使用说明 (SKILL.md)

ICS CRM Reminder — Mini-CRM im Kalender

Generates professional ICS calendar files with complete CRM information for B2B customer outreach. Double-click to import into Apple Calendar, Google Calendar, or Outlook.

When to use this skill

Use this skill whenever a user needs to create a calendar reminder for a customer call, follow-up, or sales meeting. The user provides customer data, and the skill generates a clean ICS file with all CRM details structured in the event description.

Workflow

1. Collect data from the user

Ask the user for the following fields. Not all fields are required — the skill is flexible. Required fields are marked with ⚡.

Field Example Required
⚡ Company Siemens AG Yes
⚡ Date 2026-04-15 Yes
⚡ Time 10:00 Yes
Contact person Dr. Müller No
Phone +49 234 123456 No
Email [email protected] No
Topic / Reason WebAR configurator follow-up No
Priority high / medium / low No (Default: medium)
Last interaction 2026-03-10 — Demo presented No
Deal phase Proposal / Negotiation / Closing / Nurture No
Budget 25,000 € No
Next step Follow up on proposal No
Notes Decision maker on vacation until Apr 12 No
Duration (minutes) 30 No (Default: 30)
Alarm (minutes before) 15 No (Default: 15)

If the user provides data as freeform text, extract fields intelligently. Only ask when Company, Date, or Time are missing.

2. Generate ICS file

Run the script scripts/generate_ics.py with the collected data:

python3 \x3Cskill-path>/scripts/generate_ics.py \
  --firma "Siemens AG" \
  --datum "2026-04-15" \
  --uhrzeit "10:00" \
  --ansprechpartner "Dr. Müller" \
  --telefon "+49 234 123456" \
  --email "[email protected]" \
  --thema "WebAR-Konfigurator Folgegespräch" \
  --prioritaet "hoch" \
  --letzte-interaktion "2026-03-10 — Demo gezeigt" \
  --deal-phase "Angebot" \
  --budget "25.000 €" \
  --naechster-schritt "Angebot nachfassen" \
  --notizen "Entscheider im Urlaub bis 12.04." \
  --dauer 30 \
  --alarm 15 \
  --output "\x3Coutput-path>"

3. Filename convention

YYYY-MM-DD_Company_Reminder.ics

Example: 2026-04-15_Siemens-AG_Reminder.ics

Special characters and spaces in company names are replaced with hyphens.

4. CRM description format inside ICS

The DESCRIPTION field is a structured mini-CRM entry:

═══ viSales CRM Reminder ═══

📋 KUNDE
Firma: Siemens AG
Ansprechpartner: Dr. Müller
Tel: +49 234 123456
Mail: [email protected]

🎯 ANLASS
Thema: WebAR-Konfigurator Folgegespräch
Priorität: ⚡ HOCH

📊 DEAL STATUS
Phase: Angebot
Budget: 25.000 €
Letzte Interaktion: 2026-03-10 — Demo gezeigt

➡️ NÄCHSTER SCHRITT
Angebot nachfassen

📝 NOTIZEN
Entscheider im Urlaub bis 12.04.

───
Generated by viSales CRM Reminder

5. Output

After generating:

  1. Save the ICS file to the user's workspace
  2. Provide a link to the file
  3. Show a brief summary: Company, Date, Topic

Keep the output concise — the user wants the file, not an essay.

Multiple reminders at once

If the user names multiple customers, create a separate ICS file for each. Show a compact overview of all created files at the end.

Edge cases

  • If no year is given, use the current year (or next year if the date is in the past)
  • Natural language like "tomorrow", "next Tuesday", "in 3 days" — calculate the correct date
  • Normalize times like "10 Uhr", "10:00", "10h" to HH:MM
  • If the user says something vague like "call Siemens about the configurator, sometime mid-April" — suggest a concrete date and ask for confirmation
安全使用建议
This skill appears to do exactly what it claims: generate local .ics files from given CRM fields. Before installing, verify the repository source if you need provenance, and run the script on sample data to confirm filename/output location. Note it writes files to the filesystem (ensure the provided output path is safe), does not include timezone data (times are 'floating' which can lead to timezone differences on import), and performs minimal input validation — avoid feeding untrusted or sensitive data unless you control where files are written. If you need timezone-aware events or stricter validation, consider extending the script accordingly.
功能分析
Type: OpenClaw Skill Name: ics-crm-reminder Version: 1.0.0 The skill is a legitimate tool for generating ICS calendar files for CRM reminders. The Python script (scripts/generate_ics.py) uses standard libraries to process user-provided data and write it to a local file, with appropriate filename sanitization and text escaping for the ICS format. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
Name/description say 'generate ICS calendar files' and the skill only requires python3 and includes a script that builds and writes .ics files — this is proportionate and expected.
Instruction Scope
SKILL.md instructs the agent to collect specific CRM fields and run the included script to write an .ics file to the user's workspace. There are no instructions to read unrelated files, access environment secrets, call external endpoints, or exfiltrate data.
Install Mechanism
No install spec; the skill is instruction+script only and runs with an existing python3 binary. No downloads, package installs, or archive extraction are requested.
Credentials
The skill declares no required environment variables or credentials and the script operates only on provided arguments and local filesystem paths. No disproportionate secrets or unrelated service tokens are requested.
Persistence & Privilege
always is false, the skill does not persist configuration beyond writing its output file, and it does not modify other skills or system-wide agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ics-crm-reminder
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ics-crm-reminder 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: ICS calendar files with structured CRM data for B2B sales follow-ups
元数据
Slug ics-crm-reminder
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

ICS CRM Reminder 是什么?

Generates ICS calendar files with structured CRM data for B2B sales follow-ups. Creates importable .ics reminders with customer details, deal status, priorit... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 137 次。

如何安装 ICS CRM Reminder?

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

ICS CRM Reminder 是免费的吗?

是的,ICS CRM Reminder 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

ICS CRM Reminder 支持哪些平台?

ICS CRM Reminder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ICS CRM Reminder?

由 viSales & Gerhard Schröder(@kopfkinok3)开发并维护,当前版本 v1.0.0。

💬 留言讨论