airport-lounge

ReviewAudited by ClawScan on May 10, 2026.

Overview

The travel-search purpose is coherent, but the skill can make the agent install and run an unpinned global npm CLI without an install spec or explicit user approval.

Review carefully before installing. The flight-search function itself is coherent, but you should not let the agent run `npm i -g @fly-ai/flyai-cli` unless you trust that npm package and are comfortable with a global install. Prefer approving installation manually, checking the package source/version, and sharing only the travel details needed for the search.

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.

What this means

Installing an unreviewed global npm package can run third-party code on the user's machine and change the local environment before any travel result is shown.

Why it was flagged

The skill is presented as instruction-only with no install spec, but it directs installation of an unpinned external npm package at runtime.

Skill content
If flyai-cli is not installed, install it first... npm i -g @fly-ai/flyai-cli
Recommendation

Declare the CLI as an explicit dependency, pin the package/version, document its source, and require clear user confirmation before installation.

What this means

The agent may modify the user's system or execute newly downloaded code without a separate approval step.

Why it was flagged

The skill makes local command execution and package installation mandatory, and the install can execute npm lifecycle scripts or place executables globally.

Skill content
Step 0: Environment Check (mandatory, never skip)... flyai --version ... FAIL: command not found -> npm i -g @fly-ai/flyai-cli
Recommendation

Ask the user before running installation commands, prefer a local sandboxed install, and avoid mandatory execution of downloaded code from within the skill instructions.

What this means

Travel search details may be sent to the external provider as part of normal operation.

Why it was flagged

The skill routes travel searches through the flyai/Fliggy provider, so origin, destination, dates, and preferences are expected to leave the local agent context.

Skill content
powered by Fliggy (Alibaba Group)... Every piece of data MUST come from `flyai` CLI output.
Recommendation

Use the skill only for travel details you are comfortable sharing with the provider, and avoid entering unnecessary sensitive personal information.