openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Toast

Toast — restaurant POS, orders, menus, employees, revenue centers, and reporting.

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 148 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aiwithabidi/toast

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code, required environment variables, and instructions are consistent with a CLI for the Toast POS API and do not request unrelated credentials or install arbitrary software.

目的

The name/description match the code and SKILL.md: the included Python CLI calls api.toasttab.com and exposes commands for orders, menus, employees, revenue centers, and restaurant info. The two required env vars (TOAST_API_KEY, TOAST_RESTAURANT_GUID) are exactly what the API client needs.

说明范围

SKILL.md describes running the bundled scripts and JSON output. The CLI code will also attempt to read credentials from a .env file at WORKSPACE (or default ~/.openclaw/workspace/.env) if the environment variables are not set. That behavior is reasonable for credential lookup but is not documented in SKILL.md and therefore worth noting.

安装机制

No install or remote download steps are present. The skill is instruction-only with a local script that uses only the Python standard library.

证书

The skill declares only TOAST_API_KEY (primary) and TOAST_RESTAURANT_GUID which are appropriate. The code also reads the WORKSPACE env var (to locate a .env file) and may load values from ~/.openclaw/workspace/.env; WORKSPACE is not declared in requires.env, so callers should be aware the script uses it as a fallback.

持久

The skill does not request permanent presence (always: false), does not modify other skills or system configs, and runs as a plain CLI tool. Autonomous invocation is allowed by default but not excessive here.

综合结论

This skill appears to be a straightforward Toast API CLI. Before installing: 1) Be prepared to provide TOAST_API_KEY and TOAST_RESTAURANT_GUID (use a scoped API key with minimal permissions). 2) Note the script will try a fallback .env at $WORKSPACE or ~/.openclaw/workspace/.env — ensure that file does not contain unrelated secrets you don't want the skill to read. 3) The homepage/publisher (agxntsix.ai / M. Abidi) is not Toast's official doma…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Toast」。简介:Toast — restaurant POS, orders, menus, employees, revenue centers, and reportin…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/toast/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: toast
description: "Toast — restaurant POS, orders, menus, employees, revenue centers, and reporting."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🍞", "requires": {"env": ["TOAST_API_KEY", "TOAST_RESTAURANT_GUID"]}, "primaryEnv": "TOAST_API_KEY", "homepage": "https://www.agxntsix.ai"}}
---

# 🍞 Toast

Toast — restaurant POS, orders, menus, employees, revenue centers, and reporting.

## Requirements

| Variable | Required | Description |
|----------|----------|-------------|
| `TOAST_API_KEY` | ✅ | Toast API key |
| `TOAST_RESTAURANT_GUID` | ✅ | Restaurant GUID |


## Quick Start

```bash
# List orders
python3 {{baseDir}}/scripts/toast.py list-orders --start-date <value> --end-date <value> --page-size "25"

# Get order details
python3 {{baseDir}}/scripts/toast.py get-order <id>

# List menus
python3 {{baseDir}}/scripts/toast.py list-menus

# Get menu details
python3 {{baseDir}}/scripts/toast.py get-menu <id>

# List menu items
python3 {{baseDir}}/scripts/toast.py list-menu-items --page-size "100"

# List employees
python3 {{baseDir}}/scripts/toast.py list-employees

# Get employee details
python3 {{baseDir}}/scripts/toast.py get-employee <id>

# List revenue centers
python3 {{baseDir}}/scripts/toast.py list-revenue-centers

# List tables
python3 {{baseDir}}/scripts/toast.py list-tables

# List dining options
python3 {{baseDir}}/scripts/toast.py list-dining-options

# Get restaurant info
python3 {{baseDir}}/scripts/toast.py get-restaurant --guid <value>
```

## Output Format

All commands output JSON by default.

## Script Reference

| Script | Description |
|--------|-------------|
| `{baseDir}/scripts/toast.py` | Main CLI — all commands in one tool |

## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.

📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)