The n8n Workflow Automation Skills Suite helps AI assistants to automate complex workflows seamlessly. With a focus on enhancing productivity, it integrates various tools and services for efficient task management.
claude install haunchen/n8n-skillsThe n8n Workflow Automation Skills Suite helps AI assistants to automate complex workflows seamlessly. With a focus on enhancing productivity, it integrates various tools and services for efficient task management.
["1. **Define Your Workflow**: Clearly outline the task you want to automate and the tools/services you need to integrate. For example, 'Automate lead qualification by integrating Salesforce and a custom API.'","2. **Design the Workflow in n8n**: Use n8n's drag-and-drop interface to create the workflow. Start with a trigger node (e.g., a scheduled trigger or webhook) and add nodes for each step in your process.","3. **Configure Each Node**: Set up the parameters for each node, including authentication details, resource operations, and data mappings. Use the n8n documentation to understand the available nodes and their configurations.","4. **Test and Debug**: Run the workflow with test data to ensure it works as expected. Use n8n's debugging tools to troubleshoot any issues. Check the execution logs and node outputs to identify and fix errors.","5. **Activate and Monitor**: Once the workflow is tested and debugged, activate it. Monitor its performance using n8n's dashboard and set up notifications for any failures or errors."]
Automating lead generation processes
Streamlining customer support workflows
Integrating marketing tools for campaign management
Creating automated reporting systems
claude install haunchen/n8n-skillsgit clone https://github.com/haunchen/n8n-skillsCopy 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.
Create an automated workflow in n8n that [DESCRIBE TASK]. The workflow should integrate with [TOOLS/SERVICES] and include the following steps: [STEPS]. Provide the n8n workflow JSON configuration and a brief explanation of how each node functions.
To automate the process of generating customer insights from product reviews, we'll create an n8n workflow that integrates with Shopify and a sentiment analysis API. Here's the workflow configuration:
```json
{
"nodes": [
{
"parameters": {
"resource": "collection",
"operation": "getAll"
},
"name": "Shopify Get Reviews",
"type": "n8n-nodes-base.shopify"
},
{
"parameters": {
"text": "=\"{{$node[\"Shopify Get Reviews\"].json[\"reviews\"][0].text}}\"",
"resource": "sentiment",
"operation": "analyze"
},
"name": "Sentiment Analysis",
"type": "n8n-nodes-base.sentiment"
},
{
"parameters": {
"resource": "collection",
"operation": "create"
},
"name": "Save Insights",
"type": "n8n-nodes-base.googleSheets"
}
],
"connections": {
"Shopify Get Reviews": {
"main": [[
{
"node": "Sentiment Analysis",
"type": "main",
"index": 0
}
]]
},
"Sentiment Analysis": {
"main": [[
{
"node": "Save Insights",
"type": "main",
"index": 0
}
]]
}
}
}
```
This workflow does the following:
1. **Shopify Get Reviews**: Fetches the latest product reviews from Shopify.
2. **Sentiment Analysis**: Analyzes the sentiment of each review using a third-party API.
3. **Save Insights**: Saves the review text and sentiment score to a Google Sheet for further analysis.
To implement this workflow, copy the JSON configuration into n8n, connect your Shopify and Google Sheets accounts, and activate the workflow. It will run automatically at the specified interval, keeping your customer insights up-to-date.Open-source workflow automation platform
Control SaaS spending with visibility and analytics
Automate your browser workflows effortlessly
Your one-stop shop for church and ministry supplies.
Design smarter sales workflows visually
AI project management with automated task prioritization
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan