with one click
analysis-api-create-cherry-pick-issue
// Create a KTIJ cherry-pick tracking issue for a KT fix that needs to be cherry-picked to an IntelliJ branch. Use when cherry-picking Analysis API fixes.
// Create a KTIJ cherry-pick tracking issue for a KT fix that needs to be cherry-picked to an IntelliJ branch. Use when cherry-picking Analysis API fixes.
| name | analysis-api-create-cherry-pick-issue |
| description | Create a KTIJ cherry-pick tracking issue for a KT fix that needs to be cherry-picked to an IntelliJ branch. Use when cherry-picking Analysis API fixes. |
| disable-model-invocation | true |
Creates a KTIJ tracking issue for cherry-picking a KT fix to an IntelliJ release branch.
This skill requires the YouTrack MCP (mcp__YouTrack__* tools). If the YouTrack MCP is not available, stop immediately and inform the user that this skill cannot run without it.
KT-84711)2026.1.1)0e2ca82e, 449bdb32)Run these in parallel:
mcp__YouTrack__get_issue to get:
summary — used in the KTIJ issue summarycustomFields.Severity — mapped to KTIJ Priority (see mapping below)mcp__YouTrack__get_current_user to get the login for the assignee.Severity-to-Priority mapping (KT Severity → KTIJ Priority):
| KT Severity | KTIJ Priority |
|---|---|
| Critical | Critical |
| Major | Major |
| Normal | Normal |
| Minor | Minor |
If the KT issue has no Severity or an unmapped value, default to Normal.
Before creating the issue, present the resolved fields and ask for confirmation:
Cherry-pick {KT-ID}: {KT summary} to {target version}Use mcp__YouTrack__create_issue with:
project: KTIJ
summary: "Cherry-pick {KT-ID}: {KT summary} to {target version}"
description: (see template below)
permittedGroups: ["jetbrains-team"]
customFields:
Type: Task
Priority: (mapped)
State: Open
Subsystems: ["IDE"]
Planned for: ["{target version}"]
Assignee: (current user login)
Description template:
Cherry-pick the fix for [{KT-ID}](https://youtrack.jetbrains.com/issue/{KT-ID}) to IntelliJ {target version}.
**Commits:** `{hash1}`, `{hash2}`, ...
**Original issue:** {KT-ID} — {KT summary}
Use mcp__YouTrack__manage_issue_tags to add Needs cherry-picking to the created issue.
Use mcp__YouTrack__link_issues to link the KT issue as a previous step of the new KTIJ issue:
targetIssueId: {KTIJ-ID}
linkType: "previous step"
issueToLinkId: {KT-ID}
Fetch the created issue via mcp__YouTrack__get_issue and confirm all fields are correct. Report the issue ID and URL to the user.