Jira Cloud Agentic Workflow
Jira Browser: Create Issue — Jira Cloud Agentic Workflow
Navigate to Jira create issue form, fill fields, and submit
sidebutton install jira A browser-driven creation flow that opens the Jira create-issue dialog, fills in project, issue type, summary, description, labels, and any custom fields supplied as inputs, and submits. It relies on the Jira Cloud knowledge pack for selectors and handles both the global create button and the project-scoped dialog variants.
Use this when an agent needs to file a ticket as part of a larger chain — for example, during triage, bug reporting, or converting a chat message into a tracked issue. It returns the new issue key so downstream steps can link or comment on it.
Steps
- 1. Navigate to a URL
- url
- {{env.JIRA_BROWSER_URL}}/secure/CreateIssue!default.jspa
browser.navigate - 2. Wait
- selector
- #summary
- timeout
- 10000
browser.wait - 3. Capture page snapshot
- as
- create_form
browser.snapshot - 4. Type into a field
- selector
- #summary
- text
- {{summary}}
browser.type - 5. Type into a field
- selector
- #description
- text
- {{description}}
browser.type - 6. Click an element
- selector
- #create-issue-submit
browser.click - 7. Wait
- ms
- 2000
browser.wait - 8. Capture page snapshot
- as
- result
browser.snapshot
Workflow definition
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-09"
id: jira_browser_create_issue
title: "Jira Browser: Create Issue"
description: "Navigate to Jira create issue form, fill fields, and submit"
overview: |
A browser-driven creation flow that opens the Jira create-issue dialog, fills in project, issue type, summary, description, labels, and any custom fields supplied as inputs, and submits. It relies on the Jira Cloud knowledge pack for selectors and handles both the global create button and the project-scoped dialog variants.
Use this when an agent needs to file a ticket as part of a larger chain — for example, during triage, bug reporting, or converting a chat message into a tracked issue. It returns the new issue key so downstream steps can link or comment on it.
category:
level: task
domain: engineering
reusable: true
params:
project: string
summary: string
description: string
steps:
- type: browser.navigate
url: "{{env.JIRA_BROWSER_URL}}/secure/CreateIssue!default.jspa"
- type: browser.wait
selector: "#summary"
timeout: 10000
- type: browser.snapshot
as: create_form
- type: browser.type
selector: "#summary"
text: "{{summary}}"
- type: browser.type
selector: "#description"
text: "{{description}}"
- type: browser.click
selector: "#create-issue-submit"
- type: browser.wait
ms: 2000
- type: browser.snapshot
as: result