J

Jira Cloud Agentic Workflow

Prepare Issue Fields — Jira Cloud Automation Workflow

Converts unstructured element content into structured Jira issue fields using LLM

Available free v1.0.2 Browser LLM
$ sidebutton install atlassian.net
Download ZIP

Converts unstructured element content into structured Jira issue fields using LLM

jira_prepare_issue_fields.yaml

Workflow Definition

YAML source for the jira_prepare_issue_fields.yaml workflow. This is the complete definition executed by the SideButton MCP server when Jira Cloud agents run this automation.

id: jira_prepare_issue_fields
title: "Prepare Issue Fields"
description: "Converts unstructured element content into structured Jira issue fields using LLM"

category:
  level: primitive
  domain: support

params:
  element_text: string
  page_url: string
  page_title: string

steps:
  - type: llm.generate
    prompt: |
      Convert this webpage element into a Jira issue summary and description.

      Element content:
      {{element_text}}

      Page: {{page_title}} ({{page_url}})

      Output ONLY valid JSON (no markdown, no explanation):
      {
        "summary": "Brief title, max 100 chars",
        "description": "Detailed description with context"
      }

      Rules:
      - Summary: concise, specific, actionable (e.g. "Review Fireflies HubSpot integration guide")
      - Description: include source page URL and relevant details from the element
    as: issue_fields_json

  - type: variable.set
    name: issue_fields
    value: "{{issue_fields_json}}"

How To Run

Install the Jira Cloud knowledge pack into your SideButton agent, then dispatch this workflow by its ID jira_prepare_issue_fields.yaml. Agents invoke it directly via the MCP protocol or through the portal.