Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

swiggyswiggy 搜索

Agent Skill

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

总安装

94,874

周安装

3,993

GitHub Stars

6

下载量

33,222
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install swiggy

简介

通过 Swiggy 的 MCP 服务器订购食品、杂货并预订印度的餐厅。采用安全第一的确认工作流程进行食品配送、Instamart 杂货和就餐餐厅预订。

SKILL.md

name
swiggy
description
Order food, groceries, and book restaurants in India via Swiggy's MCP servers. Food delivery, Instamart groceries, and Dineout restaurant bookings with safety-first confirmation workflow.

Swiggy Skill

Order food, groceries, and book restaurants in India via Swiggy's MCP servers.

Installation

The skill includes a swiggy CLI binary. After installing the skill:

cd skills/swiggy
npm link

This creates a global swiggy command. Verify with: which swiggy

When to Use

  • Food delivery: "Order biryani", "What's open late?", "Team lunch for 8"
  • Groceries (Instamart): "Get eggs and milk", "Weekly groceries", "Recipe ingredients"
  • Restaurant bookings (Dineout): "Book dinner Saturday 8pm", "Italian in Koramangala"

Available Commands

Food Delivery

# Search restaurants
swiggy food search "biryani" --location "Koramangala, Bengaluru"

# Get menu
swiggy food menu <restaurant-id>

# Cart management
swiggy food cart add <item-id> --quantity 2
swiggy food cart show
swiggy food cart clear

# Order (requires confirmation)
swiggy food order --address "home" --confirm

Instamart (Groceries)

# Search products
swiggy im search "eggs" --location "HSR Layout, Bengaluru"

# Cart operations
swiggy im cart add <item-id> --quantity 3
swiggy im cart show
swiggy im cart clear

# Checkout (requires confirmation)
swiggy im order --address "home" --confirm

Dineout (Restaurant Bookings)

# Search restaurants
swiggy dineout search "Italian Indiranagar"

# Get details
swiggy dineout details <restaurant-id>

# Check availability
swiggy dineout slots <restaurant-id> --date 2026-01-30

# Book table (free bookings only, requires confirmation)
swiggy dineout book <restaurant-id> --date 2026-01-30 --time 20:00 --guests 2 --confirm

CRITICAL: Safety Rules

⚠️ NEVER Auto-Order

ALWAYS get explicit confirmation before placing orders.

  1. Show cart preview first:

- All items with quantities and prices - Total amount - Delivery address - Estimated delivery time (food/groceries)

  1. Ask for confirmation:
   Ready to order:
   - 2x Chicken Biryani (₹500)
   - 1x Raita (₹60)
   Total: ₹560 + delivery
   Deliver to: Home (HSR Layout)
   ETA: 30-40 mins
   
   Confirm order? (yes/no)
  1. Only after user says YES:

- Run the order command with --confirm flag - Log to memory/swiggy-orders.json

COD Warning

Swiggy MCP currently supports Cash on Delivery only. Orders cannot be cancelled once placed. Always double-check before confirming.

Address Handling

  • User may say "home", "office", etc. - map to actual addresses from USER.md or ask
  • Always confirm delivery location in preview
  • For Dineout, location is used for search only (not delivery)

Workflow Examples

Food Order Flow

# 1. Search
swiggy food search "biryani near Koramangala"

# 2. Browse menu (use restaurant ID from search)
swiggy food menu rest_12345

# 3. Add to cart
swiggy food cart add item_67890 --quantity 1

# 4. Preview cart
swiggy food cart show

# 5. Show preview to user, ask confirmation

# 6. If confirmed, order
swiggy food order --address "HSR Layout, Sector 2, Bengaluru" --confirm

Grocery Shopping Flow

# 1. Search items
swiggy im search "eggs" --location "Koramangala"
swiggy im search "milk" --location "Koramangala"

# 2. Add to cart
swiggy im cart add item_11111 --quantity 2
swiggy im cart add item_22222 --quantity 1

# 3. Preview
swiggy im cart show

# 4. Confirm with user

# 5. Checkout
swiggy im order --address "Koramangala, Bengaluru" --confirm

Restaurant Booking Flow

# 1. Search
swiggy dineout search "Italian Indiranagar"

# 2. Check details
swiggy dineout details rest_99999

# 3. Check slots
swiggy dineout slots rest_99999 --date 2026-01-30

# 4. Show options to user, confirm choice

# 5. Book
swiggy dineout book rest_99999 --date 2026-01-30 --time 20:00 --guests 2 --confirm

Error Handling

  • No results: Suggest broader search or different location
  • Out of stock: Show alternatives
  • No slots available: Suggest different times/dates
  • Authentication required: User needs to authenticate via OAuth (handled by MCP)

Tips

  • For team orders: build cart iteratively, ask for preferences
  • For budget shopping: filter results by price, show running total
  • For recipe-to-cart: search each ingredient, add progressively
  • For late night: mention delivery time in search criteria

Order Logging

After successful order, append to memory/swiggy-orders.json:

{
  "timestamp": "2026-01-28T21:16:00+05:30",
  "type": "food",
  "items": [...],
  "total": "₹560",
  "address": "HSR Layout",
  "orderId": "..."
}

Authentication

Swiggy MCP uses OAuth. First use will trigger auth flow. The swiggy CLI handles this via mcporter.

Dependencies

  • Requires mcporter skill (uses it under the hood)
  • Node.js runtime for the CLI wrapper

Known Limitations

  • COD only (no online payment yet)
  • Orders cannot be cancelled
  • Dineout: free bookings only
  • Don't open Swiggy app while using MCP (session conflicts)

Remember: Confirmation BEFORE ordering. Every. Single. Time. 🐾

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.18%
按下载量换算28,963

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills