一键导入
calendar
// Calendar management and scheduling. Create ICS events, manage meetings, and handle date/time parsing.
// Calendar management and scheduling. Create ICS events, manage meetings, and handle date/time parsing.
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.
This skill should be used when the user needs to analyze Git repositories, compare developer commit patterns, work habits, development efficiency, code style, code quality, and slacking behaviors. It generates honest, direct developer evaluations with scores, grades, strengths, weaknesses, and actionable suggestions. Trigger phrases include "analyze code", "analyze repository", "compare developers", "code quality report", "commit patterns", "developer efficiency", "developer evaluation", "slacking index", "摸鱼指数", "工作习惯分析", "代码分析", "研发效率", "代码质量", "开发者评估", "developer score".
| 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 |