Back to skill
v1.0.1

Get Focus Mode

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 4:50 AM.

Analysis

This skill is a small read-only macOS helper that reports the current Focus mode, with minor notes about local status access and underdeclared macOS/jq requirements.

GuidanceThis appears safe for its stated purpose. Use it if you are comfortable letting the agent see your current macOS Focus mode, and make sure jq is installed on macOS before relying on it.

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.

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.

Agentic Supply Chain Vulnerabilities
SeverityInfoConfidenceHighStatusNote
SKILL.md
## Requirements

- macOS
- `jq` installed

The skill documents a macOS and jq dependency, while the registry metadata declares no OS restriction and no required binaries. This is an underdeclared environment requirement, not evidence of malicious behavior.

User impactThe skill may fail or be offered in unsupported environments unless macOS and jq are available.
RecommendationBefore installing, confirm you are on macOS and have jq installed; maintainers should declare these requirements in metadata.
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
get-focus-mode.sh
~/Library/DoNotDisturb/DB/Assertions.json \
  ~/Library/DoNotDisturb/DB/ModeConfigurations.json

The script reads local macOS Focus/Do Not Disturb state files and outputs the configured mode name. This is exactly the skill's purpose and is read-only, but the result can reveal the user's current local status or custom Focus mode name.

User impactAn agent or user invoking the skill can see your current Focus mode, such as Sleep, Office, or a custom name.
RecommendationInstall only if you are comfortable exposing your current macOS Focus status to the agent session; treat the returned mode name as data, not as instructions.