npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kaush1k/kuch-bhi

v1.0.0

Published

Autonomous food ordering CLI agent for Swiggy and Zomato — powered by Claude (or any LLM)

Readme

kuch-bhi 🍱

Order food from Swiggy & Zomato using AI — without opening the app.

npm license node

kuch-bhi is a CLI agent that connects to the official Swiggy and Zomato APIs, studies your order history, hunts for nearby discounts, and places a Cash on Delivery order — after you confirm.

Works with Claude, OpenAI, or Ollama (free, runs locally).


Demo

$ npx @kaush1k/kuch-bhi

Researching Swiggy and Zomato...

┌─────────────────────────────────────────────────────┐
│              Here's what I found for you             │
└─────────────────────────────────────────────────────┘

  1. [ZOMATO] RollsKing
     Chicken Hot-shot Protein Roll — ₹215 🏷 70% OFF up to ₹140
     4.2★  ·  30–35 min
     Your most-ordered item on Zomato — ordered almost daily!

  2. [ZOMATO] Shalimar
     Chicken Tikka Biryani — ₹440 🏷 60% OFF up to ₹120
     4.1★  ·  25–30 min
     Past favourite, 1.9 km away with a big discount.

  3. [SWIGGY] Charcoal Eats - Biryani & Beyond
     Chicken Biryani — ₹219
     4.3★  ·  35 min
     Your #1 repeat restaurant on Swiggy — ordered 3 times!

Pick a number (1–3): 1

Confirm order? [y/N]: y

✅ Order placed! Chicken Hot-shot Protein Roll from RollsKing
   ₹215 → ₹75 after 70% off  ·  COD  ·  Arrives in ~32 min

How it works

  1. Connects to Swiggy and Zomato via their official MCP APIs
  2. Reads your past order history to understand your preferences
  3. Searches nearby restaurants for active discounts
  4. Ranks options by: discount size + match with your history + rating
  5. You pick — it adds to cart, applies a coupon, and places the order

Requirements

  • Node.js 18+
  • A Swiggy and/or Zomato account (Indian accounts)
  • One of: Claude API key · OpenAI API key · Ollama (free, local)

Setup

1. Connect your accounts (one-time)

npx @kaush1k/kuch-bhi connect swiggy
npx @kaush1k/kuch-bhi connect zomato

Opens your browser to log in. Credentials saved locally at ~/.config/kuch-bhi/config.json — never sent anywhere else.

2. Pick your AI (choose one)

Ollama — free, no API key, fully local:

# Install from https://ollama.com, then:
ollama pull llama3.1:8b

export LLM_PROVIDER=ollama
export OLLAMA_MODEL=llama3.1:8b

Claude:

export ANTHROPIC_API_KEY=sk-ant-...

OpenAI:

export LLM_PROVIDER=openai
export OPENAI_API_KEY=sk-...

3. Order

npx @kaush1k/kuch-bhi

Claude Code slash command

If you use Claude Code, you can type /kuch-bhi directly in your editor.

Create .claude/commands/kuch-bhi.md in your project:

Run the kuch-bhi food ordering agent:
1. Run `npx @kaush1k/kuch-bhi suggest 2>&1` and parse the KUCH_BHI_SUGGESTIONS JSON line.
2. Show the suggestions to the user via AskUserQuestion and let them pick one.
3. Run `npx @kaush1k/kuch-bhi place '<selected-json>'` to place the order.

Notes

  • Payment: Always Cash on Delivery. No card or UPI details needed.
  • Privacy: Your Swiggy/Zomato tokens are stored only on your machine.
  • Platforms: Currently works with Indian Swiggy and Zomato accounts.

License

MIT