Prompt Details
Model
(claude-4-5-sonnet)
Token size
378
Example input
[BUSINESS_PROCESS]: When a new lead submits the Typeform survey, create a contact in HubSpot CRM, send welcome email via SendGrid, and post notification to sales Slack channel with lead details.
[TRIGGER_TYPE]: App Event
[APP_LIST]: Typeform, HubSpot, SendGrid, Slack
[ERROR_HANDLING]: Post notification to #alerts Slack channel
Example output
N8N_JSON_CODE
{
"name": "Typeform Lead to HubSpot + SendGrid + Slack",
"nodes": [
{
"parameters": {
"formId": "={{$env.TYPEFORM_FORM_ID}}",
"triggerOn": "formResponse"
},
"id": "node_trigger",
"name": "Typeform Trigger",
"type": "n8n-nodes-base.typeformTrigger",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"resource": "contact",
"operation": "upsert",
"email": "={{$json.email}}"
},
"id": "node_hubspot",
"name": "Create HubSpot Contact",
"type": "n8n-nodes-base.hubspot",
"typeVersion": 2,
"position": [450, 300],
"retryOnFail": true
},
{
"parameters": {
"channel": "#alerts",
"text": "Workflow Error encountered in Lead Processing."
},
"id": "node_error_slack",
"name": "Slack Error Alert",
"type": "n8n-nodes-base.slack",
"typeVersion": 2.1,
"position": [450, 500]
}
],
"connections": {
"Typeform Trigger": {
"main": [ [ {"node": "Create HubSpot Contact", "type": "main", "index": 0} ] ]
}
},
"settings": { "saveExecutionProgress": true }
}
DEPLOYMENT_NOTES
1. Credentials Setup: Connect Typeform, HubSpot, and Slack in n8n.
2. Environment Variables: Set TYPEFORM_FORM_ID in your .env file.
3. Invite the Slack bot to #sales and #alerts.
By purchasing this prompt, you agree to our terms of service
CLAUDE-4-5-SONNET
Stop building n8n workflows node by node. This elite System Prompt acts as a Senior n8n Architect, translating your plain-English business processes directly into ready-to-import n8n JSON code.
It doesn't just give you advice; it writes the actual scaffold.
Key Features:
- 100% Importable JSON: Copy the output, hit "Import from Clipboard" in n8n, and your workflow appears instantly.
- Native Error Handling: Automatically builds error trigger nodes and routes them based on your preferences.
- E
...more
Added 2 days ago
