Skill flagged — suspicious patterns detected

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

yoga-retreat

v3.2.0

Book flights for yoga retreats and wellness travel destinations. Also supports: flight booking, hotel reservation, train tickets, attraction tickets, itinera...

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/yoga-retreat.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "yoga-retreat" (liquanyu123/yoga-retreat) from ClawHub.
Skill page: https://clawhub.ai/liquanyu123/yoga-retreat
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 yoga-retreat

ClawHub CLI

Package manager switcher

npx clawhub@latest install yoga-retreat
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The description claims broad travel support (flights, hotels, trains, visas, insurance) and says 'powered by Fliggy (Alibaba Group)', but the runtime instructions only reference a single CLI tool (flyai) and a small set of flight-search commands. The Fliggy attribution and the broader capabilities are not justified by the commands present in SKILL.md.
!
Instruction Scope
SKILL.md demands that every answer come from the flyai CLI and instructs installing @fly-ai/flyai-cli if missing. It also enforces a self-test that requires re-executing if results lack a booking link, which could lead to repeated retries. The instructions modify system state (global npm install) and give the agent broad discretion to re-run commands until conditions are met — this is more intrusive than a purely read-only instruction-only skill.
!
Install Mechanism
Although the skill bundle has no formal install spec, the runtime instructions explicitly direct installing an npm package globally (npm i -g @fly-ai/flyai-cli). Installing a global npm package is a moderate-risk action: it pulls code from the public registry and writes to disk/system paths, but no vetted install metadata is provided by the registry entry itself. The install step is untracked in the skill metadata.
Credentials
The skill does not request environment variables, credentials, or config paths. It appears not to require secrets from the user. However, the skill will rely on network activity by the flyai CLI at runtime; no credentials are requested by the SKILL.md itself.
Persistence & Privilege
The skill is not marked always:true and does not request persistent privileges. That said, it instructs installing a global CLI (changes system state). Autonomous invocation is allowed by default (platform normal), which combined with the ability to install/run a CLI increases attack surface if the CLI is untrusted.
What to consider before installing
This skill instructs the agent to install and use a third‑party npm CLI (@fly-ai/flyai-cli) at runtime even though the skill metadata has no install spec — only install/run it if you trust the package and its author. The SKILL.md also claims it is 'Powered by Fliggy' and supports hotels/trains/visa info, but the commands only search flights; ask the publisher to clarify the Fliggy relationship and which commands implement non-flight features. Before running: (1) inspect the @fly-ai/flyai-cli package (npm page / source) in a sandbox, (2) avoid running global installs on production machines, (3) verify whether the CLI will prompt for credentials or send data externally, and (4) request that the skill author add a formal install spec and provenance (homepage/source) so you can audit what the CLI does. If you cannot verify the CLI, treat the skill as high risk and do not install it.

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

latestvk97d6p4a5jj02h6vj2eadpsdhd85n73p
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: yoga-retreat

Overview

Yoga Retreat Flights.

When to Activate

User query contains:

  • English: "yoga retreat flight", "wellness flight", "meditation retreat", "spa retreat flight", "yoga travel"
  • Chinese: "瑜伽静修航班", "养生旅行机票", "冥想度假", "身心健康出行", "出行预订"

Do NOT activate for: wellness → hot-springs

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: "yoga retreat 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. Yoga retreat tip — Bali, Thailand, and India Rishikesh are top destinations
  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
"yoga retreat" / "瑜伽静修"--sort-type 2
"wellness direct" / "养生直飞"--journey-type 1 --sort-type 2

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...