feat(n8n-webhook): expand action bus starter workflow
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
8
skills/n8n-webhook/assets/test-approval-queue-list.json
Normal file
8
skills/n8n-webhook/assets/test-approval-queue-list.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"action": "approval_queue_list",
|
||||
"request_id": "test-approval-list-001",
|
||||
"args": {
|
||||
"limit": 10,
|
||||
"include_history": true
|
||||
}
|
||||
}
|
||||
11
skills/n8n-webhook/assets/test-create-calendar-event.json
Normal file
11
skills/n8n-webhook/assets/test-create-calendar-event.json
Normal 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."
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"action": "fetch_and_normalize_url",
|
||||
"request_id": "test-fetch-001",
|
||||
"args": {
|
||||
"url": "https://example.com",
|
||||
"max_chars": 2000
|
||||
}
|
||||
}
|
||||
11
skills/n8n-webhook/assets/test-inbound-event-filter.json
Normal file
11
skills/n8n-webhook/assets/test-inbound-event-filter.json
Normal 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
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"action": "notify",
|
||||
"request_id": "test-notify-001",
|
||||
"args": {
|
||||
"title": "Workflow finished",
|
||||
"message": "n8n router test"
|
||||
},
|
||||
"request_id": "test-notify-001"
|
||||
}
|
||||
}
|
||||
|
||||
11
skills/n8n-webhook/assets/test-send-email-draft.json
Normal file
11
skills/n8n-webhook/assets/test-send-email-draft.json
Normal 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."
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user