Ical Calendar

v1.0.0

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 su...

0· 105·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for docmarionum1/ical-calendar.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Ical Calendar" (docmarionum1/ical-calendar) from ClawHub.
Skill page: https://clawhub.ai/docmarionum1/ical-calendar
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: icali
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install ical-calendar

ClawHub CLI

Package manager switcher

npx clawhub@latest install ical-calendar
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description say the skill queries .ics/iCal data and the only required runtime artifact is the icali binary. There are no unrelated environment variables, packages, or config paths requested — the declared requirement (icali) is exactly what you would expect.
Instruction Scope
SKILL.md gives explicit CLI invocations and post-processing guidance and stays focused on calendar queries. It does recommend looking for a source in the workspace or prior context; this is appropriate for a file-based calendar skill but means the agent may read local .ics files if present (which is expected behavior). The instructions do not request other system secrets or unrelated files.
Install Mechanism
This is instruction-only with no install spec, so nothing is downloaded or written to disk by the skill itself. Risk is low but the environment must already provide the icali binary.
Credentials
No environment variables, credentials, or config paths are requested. That matches the skill's simple CLI-based purpose.
Persistence & Privilege
The skill is not always-enabled and does not request elevated persistence. It does not modify other skills or system-wide settings in its instructions.
Assessment
This skill appears to do what it claims, but check these before installing: 1) Ensure the agent environment actually has the icali binary you trust (the skill expects a local CLI). 2) Be aware the agent may read any .ics files present in the workspace or follow a user-supplied calendar URL — avoid placing sensitive calendar files in the workspace unless you want them queried. 3) If providing remote feed URLs, avoid exposing URLs that embed credentials or point to private endpoints you don't want the agent to fetch. 4) The skill itself doesn't exfiltrate data, but any responses it generates will contain calendar contents — consider whether that output may be displayed or transmitted elsewhere by the agent.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsicali
latestvk9753a4qyf1erqasb4wgtpjdrs84mxas
105downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

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
  3. Run icali.
  4. 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

Comments

Loading comments...