一键导入
bikes
Interact with the Pizza Vibe bikes service. Use when the user wants to list bikes, check a bike's status, or reserve a bike for delivery.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interact with the Pizza Vibe bikes service. Use when the user wants to list bikes, check a bike's status, or reserve a bike for delivery.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | bikes |
| description | Interact with the Pizza Vibe bikes service. Use when the user wants to list bikes, check a bike's status, or reserve a bike for delivery. |
| argument-hint | [list | get <bikeId> | reserve <bikeId> <user>] |
Interact with the bikes delivery service to list, inspect, and reserve bikes.
Determine the action from $ARGUMENTS:
<bikeId> — Get the status of a specific bike<bikeId> <user> — Reserve a bike for a userIf no arguments are provided, default to list.
The scripts are located relative to this skill file. Set BIKES_URL from the environment or default to http://localhost:8088.
bash skills/bikes/scripts/list-bikes.sh "${BIKES_URL:-http://localhost:8088}"
bash skills/bikes/scripts/get-bike.sh "<bikeId>" "${BIKES_URL:-http://localhost:8088}"
bash skills/bikes/scripts/reserve-bike.sh "<bikeId>" "<user>" "${BIKES_URL:-http://localhost:8088}"
All scripts output JSON from the bikes service. Parse and present the results to the user in a readable format.
| Field | Description |
|---|---|
id | Bike identifier (e.g. bike-1) |
status | AVAILABLE or RESERVED |
user | User who reserved the bike (if reserved) |
updatedAt | Timestamp of the last status change |
AVAILABLE to be reserved.AVAILABLE after 10–20 seconds.