Make.com Integration Hub
Make (formerly Integromat) is the primary automation orchestrator in the RERI/OpenClaw stack — richer than Zapier (supports scenario blueprints, data stores, responsive execution, HMAC webhook verification, and zone-aware routing) and more managed than n8n (cloud-hosted, no self-hosting burden). This hub is the cluster anchor for the Automation Platforms cluster. Read when wiring a new scenario, debugging a failed execution, or evaluating whether to add a Make scenario vs. a Zapier Zap vs. an n8n workflow. KB last verified 2026-03-04.
Quick reference
| Field | Value |
|---|---|
| Vendor | Make.com |
| URL | https://make.com |
| KB doc | API, WEBHOOKS |
| Auth method | API Token (Authorization: Token <token> header) for API; HMAC via IML condition for webhook verification |
| Auth credential | op://Aurora/make/api-key |
| Cred-proxy port | n/a (until NemoClaw B1-B6 ratified — see nemoclaw-audit-2026-05-03) |
| Webhook port | n/a (Make webhooks are cloud-hosted; VPS posts OUT to https://hook.us1.make.com/<id>) |
| Webhook handler | n/a (inbound to VPS not yet wired; Make is currently outbound trigger destination) |
| Webhook dedup table | processed_webhook_events (24h TTL) — apply if Make sends inbound events to VPS |
| Tunnel path | n/a |
| Outbound API base | https://us1.make.com/api/v2 (US zone — verify zone from dashboard URL) |
| Webhook base URL | https://hook.us1.make.com/ (US) or https://hook.eu1.make.com/ (EU) |
| Rate limits | 60 req/min per API token; task/ops limits by plan |
| Rate-limit action | 429 → exponential backoff (3 retries, 1s→2s→4s), Discord ops alert |
| Cost | Free → paid tiers; monthly ops quota per plan |
| Backup/recovery | Vendor-owned. Scenario blueprints exportable as JSON — should be version-controlled in GitHub |
| Discord alert channel | ops |
| Drift cadence | Weekly (security-audit-funnel.timer) / on API change |
| Status | production |
Components
workspace/knowledge-base/make/API.md— Scenarios, Connections, Data Stores, Webhooks Management, Execution History API; last_verified 2026-03-04workspace/knowledge-base/make/WEBHOOKS.md— Webhook spec (dedicated vs shared, IML directives: respond, verification, iterate, output, condition, uid), security patternsworkspace/knowledge-base/make/examples/— RERI scenario examples and blueprint patternsworkspace/knowledge-base/make/_audit/— Audit trail for KB drift checks[[wiki/_hubs/integrations/hubspot]]— Primary Make trigger source (deal updates, contact events)[[wiki/_hubs/integrations/supabase]]— Make can write directly to Supabase via HTTP module; CHOKEPOINT-1 applies if writing totool_calls[[wiki/_hubs/integrations/1password]]— Credential store for Make API token and webhook secrets
How it’s used
- Trigger condition: HubSpot event (deal stage, contact update) → Make webhook trigger → multi-step scenario executing Supabase writes, Discord alerts, DocuSign sends, or sub-workflow calls
- Workflow: Make scenario Blueprint → RERI-specific multi-step: (1) inbound webhook OR scheduled trigger, (2) data transform via IML, (3) action modules (HTTP, HubSpot, Supabase, Discord). VPS agents trigger Make via POST to
hook.us1.make.com/<id>. - Agents involved: Atlas (infra orchestration), acquisitions agents (deal-source fan-out). No direct Make SDK in OpenClaw — plain HTTP POST with JSON payload.
- Failure mode: Scenario execution error → Make retries per scenario error-handling config. Check
/api/v2/scenarios/{id}/logsfor run history. 429 on API → backoff. Data store full → add capacity or archive old records. - Success criteria: POST to webhook URL returns 2xx; execution log shows
"status": "success"within scenario SLA.
Webhook security (from WEBHOOKS.md)
Make supports HMAC signature validation via IML condition directive:
{
"condition": "{{hmac(body, 'your-secret', 'sha256') == headers.x-signature}}"
}Use this pattern for any Make webhook that receives data from external systems. Webhook secret stored at op://Aurora/make/webhook-secret (per feedback_no_plaintext_creds).
Cross-links
Agents that touch this
- _summary — orchestrates infra automation scenarios
- _summary — deal-source fan-out via Make scenarios
Skills that invoke this
- hubspot-deal-ingest — may route deal creation events through Make for multi-system fan-out
- dispo-blast — post-blast result logging could route through Make scenario
Plans that govern this
- openclaw-fragmentation-fix-2026-05-01 — automation platform rationalization (Make vs Zapier vs n8n)
- openclaw-self-improvement-layer-2026-05-03 — Make as potential OSIL pipeline orchestrator (Tier 2+ automation)
- nemoclaw-audit-2026-05-03 — cred-proxy pattern (B1 pending) would gate Make API tokens through proxy
Feedback rules
- feedback_no_plaintext_creds — Make API token and webhook secrets stored in 1Password only; reference via
op://Aurora/make/<field> - feedback_action_gate_violation_repeated — confirm before triggering or modifying live Make scenarios
- feedback_blocker_surfacing — if scenario quota reached, surface as blocker; do not silently drop work
KB / source docs
- API — Scenarios, Connections, Data Stores, Webhooks Management, Scheduling, Pagination
- WEBHOOKS — Dedicated vs shared webhooks, IML directives, security patterns, testing
- examples — RERI-specific scenario blueprints
System maps
- external-integrations — Make’s position in the RERI integration graph
- request-lifecycle — Where Make scenarios sit in the async processing chain
Related: Automation platforms cluster (cluster anchor)
Make is the anchor hub for the Automation Platforms cluster. Peer hubs:
- zapier — lighter-weight; used for HubSpot-native trigger flows
- n8n — self-hostable OSIL pipeline candidate (staging)
Decision on rationalization (which platform owns which automation type) is pending. See openclaw-fragmentation-fix-2026-05-01 and the deal-ingestion process hub for trigger-source mapping.
Related: Credential layer cluster
All Make credentials are in 1Password vault Aurora. Hub: 1password. Per G-NO-PLAINTEXT-CREDS — no plaintext tokens in any tracked file. Reference as op://Aurora/make/<field> only.
Open issues / TODOs
- Export all active Make scenario blueprints to GitHub for version control (per feedback_plan_amendments_additive)
- Verify current Make plan tier and ops quota remaining
- Add HMAC webhook signature validation to any Make webhook that receives HubSpot events (currently NEEDS VERIFICATION — check live handler)
- Decision pending: Make vs n8n as OSIL Tier 2 automation substrate (see OSIL plan B3)
Recent activity
- 2026-05-04: Hub created (Wave 3 W3-S6). KB last_verified 2026-03-04. Cluster anchor role established.