소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 31일 17:19
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill jira명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | jira |
| description | Jira via Atlassian MCP — issue ops, JQL, branch naming, PR comment. |
Before any operation, verify the Atlassian MCP is available using this three-step check. Do not show setup instructions until all three steps fail.
~/.claude.json for Claude Code; opencode.json / Codex's MCP config otherwise) for an entry under mcpServers with key atlassian pointing to mcp.atlassian.com. If found, proceed to Step 2. If present but not loaded in this session, tell the user to restart their CLI.query="atlassian", max_results=5. If Atlassian tools appear, load the schema and proceed to Step 3.mcp__atlassian__atlassianUserInfo. Success = fully operational. Auth error = guide re-authentication.Only show setup instructions when all three steps fail. For setup details, load references/mcp-setup.md. For REST API fallback, load references/rest-api.md.
After confirming the MCP, scan recent issues to detect team conventions:
mcp__atlassian__searchJiraIssuesUsingJql
jql: "project = PROJ ORDER BY created DESC"
fields: ["summary", "issuetype", "status", "labels", "components", "priority", "assignee", "reporter", "customfield_*"]
maxResults: 10
Detect: custom issue types, label patterns, non-standard workflow statuses, custom fields, assignee norms, linked issue patterns. Store in working memory — do not re-query per operation.
Pre-operation assignment confirmation: before any write operation (create, update, transition, comment, assign), ask once per session: "Should I assign this task to you as well?" Remember the answer — do not ask again.
For full MCP tool call signatures, load references/operations.md. Summary:
| Goal | MCP tool |
|---|---|
| Fetch issue | mcp__atlassian__getJiraIssue |
| Search (JQL) | mcp__atlassian__searchJiraIssuesUsingJql |
| Create issue | mcp__atlassian__createJiraIssue |
| Update issue | mcp__atlassian__editJiraIssue |
| Transition | mcp__atlassian__transitionJiraIssue (fetch transitions first) |
| Comment | mcp__atlassian__addCommentToJiraIssue |
| Log work | mcp__atlassian__addWorklogToJiraIssue |
| Link issues | mcp__atlassian__createIssueLink (fetch types first) |
Pattern: {type}/{taskId}_short-description
{type} — Conventional Commits type (feat, fix, docs, chore, refactor, perf, test, build, ci, revert){taskId} — Jira key exactly as-is (e.g., VHI-450)short-description — lowercase, hyphen-separated, ≤5 words, imperativeExamples: feat/VHI-450_add-user-authentication, fix/PROJ-123_prevent-double-charge
After creating the branch, confirm the assignment preference and act accordingly. Do not change issue status unless explicitly asked.
Start work on an issue:
type from summary + issue typeCreate a bug report:
Bug, priority matching severity, description with steps + expected + actualAfter a PR is created: ask "Should I add a comment on {issueKey}?" If yes, post comment with PR link following the QA comment format in references/operations.md.
cloudId — fetch via getAccessibleAtlassianResources on first usesearchJiraIssuesUsingJql for bulk lookupsgetTransitionsForJiraIssue first (IDs vary per project)Created by: @{reporter.displayName} — always fetch reporter before postingreferences/operations.md