Pixel Lobster Skill
Analysis
The artifacts show a coherent local Electron desktop avatar, with user-visible notes around npm dependency installation, optional system-audio capture, and overlay behavior.
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.
if [ ! -d "node_modules" ]; then echo "Installing dependencies (first run only)..." npm install fi ... npx electron .
The helper performs a package-manager install and then starts the Electron app. This is disclosed and central to the skill, but it means the user is trusting npm-installed code.
if (AUDIO_MODE === 'system') { ... callback(MEDIA_PERMISSIONS.includes(permission)); ... callback({ video: sources[0], audio: 'loopback' }); }When configured for system-audio mode, the Electron app grants media/display-capture permissions and captures loopback audio for animation. This matches the documented feature but is privacy-sensitive.
| `clickThrough` | `false` | Start with click-through mode on so the lobster doesn't block clicks |
The table lists the default as `false` while describing click-through as on, which can mislead users about whether the overlay will block mouse interaction.
