feat(n8n-webhook): expand action bus starter workflow

This commit is contained in:
zap
2026-03-12 17:22:58 +00:00
parent 2757527957
commit 9dcc477a98
13 changed files with 386 additions and 97 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,10 @@
{
"action": "append_log",
"request_id": "test-append-log-001",
"args": {
"text": "backup complete"
},
"request_id": "test-append-log-001"
"text": "backup complete",
"meta": {
"source": "backup-job"
}
}
}

View File

@@ -0,0 +1,8 @@
{
"action": "approval_queue_list",
"request_id": "test-approval-list-001",
"args": {
"limit": 10,
"include_history": true
}
}

View File

@@ -0,0 +1,11 @@
{
"action": "create_calendar_event",
"request_id": "test-calendar-event-001",
"args": {
"calendar": "primary",
"title": "Call with vendor",
"start": "2026-03-13T18:00:00Z",
"end": "2026-03-13T18:30:00Z",
"description": "Drafted from OpenClaw action bus."
}
}

View File

@@ -0,0 +1,8 @@
{
"action": "fetch_and_normalize_url",
"request_id": "test-fetch-001",
"args": {
"url": "https://example.com",
"max_chars": 2000
}
}

View File

@@ -0,0 +1,11 @@
{
"action": "inbound_event_filter",
"request_id": "test-inbound-001",
"args": {
"source": "homelab",
"type": "alert",
"severity": "critical",
"summary": "Build failed on swarm cluster",
"notify": true
}
}

View File

@@ -1,8 +1,8 @@
{
"action": "notify",
"request_id": "test-notify-001",
"args": {
"title": "Workflow finished",
"message": "n8n router test"
},
"request_id": "test-notify-001"
}
}

View File

@@ -0,0 +1,11 @@
{
"action": "send_email_draft",
"request_id": "test-email-draft-001",
"args": {
"to": [
"will@example.com"
],
"subject": "Draft daily brief",
"body_text": "Here is a draft daily brief for review."
}
}