Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

skiplagged-flights延误航班

Agent Skill

skiplagged-flights 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

89,567

周安装

3,695

GitHub Stars

3

下载量

29,264
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skiplagged-flights(延误航班)
来源仓库:https://github.com/wzs/skiplagged-flights
安装命令:
openclaw skills install skiplagged-flights
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skiplagged-flights

简介

专门用于航班搜索和行程比较的智能查询工具。

  • 支持隐藏城市路线搜索和最便宜日期查询功能。
  • 可帮助用户探索目的地和酒店组合方案。
  • 使用前需确认 API 密钥有效性及相关服务可用性。
  • 建议核对搜索结果的真实性和时效性。skiplagged-flights 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
skiplagged-flights
description
Use when the user asks to "find flights", "compare itineraries", "search hidden-city routes", "check cheapest dates", "explore destinations", "search hotels", "plan a trip", etc, or general flights / trip planning. Ground outputs in offical Skiplagged MCP results.
homepage
https://skiplagged.com
metadata
{"openclaw":{"emoji":"✈️","homepage":"https://skiplagged.com","requires":{"bins":["mcporter"]},"install":[{"id":"node","kind":"node","package":"mcporter","bins":["mcporter"],"label":"Install mcporter (node)"}]}}

Skiplagged Flights (MCP)

This skill queries Skiplagged's public MCP server to search flights, hotels, cars and flexible date calendars.

  • Server URL: https://mcp.skiplagged.com/mcp
  • Auth: none (public server)

Prerequisites

1) Ensure the mcporter CLI is available on PATH (this skill declares it as a required binary).

2) Prefer ad-hoc HTTPS targeting (no local mcporter config required):

# Inspect tools + schemas (recommended)
mcporter list https://mcp.skiplagged.com/mcp --schema

Quick start

mcporter call https://mcp.skiplagged.com/mcp.sk_flights_search origin=WAW destination=LHR departureDate=2026-03-15 --output json
If your environment already has a configured server name skiplagged, mcporter call skiplagged.sk_flights_search ... is equivalent. Using the explicit HTTPS URL is preferred because it avoids relying on (or enumerating) local MCP config.

Tools

sk_flights_search

Search flights between locations.

Required: origin, destination, departureDate

Common options (verify exact names via --schema):

  • returnDate - round-trip date
  • sort - price, duration, value (default)
  • limit - max results (default ~12)
  • maxStops - none, one, many
  • fareClass - basic-economy, economy, premium, business, first
  • preferredAirlines / excludedAirlines - comma-separated IATA codes (e.g., UA,DL)
  • departureTimeEarliest / departureTimeLatest - minutes from midnight (0–1439)

Examples:

# Cheapest one-way
mcporter call https://mcp.skiplagged.com/mcp.sk_flights_search origin=NYC destination=LAX departureDate=2026-03-15 sort=price limit=5

# Round-trip, nonstop only
mcporter call https://mcp.skiplagged.com/mcp.sk_flights_search origin=WAW destination=CDG departureDate=2026-04-10 returnDate=2026-04-17 maxStops=none limit=5

# Exclude budget airlines, morning only (6am–12pm)
mcporter call https://mcp.skiplagged.com/mcp.sk_flights_search origin=LHR destination=JFK departureDate=2026-05-01 excludedAirlines=F9,NK departureTimeEarliest=360 departureTimeLatest=720 limit=5

sk_flex_departure_calendar

Find cheapest fares around a departure date.

mcporter call https://mcp.skiplagged.com/mcp.sk_flex_departure_calendar origin=WAW destination=BCN departureDate=2026-06-15 sort=price --output json

sk_flex_return_calendar

Find cheapest round-trip fares for a fixed trip length.

mcporter call https://mcp.skiplagged.com/mcp.sk_flex_return_calendar origin=WAW destination=NYC departureDate=2026-07-01 returnDate=2026-07-08 --output json

sk_destinations_anywhere

Discover cheap destinations when flexible.

mcporter call https://mcp.skiplagged.com/mcp.sk_destinations_anywhere from=WAW depart=2026-03-15 --output json

Response formatting

When presenting results to users:

  • Never use markdown tables — use bullet lists or labeled lines.
  • Use MarkdownV2-compatible formatting when replying in Telegram-style channels.
  • Keep replies mobile-friendly: concise, scannable.
  • Show top 3–5 options by default; offer to expand.
  • Include booking/deep links when returned.
  • If hidden-city itineraries appear, present clear caveats (checked-bag constraints and missed-leg implications).
  • Highlight savings, routing insights, and key tradeoffs (stops vs duration vs price).

Good example:

Found 3 flights WAW → LHR on Mar 15:

• $90 · 2h 35m · nonstop
  LOT
  05:40 WAW → 07:15 LHR
  [Book](link)

• $91 · 4h 20m · 1 stop
  SAS
  06:10 WAW → 09:30 LHR
  [Book](link)

Tips

  • Prefer IATA codes (e.g., WAW, LHR, JFK) when possible.
  • Use --output json when you need structured data for post-processing.
  • Results often include a deepLink (or similar) for booking/verification.
  • For failures other than lack of results, suggest using https://skiplagged.com directly.
  • Prices/availability change quickly—treat results as point-in-time and encourage users to confirm via the booking link.

References / provenance

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.33%
按下载量换算20,874

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills