Back to Catalog

Ticket triage for Jira Service Management with Gemini AI audit and guidance

Alejandro ScunciaAlejandro Scuncia
256 views
2/3/2026
Official Page

An extendable triage workflow that classifies severity, sets components, and posts actionable guidance for support engineers using n8n + Gemini + Cache Augmented Generation (CAG). Designed for Jira Service Management, but easily adaptable to Zendesk, Freshdesk, or ServiceNow.


Description

Support teams loose valuable time when tickets are misclassified: wrong severity, missing components, unclear scope. Engineers end up re-routing issues and chasing missing info instead of solving real problems.

This workflow automates triage by combining domain rules with AI-driven classification and guidance, so engineers receive better-prepared tickets.

It includes:
✅ Real-time ticket capture via webhook
✅ AI triage for severity and component
CAG-powered guidance: 3 next steps + missing info
✅ Internal audit comment with justifications & confidence
✅ Structured metrics for reporting


⚙️ How It Works

This workflow runs in 4 stages:

📥 Entry & Setup

  • Webhook triggers on ticket creation
  • Loads domain rules (priority policy, components, guidance templates)
  • Sets confidence threshold & triage label

🧠 AI Analysis (Gemini + CAG)

  • Builds structured payload with ticket + domain context
  • Gemini proposes severity, component, guidance, missing info
  • Output normalized for safe automation (valid JSON, conservative confidence)

🤖 Update & Audit

  • Updates fields (priority, component, labels) if confidence ≥ threshold
  • Posts internal audit comment with:
    • 3 next steps
    • Missing info to request
    • Justifications + confidence

📊 Metrics

  • Captures applied changes, confidence scores, and API statuses
  • Enables reliability tracking & continuous improvement

🌟 Key Features

  • CAG-powered guidance → lightning-fast, context-rich next steps
  • Explainable automation → transparent audit comments for every decision
  • Domain-driven rules → adaptable to any product or support domain
  • Portable → swap JSM with Zendesk, Freshdesk, ServiceNow via HTTP nodes

🔐 Required Credentials

| Tool | Use | |------|-----| | Jira Service Management | Ticketing system (API + comments) | | Google Gemini/Gemma | LLM analysis | | HTTP Basic Auth | For Jira API requests (bot user) |

⚠️ Setup tip: create a dedicated bot user in Jira Service Management with an API token.
This ensures clean audit logs, proper permissions, and avoids mixing automation with human accounts.


🧰 Customization Tips

  • Replace https://your-jsm-url/... with your own Jira Service Management domain.
  • Update the credentials with the bot user’s API token created above.
  • Swap Jira Service Management nodes with other ticketing systems like Zendesk, Freshdesk, or ServiceNow.
  • Extend the domain schema (keywords, guidance_addons) to fit your product or support environment.

🗂️ Domain Schema

This workflow uses a domain-driven schema to guide triage.
It defines:

  • Components → valid areas for classification
  • Priority policies & rules → how severity is determined
  • Keywords → domain-specific signals (e.g., “API error”, “all users affected”)
  • Guidance addons → contextual next steps for engineers
  • No-workaround phrases → escalate severity if present

✨ The full domain JSON (with complete keyword & guidance mapping) is included as a sticky note inside the workflow.


💡 Use Cases

  • Automated triage for IT & support tickets
  • Incident classification with outage/security detection
  • Contextual guidance for engineers in customer support
  • Faster escalation and routing of critical issues

🧠 Who It’s For

  • Support teams running Jira Service Management
  • Platform teams automating internal ticket ops
  • AI consultants prototyping practical triage workflows
  • Builders exploring CAG today, RAG tomorrow

🚀 Try It Out!

  1. ⚙️ Import the Workflow in n8n (cloud or self-hosted).
  2. 🔑 Add Credentials (JSM API + Gemini key).
  3. Configure Setup (confidence threshold, triage label, domain rules).
  4. 🔗 Connect Webhook in JSM → issue_created → n8n webhook URL.
  5. 🧪 Test with a Ticket → see auto-updates + AI audit comment.
  6. 🔄 Swap the Ticketing System → adapt HTTP nodes for Zendesk, Freshdesk, or ServiceNow.

💬 Have Feedback or Ideas? I’d Love to Hear

This project is open, modular, and evolving. If you try it, adapt it, or extend it, I’d love to hear your feedback — let’s improve it together in the n8n builder community.

📧 ascuncia.es@gmail.com 🔗Linkedin

n8n Workflow: AI-Powered Ticket Triage for Jira Service Management with Gemini

This n8n workflow demonstrates a foundational setup for integrating AI capabilities into Jira Service Management ticket triage. It uses a webhook to trigger the workflow, prepares data, and then interacts with the Google Gemini AI model. While the current workflow is a basic framework, it lays the groundwork for advanced automation, such as auditing ticket content, suggesting resolutions, or providing guidance to agents based on AI analysis.

What it does

This workflow outlines the following steps:

  1. Receives a Webhook: It starts by listening for incoming data via a webhook, which could be triggered by a new ticket creation or update in a system like Jira Service Management.
  2. Edits Fields: A "Set" node is used to manipulate or add data fields to the incoming payload. This is a placeholder for extracting relevant information from the ticket (e.g., summary, description, reporter) that will be sent to the AI.
  3. Executes Custom Code: A "Code" node is included to perform custom JavaScript logic. This could be used for advanced data transformation, validation, or preparing the prompt for the AI model.
  4. Interacts with Google Gemini: The workflow then sends the prepared data to the Google Gemini AI model. This is where the AI can analyze the ticket information to perform tasks like:
    • Auditing: Checking for completeness, sentiment, or key information.
    • Guidance: Suggesting next steps, relevant knowledge base articles, or potential solutions.
    • Categorization: Automatically assigning labels or categories based on content.
    • Summarization: Creating concise summaries of long ticket descriptions.
  5. Performs HTTP Request: Finally, an "HTTP Request" node is present. This would typically be used to send the AI's output back to Jira Service Management (e.g., update the ticket with AI-generated comments, set a priority, or assign it to a specific agent).
  6. Provides a Sticky Note: A sticky note is included for documentation or instructions within the workflow itself.

Prerequisites/Requirements

To use this workflow, you will need:

  • n8n Instance: A running instance of n8n.
  • Webhook Source: A system capable of sending webhooks (e.g., Jira Service Management, another ticketing system, or a custom application).
  • Google Gemini API Key: Access to the Google Gemini API and a configured credential in n8n.
  • Target System API (Optional but Recommended): If you intend to update a system like Jira Service Management with AI insights, you will need API access and credentials for that system.

Setup/Usage

  1. Import the Workflow: Import the provided JSON into your n8n instance.
  2. Configure the Webhook:
    • Activate the "Webhook" node.
    • Copy the generated webhook URL.
    • Configure your external system (e.g., Jira Service Management) to send POST requests to this URL whenever a relevant event occurs (e.g., new ticket created, ticket updated).
  3. Configure Credentials:
    • Set up your Google Gemini API credential in n8n.
    • If you plan to interact with other services (e.g., Jira), configure their respective API credentials.
  4. Customize Data Processing:
    • Edit Fields (Set): Modify this node to extract and format the specific ticket data you want to send to Gemini.
    • Code: Adjust the JavaScript in the "Code" node for any complex data manipulation or prompt engineering required for your AI queries.
  5. Customize Google Gemini Interaction:
    • Configure the "Google Gemini" node with the appropriate model, prompt, and parameters to achieve your desired AI analysis (e.g., "Analyze the sentiment of this ticket description: {{ $json.ticketDescription }}").
  6. Configure Output (HTTP Request):
    • Modify the "HTTP Request" node to send the AI's response back to your ticketing system. This might involve updating a ticket field, adding a comment, or triggering further actions.
  7. Activate the Workflow: Once configured, activate the workflow in n8n.

This workflow provides a robust starting point for enhancing your service management with intelligent AI capabilities.

Related Templates

Track competitor SEO keywords with Decodo + GPT-4.1-mini + Google Sheets

This workflow automates competitor keyword research using OpenAI LLM and Decodo for intelligent web scraping. Who this is for SEO specialists, content strategists, and growth marketers who want to automate keyword research and competitive intelligence. Marketing analysts managing multiple clients or websites who need consistent SEO tracking without manual data pulls. Agencies or automation engineers using Google Sheets as an SEO data dashboard for keyword monitoring and reporting. What problem this workflow solves Tracking competitor keywords manually is slow and inconsistent. Most SEO tools provide limited API access or lack contextual keyword analysis. This workflow solves that by: Automatically scraping any competitor’s webpage with Decodo. Using OpenAI GPT-4.1-mini to interpret keyword intent, density, and semantic focus. Storing structured keyword insights directly in Google Sheets for ongoing tracking and trend analysis. What this workflow does Trigger — Manually start the workflow or schedule it to run periodically. Input Setup — Define the website URL and target country (e.g., https://dev.to, france). Data Scraping (Decodo) — Fetch competitor web content and metadata. Keyword Analysis (OpenAI GPT-4.1-mini) Extract primary and secondary keywords. Identify focus topics and semantic entities. Generate a keyword density summary and SEO strength score. Recommend optimization and internal linking opportunities. Data Structuring — Clean and convert GPT output into JSON format. Data Storage (Google Sheets) — Append structured keyword data to a Google Sheet for long-term tracking. Setup Prerequisites If you are new to Decode, please signup on this link visit.decodo.com n8n account with workflow editor access Decodo API credentials OpenAI API key Google Sheets account connected via OAuth2 Make sure to install the Decodo Community node. Create a Google Sheet Add columns for: primarykeywords, seostrengthscore, keyworddensity_summary, etc. Share with your n8n Google account. Connect Credentials Add credentials for: Decodo API credentials - You need to register, login and obtain the Basic Authentication Token via Decodo Dashboard OpenAI API (for GPT-4o-mini) Google Sheets OAuth2 Configure Input Fields Edit the “Set Input Fields” node to set your target site and region. Run the Workflow Click Execute Workflow in n8n. View structured results in your connected Google Sheet. How to customize this workflow Track Multiple Competitors → Use a Google Sheet or CSV list of URLs; loop through them using the Split In Batches node. Add Language Detection → Add a Gemini or GPT node before keyword analysis to detect content language and adjust prompts. Enhance the SEO Report → Expand the GPT prompt to include backlink insights, metadata optimization, or readability checks. Integrate Visualization → Connect your Google Sheet to Looker Studio for SEO performance dashboards. Schedule Auto-Runs → Use the Cron Node to run weekly or monthly for competitor keyword refreshes. Summary This workflow automates competitor keyword research using: Decodo for intelligent web scraping OpenAI GPT-4.1-mini for keyword and SEO analysis Google Sheets for live tracking and reporting It’s a complete AI-powered SEO intelligence pipeline ideal for teams that want actionable insights on keyword gaps, optimization opportunities, and content focus trends, without relying on expensive SEO SaaS tools.

Ranjan DailataBy Ranjan Dailata
161

Two-way property repair management system with Google Sheets & Drive

This workflow automates the repair request process between tenants and building managers, keeping all updates organized in a single spreadsheet. It is composed of two coordinated workflows, as two separate triggers are required — one for new repair submissions and another for repair updates. A Unique Unit ID that corresponds to individual units is attributed to each request, and timestamps are used to coordinate repair updates with specific requests. General use cases include: Property managers who manage multiple buildings or units. Building owners looking to centralize tenant repair communication. Automation builders who want to learn multi-trigger workflow design in n8n. --- ⚙️ How It Works Workflow 1 – New Repair Requests Behind the Scenes: A tenant fills out a Google Form (“Repair Request Form”), which automatically adds a new row to a linked Google Sheet. Steps: Trigger: Google Sheets rowAdded – runs when a new form entry appears. Extract & Format: Collects all relevant form data (address, unit, urgency, contacts). Generate Unit ID: Creates a standardized identifier (e.g., BUILDING-UNIT) for tracking. Email Notification: Sends the building manager a formatted email summarizing the repair details and including a link to a Repair Update Form (which activates Workflow 2). --- Workflow 2 – Repair Updates Behind the Scenes:\ Triggered when the building manager submits a follow-up form (“Repair Update Form”). Steps: Lookup by UUID: Uses the Unit ID from Workflow 1 to find the existing row in the Google Sheet. Conditional Logic: If photos are uploaded: Saves each image to a Google Drive folder, renames files consistently, and adds URLs to the sheet. If no photos: Skips the upload step and processes textual updates only. Merge & Update: Combines new data with existing repair info in the same spreadsheet row — enabling a full repair history in one place. --- 🧩 Requirements Google Account (for Forms, Sheets, and Drive) Gmail/email node connected for sending notifications n8n credentials configured for Google API access --- ⚡ Setup Instructions (see more detail in workflow) Import both workflows into n8n, then copy one into a second workflow. Change manual trigger in workflow 2 to a n8n Form node. Connect Google credentials to all nodes. Update spreadsheet and folder IDs in the corresponding nodes. Customize email text, sender name, and form links for your organization. Test each workflow with a sample repair request and a repair update submission. --- 🛠️ Customization Ideas Add Slack or Telegram notifications for urgent repairs. Auto-create folders per building or unit for photo uploads. Generate monthly repair summaries using Google Sheets triggers. Add an AI node to create summaries/extract relevant repair data from repair request that include long submissions.

Matt@VeraisonLabsBy Matt@VeraisonLabs
208

Generate song lyrics and music from text prompts using OpenAI and Fal.ai Minimax

Spark your creativity instantly in any chat—turn a simple prompt like "heartbreak ballad" into original, full-length lyrics and a professional AI-generated music track, all without leaving your conversation. 📋 What This Template Does This chat-triggered workflow harnesses AI to generate detailed, genre-matched song lyrics (at least 600 characters) from user messages, then queues them for music synthesis via Fal.ai's minimax-music model. It polls asynchronously until the track is ready, delivering lyrics and audio URL back in chat. Crafts original, structured lyrics with verses, choruses, and bridges using OpenAI Submits to Fal.ai for melody, instrumentation, and vocals aligned to the style Handles long-running generations with smart looping and status checks Returns complete song package (lyrics + audio link) for seamless sharing 🔧 Prerequisites n8n account (self-hosted or cloud with chat integration enabled) OpenAI account with API access for GPT models Fal.ai account for AI music generation 🔑 Required Credentials OpenAI API Setup Go to platform.openai.com → API keys (sidebar) Click "Create new secret key" → Name it (e.g., "n8n Songwriter") Copy the key and add to n8n as "OpenAI API" credential type Test by sending a simple chat completion request Fal.ai HTTP Header Auth Setup Sign up at fal.ai → Dashboard → API Keys Generate a new API key → Copy it In n8n, create "HTTP Header Auth" credential: Name="Fal.ai", Header Name="Authorization", Header Value="Key [Your API Key]" Test with a simple GET to their queue endpoint (e.g., /status) ⚙️ Configuration Steps Import the workflow JSON into your n8n instance Assign OpenAI API credentials to the "OpenAI Chat Model" node Assign Fal.ai HTTP Header Auth to the "Generate Music Track", "Check Generation Status", and "Fetch Final Result" nodes Activate the workflow—chat trigger will appear in your n8n chat interface Test by messaging: "Create an upbeat pop song about road trips" 🎯 Use Cases Content Creators: YouTubers generating custom jingles for videos on the fly, streamlining production from idea to audio export Educators: Music teachers using chat prompts to create era-specific folk tunes for classroom discussions, fostering interactive learning Gift Personalization: Friends crafting anniversary R&B tracks from shared memories via quick chats, delivering emotional audio surprises Artist Brainstorming: Songwriters prototyping hip-hop beats in real-time during sessions, accelerating collaboration and iteration ⚠️ Troubleshooting Invalid JSON from AI Agent: Ensure the system prompt stresses valid JSON; test the agent standalone with a sample query Music Generation Fails (401/403): Verify Fal.ai API key has minimax-music access; check usage quotas in dashboard Status Polling Loops Indefinitely: Bump wait time to 45-60s for complex tracks; inspect fal.ai queue logs for bottlenecks Lyrics Under 600 Characters: Tweak agent prompt to enforce fuller structures like [V1][C][V2][B][C]; verify output length in executions

Daniel NkenchoBy Daniel Nkencho
601