LuLu Monitor

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

What this means

A later change in the GitHub repo or an npm dependency could cause unreviewed code to run on your Mac with the service's firewall-monitoring authority.

Why it was flagged

The installer fetches the latest remote repository and production npm dependencies at install time, rather than using pinned, reviewed artifacts.

Skill content
REPO_URL="https://github.com/EasonC13-agent/lulu-monitor.git" ... git clone "$REPO_URL" "$INSTALL_DIR" ... git pull origin main ... npm install --production
Recommendation

Use a pinned, reviewed release or commit, include the runtime source and lockfile in the skill package, and inspect the downloaded repository before starting the service.

What this means

Enabling a broad agent-spawning tool can increase what local OpenClaw integrations are allowed to do if the gateway or downloaded monitor code is misused.

Why it was flagged

The skill asks the user to enable a gateway tool that is blocked by default, but does not document narrow scoping to this monitor or to specific analysis-only prompts.

Skill content
The monitor calls `sessions_spawn` via OpenClaw's `/tools/invoke` HTTP API. This tool is blocked by default. Add it to the allowlist ... "allow": ["sessions_spawn"]
Recommendation

Limit sessions_spawn to this skill if possible, require explicit approval for high-impact actions, and document the exact data and prompts sent to spawned sessions.

What this means

If implemented as documented, another local process could potentially trigger a LuLu decision while an alert is active.

Why it was flagged

The documented localhost callback can trigger firewall allow/block decisions, including durable rules, and the reviewed documentation does not show authentication or origin checks for that endpoint.

Skill content
curl -X POST http://127.0.0.1:4441/callback ... -d '{"action":"allow"}' ... This will: Click the appropriate button on LuLu alert ... Set Rule Duration to "Always" or "Process lifetime"
Recommendation

Require an authenticated, single-use callback token tied to the Telegram action and current alert, and avoid permanent firewall changes unless the user explicitly confirms them.

What this means

The monitor will keep running after installation until you unload or uninstall the LaunchAgent.

Why it was flagged

The skill installs a launchd job that starts at login and restarts automatically; this is aligned with continuous monitoring but is persistent background behavior.

Skill content
<key>RunAtLoad</key>\n    <true/>\n    <key>KeepAlive</key>\n    <true/> ... <string>$INSTALL_DIR/src/index.js</string>
Recommendation

Install only if you want continuous monitoring, verify the LaunchAgent contents, and use the uninstall script or launchctl to stop it when no longer needed.

What this means

Granting Accessibility to Terminal or osascript can let scripts automate user-interface actions, not just LuLu actions.

Why it was flagged

Accessibility permission is purpose-aligned for controlling LuLu dialogs, but it is a broad macOS UI-automation privilege.

Skill content
Accessibility Permission: System Settings > Privacy > Accessibility > Enable Terminal/osascript ... AppleScript needs permission to control LuLu.
Recommendation

Grant Accessibility only to trusted apps, consider using a dedicated wrapper if available, and revoke the permission when you stop using the monitor.

What this means

Process names, destination IPs, ports, and DNS names from your Mac may be shared with external AI or Telegram services.

Why it was flagged

The skill discloses that local network-connection metadata is sent through AI/OpenClaw and Telegram notification flows.

Skill content
Extracts connection info (process, IP, port, DNS) ... Spawns a fast AI (haiku) to analyze the connection ... Sends Telegram notification with risk assessment
Recommendation

Use it only if you are comfortable sending connection metadata to those services, and verify the Telegram recipient and gateway configuration.