Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

ical-calendar日历

Agent Skill

ical-calendar 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,246

周安装

138

GitHub Stars

公开资料未说明

下载量

1,137
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ical-calendar(日历)
来源仓库:https://github.com/docmarionum1/ical-calendar
安装命令:
openclaw skills install ical-calendar
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ical-calendar

简介

利用本地 icali CLI 工具解析 .ics 文件或远程 iCal 源,提取日历事件信息。

  • 适用于自然语言查询日程、筛选时间段或合并多日历源的需求。
  • 通过 openclaw skills install ical-calendar 安装,需预先安装 icali 命令行工具。
  • 支持本地和远程数据源,注意网络权限和文件读取限制。
  • 输出格式为结构化事件列表,便于后续处理。

SKILL.md

name
iCal Calendar
description
Query .ics calendar files, raw iCal strings, or remote iCal feeds with the local icali CLI. Use when a user asks for natural-language calendar lookups such as what's on a day, week, or time window, whether a person appears in upcoming meetings, or when filtering iCal events by summary, description, location, date range, status, or component type.
homepage
https://github.com/docmarionum1/iCaLI
metadata
openclaw
requires
bins

iCal Calendar

Use this skill when the user explicitly wants .ics or iCal data, or when the available source is an iCal file, string, or feed.

Source selection

Before querying, identify the real iCal source:

  • Local file: icali --file "/absolute/path/to/calendar.ics"
  • Remote feed: icali --url "https://example.com/calendar.ics"
  • Raw iCal text: icali --string "BEGIN:VCALENDAR..."
  • The positional source argument also works, but explicit --file or --url is usually clearer in agent logs

Never invent a calendar source. If the source is not provided, look for one in the workspace or prior context. If none is available, say you need the .ics path, URL, or raw iCal text.

CLI facts that matter

Prefer --json unless the user explicitly wants raw CLI output.

Important flags:

  • --date YYYY-MM-DD for one calendar day
  • --from YYYY-MM-DD [--to YYYY-MM-DD] for a date range
  • --from-datetime YYYY-MM-DDTHH:mm [--to-datetime YYYY-MM-DDTHH:mm] for a local time window
  • --today as a shortcut for the active timezone
  • --tz <IANA zone> or --utc
  • --search <pattern> for OR search across summary, description, and location
  • --field <k=v> for exact field targeting with AND semantics across repeats
  • --field-any <k=v> for OR search across named fields
  • --limit <n> for the next few matches
  • --exclude-status <s> to drop cancelled items
  • --type <name> where the default is event

Semantics:

  • Range windows are half-open: items match when they overlap [from, to) or [from-datetime, to-datetime)
  • --to and --to-datetime are exclusive
  • --from and --from-datetime may be used without an end value for open-ended upcoming queries
  • --date cannot be combined with range flags
  • Repeated --field filters are ANDed
  • Repeated --field-any groups are ANDed, while fields inside one --field-any group are ORed
  • --search is shorthand for OR search across summary, description, and location
  • --exclude-status matches statuses case-insensitively and may be repeated
  • Date matching uses the active timezone, so set --tz when local day boundaries matter
  • All-day events still use exclusive end semantics

Default workflow

  1. Determine the source and timezone that should govern phrases like "today", "this week", "tomorrow morning", or "upcoming".
  2. Translate the request into:

- a source flag - a date or datetime window - a text filter or field-specific filter - optional --exclude-status CANCELLED - optional --limit - --json

  1. Run icali.
  2. Post-process the JSON in the agent:

- confirm the interpreted range in plain English - keep only the matches that answer the user's question - summarize clearly instead of dumping raw JSON

Natural-language patterns

What's on my calendar today

Use:

icali --file "/path/to/calendar.ics" --today --json

If the timezone should be explicit:

icali --file "/path/to/calendar.ics" --today --tz Europe/London --json

What's on my calendar on a specific day

Use:

icali --file "/path/to/calendar.ics" --date 2026-04-14 --json

What's on my calendar this week

Translate the phrase into an exact week window, then use a date range:

icali --file "/path/to/calendar.ics" --from 2026-04-13 --to 2026-04-20 --json

State the interpreted range in the answer, especially if the locale or timezone affects week boundaries.

What's on my calendar this afternoon

Use a local datetime window:

icali --file "/path/to/calendar.ics" --from-datetime 2026-04-11T12:00 --to-datetime 2026-04-11T18:00 --json

Do I have any upcoming meetings with Stacey

Prefer --search plus an open-ended future window:

icali --file "/path/to/calendar.ics" --from 2026-04-11 --search "/stacey/i" --exclude-status CANCELLED --json

If the user asks for only the next few:

icali --file "/path/to/calendar.ics" --from 2026-04-11 --search "/stacey/i" --exclude-status CANCELLED --limit 3 --json

Find events matching a topic in specific fields

Use --field when the field itself matters:

icali --file "/path/to/calendar.ics" --field "summary=/review/i" --json

Use --field-any when the match may appear in one of several fields:

icali --file "/path/to/calendar.ics" --field-any "summary,description,location=/review/i" --json

Exclude cancelled events from a normal lookup

Use:

icali --file "/path/to/calendar.ics" --from 2026-04-11 --to 2026-04-18 --exclude-status CANCELLED --json

Query design guidance

Prefer these defaults:

  • For day questions: --date or --today
  • For week or multi-day questions: --from and --to
  • For time-of-day questions: --from-datetime and --to-datetime
  • For person or topic matching: --search "/name/i"
  • For meeting-oriented questions: add --exclude-status CANCELLED
  • For "next few" phrasing: add --limit

Use fielded matching only when needed:

  • --search is the simplest natural-language default
  • --field is for exact field targeting
  • --field-any is for named-field OR matching

Avoid these mistakes:

  • Do not answer without identifying the real .ics source
  • Do not omit timezone handling when day boundaries or local times matter
  • Do not use --date when the user asked for a range
  • Do not use repeated --field flags when the user really wants OR semantics
  • Do not forget that --to and --to-datetime are exclusive

Output expectations

Return a normal calendar answer, not a CLI transcript.

Include:

  • the interpreted date or datetime window
  • the matching events in chronological order
  • whether cancelled items were excluded when that affects the result
  • a clear "no matches" answer when nothing qualifies

If the request is underspecified, say exactly what is missing:

  • missing iCal source
  • ambiguous timezone
  • no accessible .ics file or feed found

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.34%
按下载量换算1,107

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills