Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

fubon-clifubon CLI 效率

Agent Skill

fubon-cli 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,696

周安装

366

GitHub Stars

公开资料未说明

下载量

3,045
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install fubon-cli

简介

用于补充效率相关能力,支持台湾富国银行 Fubon Neo 平台的股票、期货、期权操作。

  • 可处理登录验证、账户查询和订单下达等核心交易流程,适用于本地券商系统集成。
  • 当用户询问 Fubon Neo 相关功能时自动调用,需依赖本地命令行工具 fubon-cli 执行操作。
  • 安装前建议确认权限范围和维护状态,注意可能触发的网络请求和凭证存储操作。
  • 使用时需确保本地已安装 fubon-cli 并配置好券商账户认证信息。

SKILL.md

name
fubon-cli
description
AI-agent skill for Taiwan stock/futures/options operations via fubon-cli. Use this skill whenever the user asks about Fubon Neo login, order placement, account/inventory queries, market quote or candle retrieval, realtime subscription, conditional orders, or wants natural-language trading assistance through fubon ask/chat. Trigger even when the user does not explicitly say "fubon-cli" but mentions command-line automation for Fubon trading workflows, JSON trading outputs, or scripted order operations.
compatibility
tools
terminal
runtime
python>=3.8

fubon-cli Skill

Use this skill to execute fubon commands safely and return parseable results for downstream automation.

What This Skill Does

  • Executes fubon-cli command groups end to end.
  • Keeps command usage aligned with actual CLI behavior.
  • Returns standardized JSON output and error handling guidance.
  • Supports order lifecycle workflows: login -> query -> place order -> verify -> adjust/cancel.

When To Use

Use this skill if the user asks for any of these intents:

  • Login/logout/session status for Fubon Neo.
  • Place or manage stock/futures/options orders.
  • Query inventory, unrealized PnL, settlement, balances, margin quota.
  • Read market quotes, candles, trade details, movers, actives, snapshots, history.
  • Subscribe to realtime market or callback streams.
  • Manage conditional orders.
  • Use natural language to produce trading commands (fubon ask, fubon chat).

Preconditions

  1. Install platform wheel for fubon_neo.
  2. Install fubon-cli.
  3. Ensure certificate files and account credentials are available.

Example:

pip install ./wheels/fubon_neo-2.2.8-cp37-abi3-win_amd64.whl
pip install fubon-cli

Core Workflow

  1. Authenticate first.
  2. Run requested query or order action.
  3. Inspect success and error keys.
  4. If placing an order, run follow-up query to confirm state.
fubon login --id <ID> --password <PW> --cert-path <PATH> --cert-password <CERT_PW>
fubon login --id <ID> --api-key <API_KEY>  --cert-path <PATH> --cert-password <CERT_PW>
fubon market quote 2330
fubon stock buy 2330 1000 --price 580
fubon stock orders

Command Map

Auth

fubon login --id <ID> --password <PW> --cert-path <PATH> [--cert-password <PW>]
fubon login status
fubon login logout

Command Surface

The Command Surface below lists the primary CLI entrypoints and example usages. These map 1:1 to the fubon-cli commands and are safe to invoke from automation when preconditions are met.

See the examples in the Command Map section for concrete invocations.

Stock

fubon stock buy <SYMBOL> <QTY> --price <PRICE>
fubon stock sell <SYMBOL> <QTY> --price <PRICE>
fubon stock orders
fubon stock cancel <ORDER_NO>
fubon stock modify-price <ORDER_NO> <NEW_PRICE>
fubon stock modify-quantity <ORDER_NO> <NEW_QTY>

Account

fubon account inventory
fubon account unrealized
fubon account settlement
fubon account margin-quota <SYMBOL>

Market

fubon market quote <SYMBOL>
fubon market ticker <SYMBOL>
fubon market candles <SYMBOL> --timeframe 5
fubon market trades <SYMBOL> --limit 50
fubon market snapshot TSE
fubon market movers TSE --direction up
fubon market actives TSE --trade volume
fubon market history <SYMBOL> --from 2024-01-01 --to 2024-06-30

Realtime

fubon realtime subscribe <SYMBOL>
fubon realtime callbacks

Futures and Options

fubon futopt buy TXF202406 1 --price 20000
fubon futopt sell TXF202406 1 --price 20100
fubon futopt orders

Conditional Orders

fubon condition create --payload '{"symbol":"2330","trigger":{}}'
fubon condition list
fubon condition cancel <CONDITION_ID>

AI

fubon ask "台積電現在的價格是多少?"
fubon chat
fubon config set openai-key <OPENAI_KEY>
fubon config show

Output Contract

Non-streaming commands:

{
  "success": true,
  "data": {}
}

Failure example:

{
  "success": false,
  "error": "Error message"
}

Streaming commands output JSONL (one JSON object per line).

Execution Rules

  1. Never assume login state; check status or handle not-logged-in errors.
  2. For orders, always confirm with fubon stock orders or equivalent query command.
  3. For retriable failures (network/transient), retry conservatively once.
  4. For parameter or auth failures, stop and surface exact error text.

Safety Boundaries

  • Do not expose raw credentials in logs or chat output.
  • Encourage verification of symbol, quantity, price, and account index before order placement.
  • Prefer non-production or low-risk validation paths for first-time automation.

Release Binding

This skill is version-bound with fubon-cli.

  • scripts/validate_skill_doc.py validates coverage.
  • scripts/build_skill_bundle.py builds skill artifact.
  • scripts/publish_skill.py publishes to clawhub endpoint.
  • CI/CD should publish skill after package release to keep tool and skill synchronized.

Version Binding

This skill's version must be kept in sync with the fubon-cli package version. The CI/CD pipeline is configured to build and publish the skill bundle immediately after a successful package release so the skill metadata (skill.manifest.json) and SKILL.md match the released package.

  • Use scripts/build_skill_bundle.py to create dist/skill artifacts tied to the current git tag or package version.
  • Use scripts/publish_skill.py (requires CLAWHUB_API_TOKEN) to publish the bundle to the skill registry.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.37%
按下载量换算2,265

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install fubon-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills