원클릭으로
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.