# Create Jira Ticket

> Create Jira Ticket

- Skill: `cognitedata/create-jira-ticket` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cognitedata/create-jira-ticket`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cognitedata/create-jira-ticket/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: cognitedata (https://skillmd.com/u/cognitedata)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cognitedata/create-jira-ticket

---


# Create Jira Ticket

## Defaults

| Field        | Default value                                  |
|--------------|------------------------------------------------|
| cloudId      | `cognitedata.atlassian.net`                    |
| projectKey   | `CDF`                                          |
| issueType    | `Task` (or `Bug` if it's a bug)                |
| component    | `velocity:tooling`                             |
| parent epic  | `CDF-28398` (Toolkit: Maintenance H2 2026)     |

Override any default when the user specifies otherwise.

## Steps

1. **Gather inputs** — ask for anything not already provided:
   - Summary (required)
   - Issue type: `Task` or `Bug` (infer from context if obvious)
   - Description (optional but recommended)
   - Any overrides to the defaults above
1. **Confirm** — show a brief summary of what will be created and ask the user to confirm before proceeding.
1. **Create the ticket** using the Atlassian MCP `createJiraIssue` tool:

   ```yaml
   cloudId:       cognitedata.atlassian.net
   projectKey:    CDF
   issueTypeName: Task   (or Bug)
   summary:       <user-provided>
   description:   <user-provided, if any>
   parent:        CDF-28398
   contentFormat: markdown
   additional_fields:
     components:
       - name: velocity:tooling
   ```

1. **Report back** — share the new ticket key and URL so the user can open it directly.
   URL format: `https://cognitedata.atlassian.net/browse/<KEY>`

