openclaw 网盘下载
OpenClaw

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

首页 > 技能库 > Make

Make (formerly Integromat) automation platform — manage scenarios, trigger runs, monitor executions, manage connections, and handle data stores via the Make...

开发与 DevOps

许可证:MIT-0

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

版本:v1.0.0

统计:⭐ 0 · 251 · 5 current installs · 5 all-time installs

0

安装量(当前) 5

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:aiwithabidi/make

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's high-level purpose matches a Make (Integromat) CLI, but the implementation contains inconsistencies (unused/undeclared env vars, reads a local .env path) and likely bugs that expand its scope beyond what's documented.

目的

The requested primary credential (MAKE_API_KEY) is appropriate for a Make API client. MAKE_ZONE is declared as optional in SKILL.md, which is reasonable in principle, but the shipped code does not actually read or apply MAKE_ZONE — an implementation mismatch. The code also looks up WORKSPACE (not declared in requires.env) to read a local .env file, which is outside the documented inputs and broadens the skill's access surface.

说明范围

SKILL.md states 'never stores data locally' and documents only MAKE_API_KEY / MAKE_ZONE, but the code will attempt to read a local file (~/.openclaw/workspace/.env) to obtain MAKE_API_KEY if the env var is absent. SKILL.md also documents behavior (default zone) that is not implemented. The runtime instructions and code confine network activity to the Make API, but the undocumented local file access and mismatched endpoint paths mean the runtim…

安装机制

This is an instruction-only skill with one included Python script and no install spec — no additional packages are pulled or archives extracted. That minimizes install-time risk.

证书

The primary credential MAKE_API_KEY is expected. However: (1) MAKE_ZONE is declared but not used by the code; (2) the script will read WORKSPACE (not declared) or default to a local path (~/.openclaw/workspace/.env) to find MAKE_API_KEY, which is not documented and may cause unexpected exposure of credentials; and (3) the skill references environment variables beyond those declared in SKILL.md. These are disproportionate to the stated purpose …

持久

The skill does not request always:true, does not modify other skills or system configs, and does not install services. It only reads environment variables and a local .env file (read-only) and performs network calls, which is within expected privileges for a CLI client — but the undocumented file read is noteworthy.

安装(复制给龙虾 AI)

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

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Make」。简介:Make (formerly Integromat) automation platform — manage scenarios, trigger runs…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/make/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: make
description: "Make (formerly Integromat) automation platform — manage scenarios, trigger runs, monitor executions, manage connections, and handle data stores via the Make API. Build and manage visual automations, monitor execution logs, manage team resources, and trigger workflows. Built for AI agents — Python stdlib only, zero dependencies. Use for visual workflow automation, scenario management, execution monitoring, integration management, and no-code automation."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🔧", "requires": {"env": ["MAKE_API_KEY", "MAKE_ZONE"]}, "primaryEnv": "MAKE_API_KEY", "homepage": "https://www.agxntsix.ai"}}
---

# 🔧 Make (Integromat)

Make (formerly Integromat) automation platform — manage scenarios, trigger runs, monitor executions, manage connections, and handle data stores via the Make API.

## Features

- **Scenario management** — list, activate, deactivate scenarios
- **Trigger runs** — execute scenarios on demand
- **Execution logs** — monitor run history and status
- **Connection management** — view and manage app connections
- **Data store operations** — CRUD on data stores
- **Webhook management** — create and manage webhooks
- **Organization management** — teams and users
- **Template browsing** — discover scenario templates
- **Blueprint export** — export scenario definitions
- **Usage monitoring** — operations and data transfer stats

## Requirements

| Variable | Required | Description |
|----------|----------|-------------|
| `MAKE_API_KEY` | ✅ | API key/token for Make (Integromat) |
| `MAKE_ZONE` | ❌ | API zone (default: us1.make.com) |

## Quick Start

```bash
# List scenarios
python3 {baseDir}/scripts/make.py scenarios --limit 20
```

```bash
# Get scenario details
python3 {baseDir}/scripts/make.py scenario-get 12345
```

```bash
# Trigger a scenario run
python3 {baseDir}/scripts/make.py scenario-run 12345
```

```bash
# Activate a scenario
python3 {baseDir}/scripts/make.py scenario-activate 12345
```



## Commands

### `scenarios`
List scenarios.
```bash
python3 {baseDir}/scripts/make.py scenarios --limit 20
```

### `scenario-get`
Get scenario details.
```bash
python3 {baseDir}/scripts/make.py scenario-get 12345
```

### `scenario-run`
Trigger a scenario run.
```bash
python3 {baseDir}/scripts/make.py scenario-run 12345
```

### `scenario-activate`
Activate a scenario.
```bash
python3 {baseDir}/scripts/make.py scenario-activate 12345
```

### `scenario-deactivate`
Deactivate a scenario.
```bash
python3 {baseDir}/scripts/make.py scenario-deactivate 12345
```

### `executions`
List execution logs.
```bash
python3 {baseDir}/scripts/make.py executions --scenario 12345 --limit 20
```

### `execution-get`
Get execution details.
```bash
python3 {baseDir}/scripts/make.py execution-get exec_abc
```

### `connections`
List connections.
```bash
python3 {baseDir}/scripts/make.py connections --limit 20
```

### `data-stores`
List data stores.
```bash
python3 {baseDir}/scripts/make.py data-stores
```

### `data-store-records`
List data store records.
```bash
python3 {baseDir}/scripts/make.py data-store-records 789 --limit 50
```

### `webhooks`
List webhooks.
```bash
python3 {baseDir}/scripts/make.py webhooks
```

### `webhook-create`
Create a webhook.
```bash
python3 {baseDir}/scripts/make.py webhook-create '{"name":"My Hook"}'
```

### `organizations`
List organizations.
```bash
python3 {baseDir}/scripts/make.py organizations
```

### `users`
List team users.
```bash
python3 {baseDir}/scripts/make.py users
```

### `usage`
Get usage stats.
```bash
python3 {baseDir}/scripts/make.py usage
```


## Output Format

All commands output JSON by default. Add `--human` for readable formatted output.

```bash
# JSON (default, for programmatic use)
python3 {baseDir}/scripts/make.py scenarios --limit 5

# Human-readable
python3 {baseDir}/scripts/make.py scenarios --limit 5 --human
```

## Script Reference

| Script | Description |
|--------|-------------|
| `{baseDir}/scripts/make.py` | Main CLI — all Make (Integromat) operations |

## Data Policy

This skill **never stores data locally**. All requests go directly to the Make (Integromat) API and results are returned to stdout. Your data stays on Make (Integromat) servers.

## 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)