synology-calendar
Analysis
This appears to be a straightforward Synology Calendar API helper, but it requires NAS login credentials and can modify or delete calendar data.
Findings (2)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
`create_event(...)` | Create event ... `delete_event(evt_id)` | Delete event ... `delete_calendar(cal_id)` | Delete calendar
The documented API includes account-mutating and destructive calendar operations. These fit the skill's management purpose, but they can change or remove user data.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
export SYNOLOGY_URL="http://{nas_ip}:5000" ... export SYNOLOGY_USER="{username}" ... export SYNOLOGY_PASSWORD="your-password"The skill requires Synology endpoint and account credentials so it can log in to the Calendar API. This is expected for the stated purpose, but it gives the agent access to that Synology account.
