원클릭으로
jira
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Retrieve secrets and vault items from 1Password using the op CLI with a service account token.
Create, read, and search Apple Notes on macOS using osascript AppleScript.
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
Read, search, create, and update Notion pages and databases via the Notion API.
| name | jira |
| description | Create, read, transition, and comment on Jira issues via the Jira REST API v3. |
| always | false |
| metadata | {"clawlite":{"emoji":"🎯","auth":{"requiredEnv":["JIRA_BASE_URL","JIRA_EMAIL","JIRA_API_TOKEN"]}}} |
Use this skill when the user wants to manage Jira issues, transitions, or comments.
Set:
JIRA_BASE_URL — e.g. https://yourorg.atlassian.netJIRA_EMAIL — Atlassian account emailJIRA_API_TOKEN — from https://id.atlassian.com/manage-profile/security/api-tokensAUTH=$(echo -n "$JIRA_EMAIL:$JIRA_API_TOKEN" | base64)
BASE="$JIRA_BASE_URL/rest/api/3"
# Get an issue
curl -s -H "Authorization: Basic $AUTH" -H "Accept: application/json" \
"$BASE/issue/PROJ-123"
# Search with JQL
curl -s -H "Authorization: Basic $AUTH" -H "Accept: application/json" \
"$BASE/search?jql=project=PROJ+AND+status='In Progress'&maxResults=20"
# Create an issue
curl -s -X POST -H "Authorization: Basic $AUTH" \
-H "Content-Type: application/json" -H "Accept: application/json" \
"$BASE/issue" \
-d '{"fields":{"project":{"key":"PROJ"},"summary":"Issue title","issuetype":{"name":"Bug"},"description":{"type":"doc","version":1,"content":[{"type":"paragraph","content":[{"type":"text","text":"Description"}]}]}}}'
# Get available transitions
curl -s -H "Authorization: Basic $AUTH" "$BASE/issue/PROJ-123/transitions"
# Perform a transition (e.g. move to Done)
curl -s -X POST -H "Authorization: Basic $AUTH" \
-H "Content-Type: application/json" \
"$BASE/issue/PROJ-123/transitions" \
-d '{"transition":{"id":"31"}}'
# Add a comment
curl -s -X POST -H "Authorization: Basic $AUTH" \
-H "Content-Type: application/json" \
"$BASE/issue/PROJ-123/comment" \
-d '{"body":{"type":"doc","version":1,"content":[{"type":"paragraph","content":[{"type":"text","text":"Comment text"}]}]}}'