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

foodpanda-order熊猫订单

Agent Skill

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

总安装

10,466

周安装

445

GitHub Stars

公开资料未说明

下载量

3,667
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install foodpanda-order

简介

使用 foodpanda-cli 从 foodpanda.ph 搜索餐馆并完成订餐。

  • 支持菜单浏览与购物车构建全流程操作。
  • 需登录账户并授权地理位置访问权限。
  • 适用于菲律宾地区外卖订购场景。foodpanda-order 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意配送时间与支付方式的可用性。

SKILL.md

name
foodpanda-cli
description
>-
compatibility
Requires Node.js 18+, npm, and shell access. Philippines only (foodpanda.ph).
metadata
author
johnwhoyou
version
0.1.0

foodpanda-cli

A command-line tool for ordering food delivery from foodpanda.ph. All commands output structured JSON to stdout. Designed for the Philippines market only.

Prerequisites & Installation

Ensure Node.js 18+ and npm are available, then install globally:

npm install -g foodpanda-cli

Verify the installation:

foodpanda-cli --version

Initial Setup (One-Time)

Before using any other commands, complete these two setup steps:

1. Set delivery location

Provide the user's delivery coordinates (latitude and longitude in the Philippines):

foodpanda-cli location <latitude> <longitude>

Example:

foodpanda-cli location 14.5995 120.9842
# => {"success": true, "latitude": 14.5995, "longitude": 120.9842}

2. Log in

Opens a browser window for the user to log in to their foodpanda account. The session token is captured automatically. This step requires user interaction.

foodpanda-cli login

An optional --timeout <seconds> flag controls how long to wait (default: 120s).

Command Reference

Search & Discovery

Search restaurants:

foodpanda-cli search <query> [--cuisine <type>] [--limit <n>]

Returns an array of matching restaurants with id (vendor code), name, cuisine, rating, delivery_fee, delivery_time, is_open, and optionally chain_code.

List chain outlets:

foodpanda-cli outlets <chain_code>

Lists all branches of a restaurant chain. Use the chain_code from search results.

Get restaurant details:

foodpanda-cli restaurant <vendor_code>

Returns full details: address, description, opening hours, delivery availability.

Menu & Items

Browse menu:

foodpanda-cli menu <vendor_code>

Returns the menu organized by category. Each item includes code, name, price, and description. Use item codes for adding to cart.

Get item details (toppings & variations):

foodpanda-cli item <vendor_code> <product_code>

Returns full item details including topping_groups (with options, prices, and min/max quantities) and variation info. Always check this before adding items with customizations.

Cart Management

Add items to cart:

foodpanda-cli add <vendor_code> --items '<json_array>'

The --items flag takes a JSON array. Each element:

[
  {
    "item_id": "product-code",
    "quantity": 1,
    "topping_ids": ["101", "205"],
    "special_instructions": "No onions"
  }
]

Only item_id and quantity are required. topping_ids and special_instructions are optional.

View cart:

foodpanda-cli cart

Returns the current cart with all items, quantities, prices, fees, and total. Returns {"message": "Cart is empty."} if empty.

Remove item from cart:

foodpanda-cli remove <cart_item_id>

Remove an item by its cart_item_id (e.g., cart-1, cart-2). These IDs are shown in cart output.

Ordering

Preview order:

foodpanda-cli preview

Returns the full order preview: cart contents, selected delivery address, available payment methods, and totals. Always run this before placing an order.

Place order:

foodpanda-cli order --payment <method> [--instructions <text>]

Places the order. Returns order_id, status, estimated_delivery_time, and total.

Currently only payment_on_delivery (Cash on Delivery) is supported as the payment method.

Recommended Workflow

Follow these steps when the user wants to order food:

  1. Check setup — Ensure location and login are configured. If the user hasn't set these up, run location and login first.
  2. Search — Ask the user what they want to eat, then run search to find restaurants.
  3. Present options — Show the user matching restaurants with names, cuisines, ratings, and delivery times.
  4. Browse menu — Once the user picks a restaurant, run menu to see available items.
  5. Check item details — If the user wants customizations, run item to see available toppings and variations.
  6. Build cart — Use add to add items. Show the user the cart after each addition.
  7. Preview — Run preview to show the final order summary with delivery address and total.
  8. Confirm and order — ONLY after the user explicitly confirms, run order --payment payment_on_delivery.

Important Rules

  • ALWAYS confirm with the user before running the order command. This places a real order with real money. Never run it without explicit user approval.
  • Payment: Only payment_on_delivery (Cash on Delivery) works. Do not attempt other payment methods.
  • Cart switching: Adding items from a different restaurant clears the existing cart. Warn the user before doing this.
  • Errors: All errors are returned as {"error": "message"}. If you get an authentication error, prompt the user to run login again.
  • Location required: All commands except location and login require a delivery location to be set first.
  • Philippines only: This tool only works with foodpanda.ph for delivery addresses in the Philippines.

Common Patterns

Filtering by cuisine

foodpanda-cli search "pizza" --cuisine "Italian" --limit 5

Ordering with toppings

  1. Get item details to find topping IDs:
   foodpanda-cli item p7nl ct-36-pd-1673
  1. Add with selected toppings:
   foodpanda-cli add p7nl --items '[{"item_id":"ct-36-pd-1673","quantity":1,"topping_ids":["101","205"]}]'

Finding a specific branch of a chain

  1. Search returns chain_code for chain restaurants
  2. List all branches:
   foodpanda-cli outlets cg0ep
  1. Pick the closest/preferred branch and use its vendor code for menu and ordering

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.35%
按下载量换算3,423

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills