Supported Platforms
takeout (the ClawDot food-delivery assistant) is an install-and-go skill package — install it into your Agent and your Agent gains the ability to search shops, pick dishes, place orders, and track them. It supports three platforms today:
Claude Code
Unpacked into the skills directory, with SKILL.md + scripts/clawdot.py; triggered automatically by the skill description.
OpenClaw
Installs a SKILL.md that OpenClaw loads and invokes on demand.
Codex
Writes an AGENTS.md at the project root for Codex to read the skill instructions.
This page only covers installing the takeout skill. If you’d rather orchestrate the 24 low-level raw tools yourself (without the skill wrapper), see the MCP Overview.
One-line install
The install script downloads the skill package from the latest Release, verifies itssha256, and unpacks it to the right location for the current platform. The command always follows the shape install.sh ... takeout <platform>:
- Claude Code
- OpenClaw
- Codex
- Where it lands: unpacked into Claude Code’s skills directory.
- What’s inside:
SKILL.md(the skill instructions) +scripts/clawdot.py(the MCP CLI executor). - How it triggers: Claude Code reads the skill’s
descriptionand triggers it automatically when you mention ordering food, what you’d like to eat, being hungry, etc.; the skill then callsscripts/clawdot.pyto carry out each command.
The latest version is installed by default. To pin a version, append the version number to the command, e.g.
... takeout claude-code v1.0.0.Configure .env after installing
On all three platforms, after installing you drop a .env in the skill root. The only required field is API_KEY (your Agent identity, clw_ prefix); GATEWAY_MCP_URL can stay at its default (or be omitted).
- The
clw_API Key is obtained when you create an Agent and enable food-delivery in the Console → Agents. CONSENT_GRANT_ID(user consent,cg_prefix) starts empty: after a user completes a one-time SMS or H5 bind, the script writes it back into.envautomatically. See the Security Model for the consent and binding details.
What you can do after installing
Once installed withAPI_KEY filled in, your Agent can drive takeout through the full delivery chain — search shops, view menus, preview, place orders, and track delivery status. For each action’s parameters, the order item model, and the success/failure signals, see the Food-Delivery Assistant.

