lunar-new-year-flight

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is coherent for flight searches, but it should be reviewed because it can direct the agent to install an unpinned global npm CLI before use.

Review before installing. If you use it, approve the flyai CLI installation explicitly, consider installing a verified pinned version yourself, and expect your flight-search details to be sent to the travel provider for real-time booking results.

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

The agent may modify your system and run third-party package installation code before showing flight results.

Why it was flagged

The skill mandates runtime installation of an unpinned global npm package before use. That package code is outside the provided artifacts and the metadata does not provide an install spec or required binary declaration.

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

Require explicit user approval before installation, pin and verify the package version, declare the dependency in install metadata, and prefer a contained or local install.

What this means

Your travel query can cause the agent to run local CLI commands with your origin, destination, and date parameters.

Why it was flagged

The skill is explicitly command-driven and builds CLI calls from user-provided travel parameters. This is expected for real-time flight search, but it is still tool execution rather than passive advice.

Skill content
**You are a CLI executor, NOT a knowledge base.** ... flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}} --sort-type 2
Recommendation

Review the command and parameters before execution, especially if any user-provided value contains unusual shell characters.

What this means

Your travel route, dates, and preferences may be sent to the flyai/Fliggy service to retrieve booking links.

Why it was flagged

The skill discloses use of an external travel provider and sends route/date search details through the flyai CLI. This is purpose-aligned, but it is an external data flow.

Skill content
powered by Fliggy (Alibaba Group) ... flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}}
Recommendation

Use the skill only if you are comfortable sharing those travel-search details with the provider and verify booking links before clicking.