Your AI can finally order errand services — but the meaning of this goes far beyond delivery.
On May 26, 2026, Meituan shipped what looks like a small update: an Errand-Running Skill. With zero code, after installation you can just tell your AI "help me pick up my package from the station," and a rider will come.
On the surface, it's just "voice replacing app-based ordering." But if that's all you see, you'll miss something more fundamental happening: for the first time, AI is connecting to the physical world through a "human actuator."
Large language models have lived in the logical world — reasoning, coding, calling APIs — but they cannot touch reality. This project made me feel, for the first time, that AI is extending from the virtual world into the physical one. The AI handles thinking, planning, and decisions; human couriers execute actions. This isn't automation — it's a brand-new collaboration model between Agents and humans.
---
1. What Can It Actually Do?
The Meituan Errand Skill wraps three categories of scenarios:
- Pickup & delivery: take an item from point A to point B — documents, flowers, cakes.
- Favors: grabbing restaurant queue numbers, holding your place in hospital registration lines, moving things, taking out trash.
- Shopping for you: buying a pound of river snails at the market, batteries at a convenience store, cold medicine at a pharmacy.
- Identify the scenario: pickup & delivery (not shopping-for-you or favors)
- Extract entities: pickup address (station), delivery address (home), item (package)
- Resolve addresses: "station" matches the address book; "home" maps to the default delivery address
- Preview first, submit later: preview returns the fee without submitting; only after the user says "confirm" is the order placed with the
--confirmflag. Preview and submission must happen within the same process — separate calls invalidate the token. - Amount gating: fees over 100 yuan require extra confirmation. This isn't a technical limit — it's product design to prevent large mistaken orders from AI misunderstanding user intent.
- Address completeness checks: pickup address, delivery address, and phone number are all mandatory.
- AI as the thinking layer: understanding needs, planning workflows, deciding the best approach.
- Human actuators as the physical layer: riders picking up, carrying, delivering.
- Skill as the connection layer: a standardized interface letting any AI assistant dispatch this human-actuator network.
- Install a "housekeeping Skill" — AI directs cleaners to your home.
- Install a "repair Skill" — AI diagnoses the fault and books the right technician.
- Install a "procurement Skill" — AI auto-orders based on inventory and schedules delivery.
- Open the front-end entry point: let users initiate demand from any AI assistant.
- Keep core control: the payment loop still completes inside the Meituan app; transaction fulfillment stays with Meituan.
- Standardized interfaces: Skill packaging lowers integration barriers and attracts more AI ecosystem partners.
- AI misunderstanding: say "buy me some cold medicine," and the AI might buy the wrong brand or dosage. Medicine purchases involve health and safety; whether the Skill has special restrictions for them is unclear.
- Privacy boundaries: the AI pulls your address book and identifies frequent addresses — how is this data stored and transmitted in the AI assistant environment? The GitHub README states "Meituan only provides the interface and Skill definition, and bears no responsibility for the AI assistant's runtime environment" — meaning security responsibility is split between users and AI assistant providers.
- Liability: if the AI misreads an instruction and an order goes wrong (e.g., delivered to the wrong address), who is responsible — the user, the AI assistant, Meituan, or the Skill developer?
- Over-reliance: once users get used to "talk instead of act," will this intensify rider pressure during peak hours? Will the Skill's convenience inflate demand?
- Standardized interfaces can let any AI assistant dispatch real-world labor.
- A two-step confirmation mechanism can balance convenience and safety.
- An open ecosystem captures more of the AI-era traffic entry point than a closed app.
- GitHub repo: meituan/MT-Paotui-For-Client
- ClawHub page: clawhub.ai/meituan-tech/mt-paotui-for-client
- Meituan official release (2026-05-26)
- Wallstreetcn: Meituan launches "Errand Skill" — errand ordering moves from the app to AI assistants
Technically, it is a standard OpenClaw Skill — one SKILL.md file plus a set of Node.js scripts. Installation is minimal:
Send the GitHub link to your AI and say "help me install this Skill" — done automatically.
First use redirects to the Meituan app for authorization; no repeated logins afterward. The AI automatically pulls your saved address book, sorted by most recently used; when an address can't be matched, it calls POI search to fill in coordinates. Item categories are auto-detected by the AI — no manual selection needed.
Before every order, the AI shows a full order preview card: addresses, item, delivery fee, estimated arrival. Only when you reply "confirm" is the order submitted. Orders over 100 yuan trigger an extra confirmation.
After ordering, you can ask your AI "where's my package?" and it queries real-time delivery progress.
---
2. Three Layers of Design: More Than an API Wrapper
If this were just "a shell around the Meituan API," it wouldn't be worth an article. What's genuinely interesting is its three-layer design:
Layer 1: Scenario understanding — from natural language to structured intent
Say you ask: "pick up my package from the station and bring it to my door." The AI must:
This is not simple keyword matching. The AI must understand that the station is the pickup point and home is the drop-off point, and also infer item type (package → documents) and estimate weight.
Layer 2: Risk control — two-step confirmation and amount gating
All operations involving real transactions have safety gates:
This layer shows Meituan understands one thing clearly: AI understanding can be biased, and real-world transactions need human-in-the-loop.
Layer 3: Ecosystem embedding — from App to any AI assistant
The most critical step: Meituan did not lock users into its own app. It packaged the capability as a standardized Skill, open to the entire AI assistant ecosystem.
It is compatible with the OpenClaw local version, cloud deployment, and third-party clients (Cursor, Qclaw, etc.). The code is open-sourced on GitHub and ClawHub. Users can place orders through any AI assistant that integrates the Skill, including WeChat and Feishu bots.
What does this mean? Meituan is turning its fulfillment network into "infrastructure as a service" — usable by anyone, not limited to the Meituan app.
---
3. The Real Meaning: AI's First Standardized Interface to the Physical World
Only now can we understand why "this means far more than ordering food."
AI Agents used to have clear boundaries: operating computers, calling APIs, processing information. They lived in the digital world, unable to affect the physical one.
The Meituan Errand Skill provides a new paradigm:
This is not "AI replacing humans" — it's "AI dispatching humans." AI has no body, but it can direct people with bodies to perform physical actions.
Imagine future extensions:
Every Skill becomes an "API to the physical world." AI evolves from a "talking search engine" into a "commander that can dispatch real resources."
---
4. The Competitive Landscape: Meituan Isn't Alone
In April this year, UU Errands was first to release an errand Skill, supporting Qoder, Cursor, Claude, OpenClaw and more, covering price quotes, order placement, order management, and real-time courier tracking.
The track is heating up fast. 2026 has been called "year one of enterprise multi-agent deployment at scale" in the industry, as Chinese internet platforms upgrade AI agents from recommendation tools to commercial infrastructure that executes on users' behalf.
Meituan's strategy is clear:
This isn't abandoning the app — it's opening a new traffic entry point beyond it: the entry point of "being chosen by AI."
---
5. Concerns and Boundaries
Every technology has two sides. The risks here deserve attention too:
---
6. A Starting Point, Not an Endpoint
The Meituan Errand Skill is essentially a prototype of a "human actuator API." It proves that:
Future Agents may not just operate computers, but genuinely affect real life and dispatch real-world resources. This project looks like a new starting point — a bridge extending AI from the virtual-logical world into the physical one.
---