make a recipe
Analysis
This is a simple Pomodoro timer skill with user-directed terminal commands and a small optional local log, though its display name is confusing.
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.
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.
Name: make a recipe ... Description: Use this skill when a user wants to run timed focus sessions
The public name does not match the stated Pomodoro timer purpose, which could confuse users, although the description and SKILL.md content are consistent with a focus timer.
echo "🍅 Focus started at $(date +%H:%M)" && sleep 1500 && osascript -e 'display notification "Time for a break!" with title "Pomodoro"'
The skill tells the agent/user to run terminal commands. This is central to the stated terminal timer purpose and does not show destructive or hidden behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
echo "$(date +%Y-%m-%d) $(date +%H:%M) - 25min focus" >> ~/pomodoro.log
The skill can append completed-session timestamps to a local log file. This is purpose-aligned but creates a small persistent activity record.
