Smart Meeting Notes
Analysis
This instruction-only skill is aligned with making meeting notes, but users should notice that it saves notes locally and may use transcription tools for audio.
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.
Check if Whisper CLI is available (`which whisper`)... transcribe with `whisper [file] --output_format txt`
The skill instructs the agent to use a local command-line transcription tool for user-provided audio files. This is expected for audio handling but is still local command execution.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Save all meeting notes to `~/.openclaw/meetings/[date]-[topic].md`
The skill intentionally stores meeting notes for later reuse, which is purpose-aligned but may retain sensitive meeting content.
If no: tell user to install: `pip install openai-whisper` or use the OpenAI Whisper API
The skill mentions an external transcription API as an option. This is disclosed and user-directed, but using it could send meeting audio to an external provider.
