Back to skill
v1.0.0

Smart Meeting Notes

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 8:31 AM.

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.

GuidanceBefore installing, consider whether you want meeting summaries saved under ~/.openclaw/meetings/. For sensitive recordings, prefer local transcription and avoid external APIs unless you have reviewed their data handling.

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.

Abnormal behavior control

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.

Unexpected Code Execution
SeverityLowConfidenceHighStatusNote
SKILL.md
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.

User impactIf you provide audio, the agent may invoke installed local transcription software and create transcript output from the file.
RecommendationOnly transcribe files you trust, and confirm you are comfortable with the local Whisper command being used for audio transcription.
Sensitive data protection

Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.

Memory and Context Poisoning
SeverityLowConfidenceHighStatusNote
SKILL.md
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.

User impactPrivate meeting details, decisions, quotes, and action items may remain on disk and be used in later meeting-history or follow-up requests.
RecommendationUse this only for meetings you are comfortable storing locally, and periodically review or delete ~/.openclaw/meetings/ if notes should not be retained.
Insecure Inter-Agent Communication
SeverityLowConfidenceHighStatusNote
SKILL.md
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.

User impactIf you choose an API-based transcription path, meeting recordings may leave your local environment.
RecommendationPrefer local transcription for sensitive meetings, or review the external provider’s privacy and data-handling terms before using its API.