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

fli弗利

Agent Skill

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

总安装

3,360

周安装

140

GitHub Stars

2

下载量

1,120
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install fli

简介

Fli CLI 与 MCP 服务器的安装配置与使用指南文档。

  • 通过 pipx 安装后可直接运行 fli 命令发起航班搜索请求。
  • 需配合 Claude Desktop 配置才能发挥完整代理协作能力。
  • 建议阅读官方 README 了解高级参数与环境变量设置细节。
  • 航班数据来源依赖第三方 API 可能存在延迟或覆盖不全问题。

SKILL.md

name
fli
description
>
license
MIT

Fli install and usage skill

Use this skill when the goal is to install Fli and use its CLI or MCP server correctly.

The primary path is:

  1. install with pipx install flights
  2. use fli for terminal searches
  3. use fli-mcp for Claude Desktop or other STDIO MCP clients
  4. use fli-mcp-http only when an HTTP MCP endpoint is specifically needed

Do not default to cloning the repository or using a source checkout. Only mention cloning the repo when the user explicitly wants to contribute to Fli itself.

What Fli is

Fli is a Python package for accessing Google Flights data through direct API interaction.

It has three public surfaces:

  • CLI via fli
  • Python library via the fli package
  • MCP server via fli-mcp and fli-mcp-http

For this skill, focus on the CLI and MCP server first.

Core install rule

If the user wants to use Fli as a tool, recommend pipx install flights.

Why:

  • it is the documented recommended install path for CLI and MCP usage
  • it keeps the install isolated from other Python projects
  • it exposes fli, fli-mcp, and fli-mcp-http on the user's PATH

Only fall back to pip install flights or uvx when:

  • pipx is unavailable
  • the user wants library-only usage
  • the user explicitly prefers another Python package manager

Standard installation flow

Preferred install

python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install flights

If pipx is already installed, skip directly to:

pipx install flights

Verify installation

Run these checks after install:

fli --help
fli-mcp --help
which fli-mcp

If the commands are not found after pipx install flights, have the user run:

python3 -m pipx ensurepath

Then restart the terminal session.

What the install provides

After pipx install flights, these commands should be available:

  • fli - main CLI for flight searches
  • fli-mcp - MCP server over STDIO
  • fli-mcp-http - MCP server over HTTP, defaulting to http://127.0.0.1:8000/mcp/

Important naming detail:

  • the package to install is flights
  • the commands to run are fli, fli-mcp, and fli-mcp-http

Do not tell users to run pipx install fli.

CLI usage

Basic flight search

Use:

fli flights JFK LAX 2026-10-25

Cheapest-date search

Use:

fli dates JFK LAX --from 2026-01-01 --to 2026-01-31

Common filters

Use filters like these when the user asks for them:

fli flights JFK LHR 2026-10-25 \
  --time 6-20 \
  --airlines BA KL \
  --class BUSINESS \
  --stops NON_STOP \
  --sort DURATION

Supported language to map correctly:

  • cabin classes: ECONOMY, PREMIUM_ECONOMY, BUSINESS, FIRST
  • stop filters: ANY, NON_STOP, ONE_STOP, TWO_PLUS_STOPS
  • sort options: CHEAPEST, DURATION, DEPARTURE_TIME, ARRIVAL_TIME

CLI shorthand

Fli supports a convenience shorthand where a non-command invocation is treated as a flights search.

Example:

fli JFK LAX 2026-05-15

This behaves like:

fli flights JFK LAX 2026-05-15

Use the explicit flights subcommand in examples unless the user asks for shortcuts.

MCP usage

Default MCP mode

Use fli-mcp for Claude Desktop and other STDIO-based MCP clients.

fli-mcp

This is the default recommendation for local assistant integration.

HTTP MCP mode

Use fli-mcp-http only when the user needs an HTTP endpoint.

fli-mcp-http

By default, it serves at:

  • http://127.0.0.1:8000/mcp/

For HTTP integrations, the client should send:

  • Accept: application/json, text/event-stream

Claude Desktop setup

When the user wants Claude Desktop integration, recommend this config first:

{
  "mcpServers": {
    "fli": {
      "command": "fli-mcp",
      "args": []
    }
  }
}

Suggested config paths:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\\Claude\\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

After editing the config:

  1. fully quit Claude Desktop
  2. relaunch it
  3. start a new conversation
  4. ask for a flight search

Good validation prompt:

Can you search for flights from JFK to LHR on 2026-03-15?

Optional MCP environment variables

If the user wants defaults, these environment variables are relevant:

  • FLI_MCP_DEFAULT_PASSENGERS
  • FLI_MCP_DEFAULT_CURRENCY
  • FLI_MCP_DEFAULT_CABIN_CLASS
  • FLI_MCP_DEFAULT_SORT_BY
  • FLI_MCP_DEFAULT_DEPARTURE_WINDOW
  • FLI_MCP_MAX_RESULTS

Example:

{
  "mcpServers": {
    "fli": {
      "command": "fli-mcp",
      "args": [],
      "env": {
        "FLI_MCP_DEFAULT_CURRENCY": "EUR",
        "FLI_MCP_DEFAULT_CABIN_CLASS": "BUSINESS",
        "FLI_MCP_MAX_RESULTS": "10"
      }
    }
  }
}

How to guide users well

If the user asks to install Fli

Give them the pipx install flights path first.

If the user asks how to use the command line tool

Show fli flights ... and fli dates ... examples first.

If the user asks how to connect Claude or another assistant

Show fli-mcp and the Claude Desktop config first.

If the user asks for a web endpoint

Then show fli-mcp-http and mention the /mcp/ path and Accept header.

If the user asks how to contribute or hack on the codebase

That is outside the primary scope of this skill. Only then discuss cloning the repository and using development commands.

Common mistakes to prevent

  • telling users to clone the repository when they only want the tool
  • telling users to install fli instead of flights
  • focusing on the Python API when the user asked for CLI or MCP setup
  • giving HTTP MCP instructions when STDIO MCP is enough
  • forgetting to tell Claude Desktop users to fully restart the app
  • omitting the PATH fix when pipx installs successfully but commands are not found

Troubleshooting

fli or fli-mcp not found

Try:

python3 -m pipx ensurepath

Then restart the terminal.

Python version problems

Fli requires Python 3.10 or newer.

Check with:

python3 --version

Claude Desktop does not show the tools

Check these in order:

  1. fli-mcp --help works in a terminal
  2. the Claude Desktop config file path is correct
  3. the JSON is valid
  4. Claude Desktop was fully quit and reopened

Rate limiting or temporary failures

Fli includes automatic rate limiting and retries, but live Google Flights requests can still fail temporarily.

If a query fails:

  • retry after a short delay
  • reduce repeated back-to-back searches
  • do not assume the CLI or MCP setup is broken just because one upstream request failed

Public docs

Use these docs for product-facing guidance:

  • introduction: https://punitarani-fli.mintlify.app/introduction
  • installation: https://punitarani-fli.mintlify.app/installation
  • MCP setup: https://punitarani-fli.mintlify.app/mcp/setup
  • docs index: https://punitarani-fli.mintlify.app/llms.txt

Use product docs for examples and onboarding. Use the actual installed command names when writing instructions.

Summary

The default recommendation is pipx install flights. After that, use fli for terminal searches, fli-mcp for Claude Desktop and other STDIO MCP clients, and fli-mcp-http only when an HTTP MCP endpoint is specifically needed.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.98%
按下载量换算1,086

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills