Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

jinko-flight晶科航空

Agent Skill

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

总安装

4,333

周安装

177

GitHub Stars

公开资料未说明

下载量

1,388
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install jinko-flight

简介

终端命令行工具用于航班搜索、目的地发现与行程管理服务。

  • 集成多航司票价对比与最优出行方案推荐逻辑。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适合经常出差的用户快速规划低成本高效益的旅行路线。
  • 依赖外部机票预订平台接口稳定性可能存在服务中断风险。
  • jinko-flight 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
jinko-cli
description
>-
version
1.0.0
metadata
{"openclaw":{"requires":{"bins":["jinko","node"]},"primaryEnv":"JINKO_API_KEY","emoji":"✈️","install":[{"type":"node","package":"@gojinko/cli","global":true}]}}

Jinko CLI Usage Guide

Installed at: /usr/local/lib/node_modules/@gojinko/cli/ Binary: jinko (symlinked to /usr/local/bin/jinko)

Authentication

You must authenticate before using any Jinko CLI commands.

Option 1: OAuth (Recommended)

The primary and recommended way to authenticate. Opens a browser-based OAuth flow to securely link your Jinko account.

jinko auth login

This opens your default browser, prompts you to sign in to your Jinko account, and stores the credentials locally. No API key management required.

Option 2: API Key

Alternatively, you can authenticate using an API key (prefixed jnk_...). Use this for CI/CD pipelines, scripts, or headless environments where a browser is not available.

# Set the API key via config
jinko config set api_key jnk_your_api_key_here

# Or pass it per-command
jinko find-flight --api-key jnk_your_api_key_here --from SFO --to NYC --date 2026-04-01

# Or set it as an environment variable
export JINKO_API_KEY=jnk_your_api_key_here

Auth Management

jinko auth login          # Authenticate via OAuth (recommended)
jinko auth logout         # Clear stored credentials
jinko auth status         # Show current auth status

Global Options

OptionDescription
--format <format>Output format: json (default) or table
--api-key <key>API key (jnk_...) — overrides env/config
-V, --versionShow version

Important: Command Priority

Always prefer find-flight and flight-calendar over flight-search when possible. These commands use cached/indexed data and are ideal for:

  • Finding the cheapest dates to fly on a route
  • Setting up deal alerts and monitoring prices over time
  • Quickly comparing fares across multiple dates or destinations

Only fall back to flight-search (live search) when find-flight returns no results for the given route/date, or when you need real-time pricing to confirm an offer before booking.

Commands Overview

1. jinko find-flight — Cached Flight Search

Finds cheapest flights from cached/indexed data. Fast but prices may be stale. Returns offer_token for live pricing via flight-search.

jinko find-flight --from <IATA> --to <IATA> --date <YYYY-MM-DD> [options]
OptionDescription
--from <origin>Origin IATA code (e.g. PAR, SFO)
--to <destination>Destination IATA code (e.g. NYC, BKK)
--date <date>Departure date (YYYY-MM-DD)
--return <date>Return date for round-trip
--cabin <class>economy, premium_economy, business, first (default: economy)
--direct-onlyOnly show direct/nonstop flights
--max-price <amount>Maximum price filter
--sort <sort>lowest (default) or recommendation
--limit <n>Max results (default: 10)

Response fields: itineraries[] with id, offer_token (for price-check), total_amount, slices[] (segments), jinko_advice (price guidance).

Example:

jinko find-flight --from SFO --to NYC --date 2026-03-26 --sort lowest
jinko find-flight --from PAR --to BKK --date 2026-05-01 --return 2026-05-08 --direct-only

2. jinko find-destination — Destination Discovery

Discover where to fly from one or more origins. Use when the user doesn't know where to go.

jinko find-destination --from <IATA...> [options]
OptionDescription
--from <origins...>One or more origin IATA codes (e.g. PAR CDG)
--date <date>Departure date
--return <date>Return date
--direct-onlyOnly direct flights
--cabin <class>Cabin class (default: economy)
--max-price <amount>Max price filter
--sort <sort>lowest or recommendation
--limit <n>Max destinations (default: 20)

Response fields: origin, destinations[] with iata_code, city_name, lowest_fare_flight, flights[].

Example:

jinko find-destination --from SFO --date 2026-04-01 --max-price 300
jinko find-destination --from CDG ORY --direct-only --sort lowest

3. jinko flight-search — Live Search / Price Check

Two modes:

  • Search mode: Live flight search with real-time pricing
  • Price-check mode: Verify current price for a specific offer from find-flight
# Mode A: Live search
jinko flight-search --from <IATA> --to <IATA> --date <YYYY-MM-DD> [options]

# Mode B: Price-check a specific offer
jinko flight-search --offer-token <token>
OptionDescription
--from <origin>Origin IATA code
--to <destination>Destination IATA code
--date <date>Departure date
--return <date>Return date for round-trip
--passengers <n>Number of passengers (default: 1)
--cabin <class>Cabin class (default: economy)
--direct-onlyOnly direct flights
--max-price <amount>Max price filter
--offer-token <token>Price-check a specific offer (from find-flight)

Response fields: mode (search/price_check), status (confirmed/sold_out/price_changed), flights[] with fares[] containing trip_item_token (needed for trip creation), brand_name, total_price, refund_policy, change_policy, included_baggage.

Example:

jinko flight-search --from SFO --to JFK --date 2026-04-01 --direct-only
jinko flight-search --offer-token "es-abc123_AMD"

4. jinko flight-calendar — Price Calendar

Show cheapest prices across a month for a route. Great for finding the best travel dates.

jinko flight-calendar --from <IATA> --to <IATA> [options]
OptionDescription
--from <origin>Origin IATA code
--to <destination>Destination IATA code
--month <month>Month to display (YYYY-MM), defaults to current
--cabin <class>Cabin class (default: economy)
--direct-onlyOnly direct flights

Example:

jinko flight-calendar --from PAR --to NYC --month 2026-05
jinko flight-calendar --from SFO --to BKK --month 2026-06 --direct-only

5. jinko trip — Trip Management

Create a trip, add flights, and set travelers. All in one command.

jinko trip [options]
OptionDescription
--trip-id <id>Existing trip ID (omit to create new)
--trip-item-token <token>Add a flight item (from flight-search fares)
--travelers <json>Travelers as JSON array
--contact <json>Contact as JSON {email, phone}

Response fields: trip_id, status, items[], travelers[], contact, totals, actions_performed[].

Traveler JSON format:

[{
  "first_name": "John",
  "last_name": "Doe",
  "date_of_birth": "1990-05-15",
  "gender": "MALE",
  "passenger_type": "ADULT"
}]

Example:

# Create trip with a flight
jinko trip --trip-item-token "offer__abc123:0-1-0"

# Add travelers to existing trip
jinko trip --trip-id trip_xyz --travelers '[{"first_name":"John","last_name":"Doe","date_of_birth":"1990-05-15","gender":"MALE","passenger_type":"ADULT"}]' --contact '{"email":"john@example.com","phone":"+1-555-123-4567"}'

6. jinko book — Checkout

Generate a checkout URL (Stripe) for a trip. Returns a payment link.

jinko book --trip-id <id>
OptionDescription
--trip-id <id>Trip ID from the trip command

Response fields: checkout_url, session_id, status (ready/pending/failed), expires_at.

Example:

jinko book --trip-id trip_xyz789

7. jinko config — Configuration

jinko config show         # Show current config
jinko config set api_key jnk_xxx  # Set API key

Typical Workflow

The standard booking flow follows this pipeline:

find-flight (cached, fast)
    → get offer_token
        → flight-search --offer-token (live pricing)
            → get trip_item_token from fares
                → trip --trip-item-token (create trip)
                    → trip --trip-id --travelers (add travelers)
                        → book --trip-id (get checkout URL)

Step-by-step:

  1. Searchjinko find-flight --from SFO --to NYC --date 2026-04-01
  2. Price-checkjinko flight-search --offer-token "<offer_token_from_step_1>"
  3. Create tripjinko trip --trip-item-token "<trip_item_token_from_step_2>"
  4. Add travelersjinko trip --trip-id <trip_id> --travelers '<json>' --contact '<json>'
  5. Bookjinko book --trip-id <trip_id>
  6. User pays via the returned checkout_url

IATA Code Tips

  • Use city codes for multi-airport cities: NYC (all NY airports), PAR (CDG+ORY), LON (all London)
  • Use airport codes for specific airports: JFK, CDG, LHR
  • Common codes: SFO, LAX, ORD, ATL, MIA, BOS, SEA, DEN, DFW

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.46%
按下载量换算1,131

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills