Install
openclaw skills install fubon-cliAI-agent skill for Taiwan stock/futures/options operations via fubon-cli. Use this skill whenever the user asks about Fubon Neo login, order placement, accou...
openclaw skills install fubon-cliUse this skill to execute fubon commands safely and return parseable results for downstream automation.
fubon-cli command groups end to end.Use this skill if the user asks for any of these intents:
fubon ask, fubon chat).fubon_neo.fubon-cli.Example:
pip install ./wheels/fubon_neo-2.2.8-cp37-abi3-win_amd64.whl
pip install fubon-cli
success and error keys.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
fubon login --id <ID> --password <PW> --cert-path <PATH> [--cert-password <PW>]
fubon login status
fubon login logout
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.
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>
fubon account inventory
fubon account unrealized
fubon account settlement
fubon account margin-quota <SYMBOL>
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
fubon realtime subscribe <SYMBOL>
fubon realtime callbacks
fubon futopt buy TXF202406 1 --price 20000
fubon futopt sell TXF202406 1 --price 20100
fubon futopt orders
fubon condition create --payload '{"symbol":"2330","trigger":{}}'
fubon condition list
fubon condition cancel <CONDITION_ID>
fubon ask "台積電現在的價格是多少?"
fubon chat
fubon config set openai-key <OPENAI_KEY>
fubon config show
Non-streaming commands:
{
"success": true,
"data": {}
}
Failure example:
{
"success": false,
"error": "Error message"
}
Streaming commands output JSONL (one JSON object per line).
fubon stock orders or equivalent query command.error text.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.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.
scripts/build_skill_bundle.py to create dist/skill artifacts tied to the current git tag or package version.scripts/publish_skill.py (requires CLAWHUB_API_TOKEN) to publish the bundle to the skill registry.