Skip to main content

atlassian-jira-usage

Interact with Jira for the Stellar CCIP integration project using the Atlassian MCP. Provides project key (NONEVM), board ID (6688), and required label (stellar) so the agent can create, search, and manage tickets without unnecessary lookups. Use when creating Jira tickets, epics, searching issues, triaging bugs, generating reports, or any Jira/Atlassian operation for this project.

설치로 이동

소스 정보

저장소
smartcontractkit/chainlink-stellar
최근 소스 활동
2026년 3월 26일 00:38
감지된 SKILL.md 언어
영어
스타
0
포크
2

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
atlassian-jira-usage
description
Interact with Jira for the Stellar CCIP integration project using the Atlassian MCP. Provides project key (NONEVM), board ID (6688), and required label (stellar) so the agent can create, search, and manage tickets without unnecessary lookups. Use when creating Jira tickets, epics, searching issues, triaging bugs, generating reports, or any Jira/Atlassian operation for this project.
# Atlassian Jira Usage — Stellar Integration ## Project Constants Use these values directly. **Never search for or ask the user about them.** | Field | Value | |---|---| | **Project Key** | `NONEVM` | | **Board ID** | `6688` | | **Required Label** | `stellar` | ## Label Requirement **Every ticket, epic, story, task, or bug created in NONEVM must include the `stellar` label.** This is how the board filters work — tickets without this label will not appear on the Stellar board. When calling `createJiraIssue`, always include: ``` additional_fields={ "labels": ["stellar"] } ``` When adding labels to an existing issue, preserve any existing labels and append `stellar` if missing. ## Creating Tickets Use `createJiraIssue` from the Atlassian MCP. Always provide: - `projectKey`: `"NONEVM"` - `labels`: `["stellar"]` via `additional_fields` ``` createJiraIssue( cloudId="...", projectKey="NONEVM", issueTypeName="Task", # or Story, Bug, Epic summary="...", description="...", additional_fields={ "labels": ["stellar"] } ) ``` For epics with child tickets, create the epic first, capture its key, then create children with `parent` set to the epic key. Every child also needs the `stellar` label. ## Searching Issues Pre-built JQL patterns for this project. Replace placeholders as needed. **All open Stellar issues:** ```jql project = NONEVM AND labels = stellar AND status != Done ORDER BY priority DESC, updated DESC ``` **Stellar issues by status:** ```jql project = NONEVM AND labels = stellar AND status = "In Progress" ORDER BY updated DESC ``` **Recently completed:** ```jql project = NONEVM AND labels = stellar AND status = Done AND resolved >= -7d ORDER BY resolved DESC ``` **Blocked or high-priority:** ```jql project = NONEVM AND labels = stellar AND (priority IN (Highest, High) OR status = Blocked) AND status != Done ORDER BY priority DESC ``` **Issues under an epic:** ```jql parent = "NONEVM-XXX" AND labels = stellar ORDER BY priority DESC ``` **Text search within Stellar scope:** ```jql project = NONEVM AND labels = stellar AND text ~ "search terms" ORDER BY updated DESC ``` **Unassigned Stellar issues:** ```jql project = NONEVM AND labels = stellar AND assignee is EMPTY AND status != Done ORDER BY priority DESC ``` ## Triaging Bugs When triaging errors or bugs for this project, scope duplicate searches to the Stellar label: ```jql project = NONEVM AND labels = stellar AND type = Bug AND text ~ "error signature" ORDER BY created DESC ``` Always create new bugs with `issueTypeName="Bug"` and include the `stellar` label. ## Status Reports When generating status reports, use the Stellar-scoped JQL patterns above. Group by status: 1. Query completed: `status = Done AND resolved >= -7d` 2. Query in-progress: `status = "In Progress"` 3. Query blocked: `status = Blocked` 4. Query high-priority open: `priority IN (Highest, High) AND status != Done` All queries should include `project = NONEVM AND labels = stellar`. ## Quick Reference | Action | Key Info | |---|---| | Create any issue | `projectKey="NONEVM"`, labels=`["stellar"]` | | Search issues | `project = NONEVM AND labels = stellar` in JQL | | Board | ID `6688` | | Epic children | Set `parent` to epic key, still add `stellar` label | | Bug triage | Scope search to `labels = stellar AND type = Bug` |
GitHub에서 보기