A curated collection of awesome n8n workflows for automation, integration, and productivity. Explore ready-to-use JSON workflows for analytics, communication, CRM, e-commerce, finance, HR, marketing, monitoring, security, and more.
git clone https://github.com/felipfr/awesome-n8n-workflows.githttps://docs.n8n.io
Automate social media posting schedules to maintain consistent online presence.
Integrate CRM systems with email marketing tools for seamless lead management.
Create real-time dashboards for tracking business metrics and performance.
Set up automated notifications for team collaboration tools like Slack or Discord.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/felipfr/awesome-n8n-workflowsCopy 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 in JSON format for [COMPANY] in the [INDUSTRY] sector. The workflow should automate [SPECIFIC TASK], integrating with [API/SERVICE 1] and [API/SERVICE 2]. Include error handling and logging for debugging purposes. Ensure the workflow is efficient and scalable for [COMPANY]'s needs.
# n8n Workflow for Marketing Automation
```json
{
"nodes": [
{
"parameters": {
"resource": "collection",
"operation": "getAll",
"collection": "leads"
},
"name": "Get Leads",
"type": "n8n-nodes-base.couchdb"
},
{
"parameters": {
"resource": "message",
"operation": "send",
"to": "{{$node["Get Leads"].json["email"]}}",
"subject": "Welcome to [COMPANY]",
"text": "Thank you for signing up!"
},
"name": "Send Welcome Email",
"type": "n8n-nodes-base.email"
}
],
"connections": {
"Get Leads": {
"main": [[
{
"node": "Send Welcome Email",
"type": "main",
"index": 0
}
]]
}
}
}
```
## Workflow Explanation
- **Get Leads**: Fetches all leads from the CouchDB database.
- **Send Welcome Email**: Sends a welcome email to each lead using the company's email service.
## Error Handling
- The workflow includes error handling for failed email sends.
- Logs are maintained for debugging and monitoring purposes.Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan