rappi-reorder

star 1

Reorder from Rappi order history. Use when the user wants to order the same thing again, reorder, or mentions a past order.

garavitgabriel By garavitgabriel schedule Updated 4/3/2026

name: rappi-reorder description: Reorder from Rappi order history. Use when the user wants to order the same thing again, reorder, or mentions a past order. allowed-tools: "mcp__rappi__*"

Rappi Quick Reorder

Help the user reorder from their order history.

Steps

  1. Call get_order_history(limit=10) to fetch recent orders.

  2. If no history exists, tell the user they haven't placed any orders yet and suggest using /order-food.

  3. Present past orders in a numbered list:

    • Store name
    • Items ordered (with quantities)
    • Total price
    • Date
  4. If the user wants details about a specific order:

    • Call get_order_detail(order_id) for the full summary
    • Call get_order_breakdown(order_id) for fee breakdown
  5. Ask the user which order they want to reorder (by number).

  6. Call quick_reorder(order_id) with the selected order's ID.

    • This re-adds all available items to the cart
    • It reports which items were added and which failed (unavailable/out of stock)
  7. Call view_cart to show what's in the cart now.

  8. If some items failed, ask if they want to proceed with what was added or find replacements.

  9. Set the tip: call set_tip(tip_amount) — check preferences for a default tip amount.

  10. Call checkout(confirm=false) to show the order summary.

  • Mention get_credits_balance() if they have Rappi credits
  1. After user confirms, call checkout(confirm=true) to place the order.
  • NEVER place without explicit user confirmation
  1. After placing, offer to track with track_order(order_id).

Prices are in COP — format as $35.500.

Install via CLI
npx skills add https://github.com/garavitgabriel/rappi-plugin-claude-openclaw --skill rappi-reorder
Repository Details
star Stars 1
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator
garavitgabriel
garavitgabriel Explore all skills →