IT Events
PassAudited by ClawScan on May 10, 2026.
Overview
This skill appears purpose-aligned for finding IT events, but it can store event history and an optional helper script can create a recurring weekly OpenClaw cron job.
This skill looks safe for its stated purpose. Before using the helper scripts, understand that one script can create a weekly scheduled OpenClaw job and both scripts may update `memory/it-events-sent.json`. Use `openclaw cron list` to review recurring jobs and delete the memory file if you want to reset stored event history.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If installed via this script, the agent can run automatically every Monday to search for events and update its state file.
The helper script creates a scheduled OpenClaw job that will run weekly if the user executes the script.
openclaw cron add \ --name "$JOB_NAME" \ --cron "$CRON_EXPR" \ --tz "$TIMEZONE" \ --session isolated \ --message "$MESSAGE"
Only run the cron setup if you want recurring digests; review scheduled jobs with `openclaw cron list` and delete unwanted jobs.
The skill keeps a local history of events it has sent, including event names, dates, locations, topics, and links.
The skill persistently stores event records to avoid sending duplicates.
Use this file for deduplication: `memory/it-events-sent.json`
Inspect or delete `memory/it-events-sent.json` if you want to reset the deduplication history or remove stored event records.
Running the script delegates the event search and state update to an OpenClaw agent session.
The helper script launches an OpenClaw agent with a generated event-search prompt when run by the user.
openclaw agent --message "$PROMPT"
Review the generated prompt and provide only the intended interests before running the helper script.
