一键导入
calendar
Calendar management and scheduling. Create ICS events, manage meetings, and handle date/time parsing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Calendar management and scheduling. Create ICS events, manage meetings, and handle date/time parsing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Agile product ownership for backlog management and sprint execution. Covers user story writing, acceptance criteria, sprint planning, and velocity tracking. Use for writing user stories, creating acceptance criteria, planning sprints, estimating story points, breaking down epics, or prioritizing backlog.
Fetch MLB game schedules, live game status, box scores, player search, and season statistics via the MLB Stats API. Use when the user asks about baseball games, scores, who is playing today, game results, live updates, pitching matchups, MLB schedule information, player lookups, or player stats.
Software build systems reference — Make, CMake, Bazel, Gradle, incremental builds, remote caching, and dependency management
八字排盘与农历/干支日期查询技能。用于用户请求“算八字”“四柱排盘”“阳历/农历时间转八字”“查询某天农历或干支日期”“查黄历/宜忌”等场景;关键词包括:八字、四柱、命理、阳历转八字、农历转八字、黄历、宜忌、干支日期、农历日期。 / Bazi charting and Chinese calendar conversion skill. Use for requests like “calculate my Bazi”, “Four Pillars chart”, “convert solar/lunar datetime to Bazi”, “check Chinese almanac (huangli)”, or “check auspicious/inauspicious activities (yi-ji) for a date”; keywords include: Bazi, Four Pillars, solar-to-Bazi, lunar-to-Bazi, Chinese calendar, Chinese almanac (huangli), yi-ji, heavenly stems and earthly branches.
Data visualization tool producing SVG charts. Use when you need bar charts, line charts, pie charts, tables, sparklines, gauges,.
Generate or refine agent-usable CLIs for existing software/codebases using the CLI-Anything methodology. Use when the user wants to turn a GUI app, desktop tool, repository, SDK, or web/API surface into a structured CLI for agents; when adapting CLI-Anything into OpenClaw workflows; or when packaging a generated harness as an OpenClaw-compatible skill.
| name | calendar |
| description | Calendar management and scheduling. Create ICS events, manage meetings, and handle date/time parsing. |
The iCalendar (.ics) format is the standard for calendar event files. Use this structure:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Agent//Calendar//EN
BEGIN:VEVENT
DTSTART:20260405T150000Z
DTEND:20260405T160000Z
SUMMARY:Meeting Title
DESCRIPTION:Meeting description
ATTENDEE;CN=Name:mailto:email@example.com
UID:unique-id@agent
END:VEVENT
END:VCALENDAR
YYYYMMDD formatYYYYMMDDTHHMMSS or YYYYMMDDTHHMMSSZ (UTC)| Field | Format | Example |
|---|---|---|
| DTSTART | YYYYMMDDTHHMMSS | 20260407T150000 |
| SUMMARY | Plain text | Project Sync |
| DESCRIPTION | Plain text | Discuss Q1 roadmap |
| ATTENDEE | mailto:email | mailto:john@example.com |
| LOCATION | Plain text | Conference Room A |
| RRULE | Recurrence rule | FREQ=WEEKLY;COUNT=10 |