Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Calendar Optimizer

Analyzes and rewrites calendar events into clear, actionable tasks. Removes meeting fluff and converts vague descriptions into specific deliverables with dea...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 36 · 1 current installs · 1 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
high confidence
!
Purpose & Capability
The stated purpose (convert calendar events into clear, actionable tasks) matches the script's core transformation logic at a conceptual level, but the SKILL.md claims batch CSV input and Markdown output. The bundled optimize.py does not accept --input/--output or parse CSV; it only accepts --event and --time and prints to stdout. This mismatch means the skill as packaged cannot perform the advertised batch workflow without modification.
!
Instruction Scope
SKILL.md instructs the agent to run 'python3 optimize.py --input calendar.csv --output tasks.md' and provides CSV/examples, implying file I/O and batch processing. The script's runtime instructions (and argparse) do not support those flags or file processing, so following the documentation will fail or cause the agent to attempt ad-hoc workarounds. The instructions do not request any unrelated files, env vars, or network access — the issue is scope mismatch, not hidden data access.
Install Mechanism
No install spec is provided; it's an instruction-only skill with a small included script. There is no remote download, package installation, or archive extraction — minimal disk impact and low install risk.
Credentials
The skill requires only python3 and declares no environment variables, credentials, or config paths. That is proportionate for the task and consistent with the code, which performs local string processing only.
Persistence & Privilege
always is false and the skill does not request persistent presence or modify agent/system configuration. It does not attempt to store tokens or alter other skills.
What to consider before installing
Do not assume the skill will process calendar CSVs as the README claims — the included script only handles a single event via --event and --time. If you want batch CSV → Markdown behavior, either (a) ask the publisher for an updated SKILL.md or a fixed script that supports --input/--output and CSV parsing, or (b) inspect and modify optimize.py locally to add a CSV-reading/writing wrapper before using it on real calendar data. Because the code is short and contains no network or credential access, it isn't overtly malicious, but the documentation-code mismatch is a real usability and coherence issue. Test the script on non-sensitive sample events first and review/approve any modifications before running on real calendars.

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

Current versionv1.0.0
Download zip
latestvk974s6wv5vxtd7bxhe56d6qzq583vbcw

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📅 Clawdis
Binspython3

SKILL.md

Calendar Optimizer

Transforms messy calendar events into clear, actionable tasks.

Usage

python3 optimize.py --input calendar.csv --output tasks.md

Input Format

event,time,attendees
"Synergy sync - let's circle back",Monday 2pm,5
"Q4 Planning - moving forward paradigm shift",Tuesday 10am,8

Output

## Monday 2pm — Synergy Sync
**Actual topic:** Website redesign review
**Action:** Review mockups and give feedback
**Prep:** Bring 3 specific comments
**Attendees:** 5 (note: consider sending deputy)

## Tuesday 10am — Q4 Planning
**Actual topic:** Q4 OKR finalization
**Action:** Approve final OKRs
**Prep:** Review draft OKRs sent Friday
**Attendees:** 8 (decision-maker: Sarah)

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…