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.

What this means

If installed via this script, the agent can run automatically every Monday to search for events and update its state file.

Why it was flagged

The helper script creates a scheduled OpenClaw job that will run weekly if the user executes the script.

Skill content
openclaw cron add \
  --name "$JOB_NAME" \
  --cron "$CRON_EXPR" \
  --tz "$TIMEZONE" \
  --session isolated \
  --message "$MESSAGE"
Recommendation

Only run the cron setup if you want recurring digests; review scheduled jobs with `openclaw cron list` and delete unwanted jobs.

What this means

The skill keeps a local history of events it has sent, including event names, dates, locations, topics, and links.

Why it was flagged

The skill persistently stores event records to avoid sending duplicates.

Skill content
Use this file for deduplication:

`memory/it-events-sent.json`
Recommendation

Inspect or delete `memory/it-events-sent.json` if you want to reset the deduplication history or remove stored event records.

What this means

Running the script delegates the event search and state update to an OpenClaw agent session.

Why it was flagged

The helper script launches an OpenClaw agent with a generated event-search prompt when run by the user.

Skill content
openclaw agent --message "$PROMPT"
Recommendation

Review the generated prompt and provide only the intended interests before running the helper script.