Travel CN
PassAudited by ClawScan on May 1, 2026.
Overview
This instruction-only travel query skill is broadly purpose-aligned and shows no credential use, persistence, or hidden code, though users should verify the external package installs, scraping examples, and referenced scripts before using them.
This looks safe as an instruction-only travel lookup skill. Before using its examples, verify any third-party packages or scripts, prefer official travel APIs when possible, and avoid providing account, payment, or personal travel details unless you intentionally choose to use a trusted service.
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.
If a user or agent follows these examples, it may install external packages or try to run scripts whose contents are not provided here.
The skill references third-party Python packages and helper scripts, but no install spec or script files are included in the supplied artifacts.
pip install selenium ... pip install py12306 ... ./scripts/flight-search.sh
Install packages only from trusted sources, pin versions where practical, and do not run referenced scripts unless their contents are available and reviewed.
Automated scraping could violate site rules, trigger rate limits, or cause temporary access blocks if used aggressively.
The skill documents browser automation for scraping a travel website and explicitly notes a risk of IP blocking.
# 使用 selenium ... driver = webdriver.Chrome() ... driver.get("https://flight.qunar.com/") ... **爬虫风险**: 可能被封 IPPrefer official APIs where available, follow platform terms and rate limits, and ask for user approval before running automated browser scraping.
