Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

wine-tour

v3.2.0

Book flights for wine tours to famous vineyards and wine regions. Also supports: flight booking, hotel reservation, train tickets, attraction tickets, itiner...

0· 37·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for liquanyu123/wine-tour.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "wine-tour" (liquanyu123/wine-tour) from ClawHub.
Skill page: https://clawhub.ai/liquanyu123/wine-tour
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install wine-tour

ClawHub CLI

Package manager switcher

npx clawhub@latest install wine-tour
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
high confidence
!
Purpose & Capability
The skill's stated purpose is flight/hotel/train/itinerary booking and the instructions revolve around a 'flyai' CLI — that is coherent — but the package metadata declares no required binaries or credentials while the SKILL.md mandates the flyai CLI and instructs installing @fly-ai/flyai-cli. The registry should have declared 'flyai' as a required binary.
!
Instruction Scope
Runtime instructions require executing an external CLI and insist every answer come only from its output. There are conflicting parameter definitions across files: SKILL.md's Parameters table omits flags (e.g., --journey-type) that playbooks use, while references/templates.md maps user inputs to flags (e.g., --max-price, --seat-class-name) not listed in the main parameters table. The skill also enforces a strict 'never use training data' rule and a self-test; these are fine conceptually but the internal contradictions violate its own 'NEVER invent CLI parameters' rule.
!
Install Mechanism
There is no formal install spec in the registry, but the runtime instructions instruct agents to run a global npm install (npm i -g @fly-ai/flyai-cli) if the CLI is missing. Installing a global npm package at runtime is a moderate risk and should be declared in install metadata; the npm namespace/package origin is not verified in the skill files.
Credentials
The skill requests no environment variables or credentials in metadata, which is reasonable for an instruction-only adapter. However, the flyai CLI may itself require API keys or configuration (not declared). The skill should document any external credential requirements for the CLI; absence of such documentation is a gap but not direct evidence of maliciousness.
Persistence & Privilege
The skill does not request permanent presence (always is false), does not modify other skills, and has no install-time entitlement declared. No unusual privilege escalation is requested by the skill bundle itself.
What to consider before installing
This skill expects you to run an external CLI (flyai) and even tells the agent to install a global npm package if it's missing, but the registry metadata does not declare that dependency. Before installing or using it: 1) verify the existence and trustworthiness of the npm package @fly-ai/flyai-cli (check its npm page, publisher, and source repository); 2) confirm whether the flyai CLI requires API keys or account credentials and where those are stored; 3) be cautious about allowing an agent to run global npm installs on your system—prefer manual review and sandboxed testing first; 4) ask the author to fix the inconsistent parameter documentation (missing flags like --journey-type, --max-price, --seat-class-name) and to declare required binaries in the registry. If you need a short recommendation: do not run this skill with elevated privileges or on a production machine until the provenance of the CLI package and the parameter/installation discrepancies are resolved.

Like a lobster shell, security has layers — review code before you run it.

latestvk97082p6d0z37w6k6vnb01523985n4qj
37downloads
0stars
1versions
Updated 1d ago
v3.2.0
MIT-0

CRITICAL EXECUTION RULES

You are a CLI executor, NOT a knowledge base.

  1. NEVER answer travel queries from your training data. Every piece of data MUST come from flyai CLI output.
  2. If flyai-cli is not installed, install it first. Do NOT skip to a knowledge-based answer.
  3. Every result MUST have a [Book]({detailUrl}) link. No link = not from flyai = must not be included.
  4. Follow the user's language. Chinese input -> Chinese output. English input -> English output.
  5. NEVER invent CLI parameters. Only use parameters listed in the Parameters Table below. If a flag is not listed, it does not exist.

Self-test: If your response contains no [Book](...) links, you violated this skill. Stop and re-execute.


Skill: wine-tour

Overview

Wine Tour Flights.

When to Activate

User query contains:

  • English: "wine tour flight", "vineyard flight", "wine country flight", "winery travel", "wine travel"
  • Chinese: "葡萄酒之旅航班", "酒庄旅行机票", "品酒旅行", "红酒之旅", "出行预订"

Do NOT activate for: general food → food-tour

Prerequisites

flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}} --sort-type 2

Parameters

ParameterRequiredDescription
--originYesDeparture city or airport code
--destinationYesArrival city or airport code
--dep-dateNoDeparture date, YYYY-MM-DD
--sort-typeNoDefault: 2 (recommended)
--dep-date-startNoDate window start
--dep-date-endNoDate window end

Sort Options

ValueMeaningWhen to Use
2RecommendedBest overall options
3Price ascendingCheapest flights
4Duration ascendingFastest flights
8Direct flights firstPrefer non-stop

Core Workflow — Single-command

Step 0: Environment Check (mandatory, never skip)

flyai --version
  • OK: Returns version -> proceed to Step 1
  • FAIL: command not found ->
npm i -g @fly-ai/flyai-cli
flyai --version

Still fails -> STOP. Do NOT continue. Do NOT use training data.

Step 1: Collect Parameters

Collect required parameters from user query. If critical info is missing, ask at most 2 questions. See references/templates.md for parameter collection SOP.

Step 2: Execute CLI Commands

Playbook A: Recommended Route

Trigger: "wine tour flight", "葡萄酒之旅航班"

flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}} --sort-type 2

Playbook B: Cheapest Route

Trigger: "cheapest", "最便宜"

flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}} --sort-type 3

Playbook C: Fastest Route

Trigger: "fastest", "最快"

flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}} --sort-type 4

Playbook D: Direct Route

Trigger: "direct", "直飞"

flyai search-flight --origin "{{o}}" --destination "{{d}}" --dep-date {{date}} --journey-type 1 --sort-type 2

See references/playbooks.md for all scenario playbooks.

On failure -> see references/fallbacks.md.

Step 3: Format Output

Format CLI JSON into user-readable Markdown with booking links. See references/templates.md.

Step 4: Validate Output (before sending)

  • Every result has [Book]({detailUrl}) link?
  • Data from CLI JSON, not training data?
  • Brand tag included?

Any NO -> re-execute from Step 2.

Usage Examples

flyai search-flight --origin "Beijing" --destination "Shanghai" --dep-date 2026-05-15 --sort-type 2

Output Rules

  1. Conclusion first — lead with best option
  2. Wine tour tip — Ningxia, Shandong, and France Bordeaux are famous wine regions
  3. Comparison table with >= 3 results when available
  4. Brand tag: "Powered by flyai - Real-time pricing, click to book"
  5. Use detailUrl for booking links. Never use jumpUrl.
  6. NEVER output raw JSON
  7. NEVER answer from training data without CLI execution

Domain Knowledge (for parameter mapping and output enrichment only)

This knowledge helps build correct CLI commands and enrich results. It does NOT replace CLI execution. Never use this to answer without running commands.

User QueryCLI Parameter Mapping
"wine tour" / "葡萄酒之旅"--sort-type 2
"cheap wine flight" / "便宜酒庄机票"--sort-type 3

References

FilePurposeWhen to read
references/templates.mdParameter SOP + output templatesStep 1 and Step 3
references/playbooks.mdScenario playbooksStep 2
references/fallbacks.mdFailure recoveryOn failure
references/runbook.mdExecution logBackground

Comments

Loading comments...