6.3 KiB
6.3 KiB
openclaw-action workflow
This skill ships an importable workflow at:
assets/openclaw-action.workflow.json
It implements a real local OpenClaw → n8n router.
What it does
- accepts
POST /webhook/openclaw-action - normalizes incoming JSON into an action contract
- supports these actions in the shipped asset:
append_logget_logsnotifysend_email_draftcreate_calendar_eventapproval_queue_addapproval_queue_listapproval_queue_resolvefetch_and_normalize_urlinbound_event_filter
- returns normalized JSON responses
- returns
400for unknown actions - returns
400when required args are missing
Current side effects
append_log
- appends records into workflow static data under key:
actionLog
- keeps the most recent
200entries - persists in n8n's database when the workflow execution succeeds
Example stored record:
{"ts":"2026-03-12T07:00:00Z","source":"openclaw-action","request_id":"abc","text":"backup complete"}
send_email_draft and create_calendar_event
- queue approval-gated proposals into workflow static data under key:
approvalQueue
- keep the most recent
200pending entries - do not send email or create provider-side calendar events in the shipped starter workflow
- are designed to become safe provider-backed executors later once instance-local creds are bound in n8n
approval_queue_resolve
- removes one item from
approvalQueue - appends the resolved entry into:
approvalHistory
- supports optional notification on approval/rejection
fetch_and_normalize_url
- fetches a remote
httporhttpsURL from inside n8n - normalizes HTML/text/JSON into a single response shape
- returns title/excerpt/body text suitable for downstream summarization or logging
- uses n8n's runtime HTTP helper inside the Code node rather than relying on global
fetch - supports optional arg
skip_ssl_certificate_validation: truefor runtimes with incomplete CA trust
inbound_event_filter
- classifies inbound events as
urgent,important,watch, ordeduped - stores recent events in:
inboundEvents
- stores recent dedupe keys in:
eventDedup
- can fan out a notification for urgent/important non-duplicate events
notify
- sends a Telegram message using credential:
Telegram Bot (OpenClaw)
- sends a Discord message using credential:
Discord Bot Auth
- current targets mirror the already-working reminder workflow
Why workflow static data first
Why this first:
- built-in, no extra credentials
- persists without guessing writable filesystem paths
- good fit for queues, recent breadcrumbs, and small operational state
- lets us implement safe approval-gated patterns immediately
When to add provider-backed steps later:
- email draft creation in Gmail/Outlook
- calendar writes in Google Calendar
- Airtable/Sheets append pipelines
- long-retention logs or external archival
Intentional security choice
The exported workflow leaves the Webhook node auth unset in the JSON file.
Why:
- n8n credentials are instance-local
- secrets should not be embedded in a shareable skill asset
After import, set this manually in n8n:
- Webhook node → Authentication →
Header Auth - bind a credential with:
- header name:
x-openclaw-secret - header value: your generated shared secret
- header name:
Import steps
- In n8n, create or open a workflow.
- Import
assets/openclaw-action.workflow.json. - Open the Webhook node.
- Set Authentication to
Header Auth. - Bind your local credential.
- Save.
- Use Listen for test event and call the test URL first.
- Once successful, activate the workflow for production URL use.
Expected URLs
- test:
http://192.168.153.113:18808/webhook-test/openclaw-action - prod:
http://192.168.153.113:18808/webhook/openclaw-action
Test payloads included
assets/test-append-log.jsonassets/test-notify.jsonassets/test-send-email-draft.jsonassets/test-create-calendar-event.jsonassets/test-fetch-and-normalize-url.jsonassets/test-approval-queue-list.jsonassets/test-inbound-event-filter.json
Example tests
export N8N_WEBHOOK_SECRET='YOUR_SECRET_HERE'
scripts/call-action.sh append_log --args '{"text":"backup complete"}' --pretty
scripts/call-action.sh get_logs --args '{"limit":5}' --pretty
scripts/call-action.sh notify --args '{"title":"Workflow finished","message":"n8n router test"}' --pretty
scripts/call-action.sh send_email_draft --args-file assets/test-send-email-draft.json --pretty
scripts/call-action.sh create_calendar_event --args-file assets/test-create-calendar-event.json --pretty
scripts/call-action.sh fetch_and_normalize_url --args '{"url":"http://192.168.153.113:18808/healthz"}' --pretty
scripts/call-action.sh fetch_and_normalize_url --args '{"url":"https://example.com","skip_ssl_certificate_validation":true}' --pretty
scripts/call-action.sh approval_queue_list --args '{"limit":10,"include_history":true}' --pretty
scripts/call-action.sh inbound_event_filter --args-file assets/test-inbound-event-filter.json --pretty
Expected success examples
send_email_draft
{
"ok": true,
"request_id": "test-email-draft-001",
"result": {
"action": "send_email_draft",
"status": "queued_for_approval",
"pending_id": "approval-abc123",
"approval_status": "pending"
}
}
create_calendar_event
{
"ok": true,
"request_id": "test-calendar-event-001",
"result": {
"action": "create_calendar_event",
"status": "queued_for_approval",
"pending_id": "approval-def456",
"approval_status": "pending"
}
}
fetch_and_normalize_url
{
"ok": true,
"request_id": "test-fetch-001",
"result": {
"action": "fetch_and_normalize_url",
"status": "ok",
"url": "http://192.168.153.113:18808/healthz",
"title": "",
"content_type": "application/json; charset=utf-8"
}
}
inbound_event_filter
{
"ok": true,
"request_id": "test-inbound-001",
"result": {
"action": "inbound_event_filter",
"status": "stored",
"classification": "urgent",
"duplicate": false,
"notified": true
}
}
Validation
Run the local validator before import/package changes:
python3 scripts/validate-workflow.py assets/openclaw-action.workflow.json