doordash

A connection to DoorDash, a food-delivery marketplace, for finding restaurants, viewing menus, checking past orders, and managing a cart.

In plain words
What is it for?
Searching for restaurants, reading menus, adding or removing items from a cart, and reviewing order history.
Why use it?
It removes the need to manually browse DoorDash when an agent needs restaurant or order information.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/imoonkey/openweb/doordash
Any agent
npx skills add imoonkey/openweb --skill doordash
Clone the repo
git clone --depth 1 https://github.com/imoonkey/openweb

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 918 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00918
Opus 5 $0.00000 $0.00459
Sonnet 5 $0.00000 $0.00184
Haiku 4.5 $0.00000 $0.00092

Measured 3d ago against content hash 2df08cca32c2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

doordash scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (adapters/doordash-read.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/sites/doordash/SKILL.md · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DoorDash

Overview

Food delivery marketplace — search restaurants, browse menus, view order history, manage cart.

Workflows

Search and browse menu

  1. searchRestaurants(query) → pick restaurant → storeId
  2. getRestaurantMenu(storeId) → browse categories → pick item → itemId, name, displayPrice, menuBook.id

Add to cart, then remove

  1. searchRestaurants(query)storeId
  2. getRestaurantMenu(storeId) → pick item → itemId, name (→ itemName), displayPrice (→ unitPrice in cents), menuBook.id (→ menuId)
  3. addToCart(storeId, itemId, itemName, currency='USD', unitPrice, menuId, quantity)addCartItemV2.id (→ cartId), addCartItemV2.orders[0].orderItems[0].id (→ itemId for remove)
  4. removeFromCart(cartId, itemId) → updated cart (subtotal/orders are null when cart becomes empty)

Review past orders

  1. getOrderHistory(limit) → order list with items, totals, timestamps

Operations

Operation Intent Key Input Key Output Notes
searchRestaurants search restaurants by keyword query name, storeId, categories, imageUrl entry point; includes non-store results (check resultType)
getRestaurantMenu get store detail + full menu storeId ← searchRestaurants storeHeader, menuBook (id → menuId), itemLists (id, name, displayPrice) optional: menuId, fulfillmentType
getOrderHistory list past orders limit, offset orders (store, items, grandTotal, timestamps) paginated; requires auth
addToCart add menu item to cart storeId ← searchRestaurants; itemId, itemName, unitPrice (cents), menuId ← getRestaurantMenu; currency='USD' addCartItemV2.id (cartId), addCartItemV2.orders[0].orderItems[0].id write op; all six input fields are server-required
removeFromCart remove item from cart cartId, itemId ← addToCart removeCartItemV2 (subtotal/orders null if cart now empty) write op; mutation takes cartId/itemId directly — no RemoveCartItemInput wrapper

Read the full file on GitHub · 56 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 56 lines · 0 tokens per session scan A 2df08cca32c2

Subscribe to this mod's changes

doordash is a skill published in the GitHub repository imoonkey/openweb (58 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 918 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

cloudflare-registrar

Cloudflare Registrar: domain availability, prices, registration via mcporter.

steipete/agent-scripts · 20 tokens

etsy-category-listing

Etsy category page scraper: given an Etsy category URL (e.g. https://www.etsy.com/c/jewelry) and optional page number, returns paginated product listings with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping, badge from category and subcategory…

browser-act/skills · 209 tokens

amazon-reviews-api-skill

This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…

browser-act/skills · 124 tokens

amazon-competitor-analyzer

Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.

browser-act/skills · 48 tokens

shopify-functions

Shopify Functions allow developers to customize the backend logic that powers parts of Shopify. Available APIs: Discount, Cart and Checkout Validation, Cart Transform, Pickup Point Delivery Option Generator, Delivery Customization, Fulfillment Constraints, Local Pickup Delivery Option Generator, Order Routing Location…

Shopify/Shopify-AI-Toolkit · 61 tokens

shopify-shopifyql

Answer a merchant's analytics and reporting questions with ShopifyQL — Shopify's query language for aggregated store metrics that the Admin GraphQL API cannot compute. Choose this (not admin) whenever the ask is for numbers, totals, trends, or breakdowns rather than fetching or mutating individual records: including…

Shopify/Shopify-AI-Toolkit · 216 tokens