5000+ production-ready n8n workflow templates for AI, CRM, finance, e-commerce, marketing, and RAG automation. Free and open source. Connects to popular tools and workflows for marketing teams.
git clone https://github.com/ritik-prog/n8n-automation-templates-5000.gitThis skill provides access to over 5000 unique, non-repetitive n8n workflow templates organized by platform and use case. Templates cover sales automation, marketing workflows, RAG pipelines, home automation, security monitoring, and AI-driven integrations with tools like OpenAI, LangChain, Stripe, Slack, LinkedIn, and more. Each template includes edge-case handling, retry logic, and error management for production-grade reliability. Users can clone templates, connect credentials, and deploy workflows or schedule them immediately. The collection serves marketing teams, e-commerce operators, researchers, and developers needing ready-to-use automation blueprints.
["1. Identify the specific marketing task you want to automate, such as lead scoring, email campaign management, or social media scheduling.","2. Determine which tools you need to integrate, like Salesforce, HubSpot, Mailchimp, or social media platforms.","3. Use the prompt template to request a workflow that automates your task and integrates with your chosen tools.","4. Copy the generated JSON workflow template and import it into n8n.","5. Customize the workflow by adjusting parameters, adding error handling, and connecting to your specific tool accounts.","Tip: For better results, be specific about the process you want to automate and any common issues you want to address."]
Automate Slack-to-Notion syncs and RSS-to-WordPress publishing
Create AI-enhanced chatbots and document classification workflows with OpenAI and LangChain
Track Stripe transactions and send payment notifications via Slack or Google Sheets
Build RAG pipelines for research automation with ArXiv and academic summarization
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/ritik-prog/n8n-automation-templates-5000Copy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Generate an n8n workflow template for [MARKETING_TASK] that integrates with [TOOL_1] and [TOOL_2]. The workflow should automate [SPECIFIC_PROCESS] and include error handling for [COMMON_ISSUE]. Provide the workflow in JSON format.
Here's a production-ready n8n workflow template for automating social media content scheduling and performance tracking:
```json
{
"nodes": [
{
"parameters": {
"resource": "post",
"operation": "create",
"content": "{{$node["ContentInput"].json["content"]}}",
"schedule": "{{$node["ContentInput"].json["schedule"]}}"
},
"name": "SocialMediaPost",
"type": "n8n-nodes-base.hootsuite"
},
{
"parameters": {
"resource": "analytics",
"operation": "get",
"postId": "{{$node["SocialMediaPost"].json["id"]}}"
},
"name": "PostAnalytics",
"type": "n8n-nodes-base.hootsuite"
},
{
"parameters": {
"resource": "row",
"operation": "create",
"data": {
"postId": "{{$node["SocialMediaPost"].json["id"]}}",
"performance": "{{$node["PostAnalytics"].json["performance"]}}"
}
},
"name": "DatabaseUpdate",
"type": "n8n-nodes-base.googleSheets"
},
{
"parameters": {
"resource": "notification",
"operation": "create",
"message": "Post performance below threshold",
"condition": "{{$node["PostAnalytics"].json["performance"] < 50}}"
},
"name": "PerformanceAlert",
"type": "n8n-nodes-base.slack"
}
],
"connections": {
"SocialMediaPost": {
"main": [
[
{
"node": "PostAnalytics",
"type": "main",
"index": 0
}
]
]
},
"PostAnalytics": {
"main": [
[
{
"node": "DatabaseUpdate",
"type": "main",
"index": 0
}
],
[
{
"node": "PerformanceAlert",
"type": "main",
"index": 0
}
]
]
}
}
}
```
This template automates the process of posting content to social media, tracking its performance, and alerting the team if performance falls below a set threshold. It integrates with Hootsuite for social media management and Google Sheets for data storage, with Slack notifications for performance alerts.Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan