원클릭으로
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 직업 분류 기준
Create or update SKILL.md packages with deterministic frontmatter, clear trigger descriptions, and valid command/script execution mappings.
Narrative summarization, storytelling, and long-form synthesis in Sigrid's voice — named after the Viking court poets who kept memory alive through story.
Maintain stable user and project facts across sessions using workspace memory files and runtime memory state.
Schedule reminders and recurring tasks with the `cron` tool (add/list/remove/enable/disable/run).
Read, write, and search local Obsidian vault markdown files via the filesystem.
Remote-control tmux sessions for interactive CLIs by sending keystrokes and capturing pane output.
| name | jira |
| description | Create, read, transition, and comment on Jira issues via the Jira REST API v3. |
| always | false |
| script | jira |
| requirements | {"env":["JIRA_BASE_URL","JIRA_EMAIL","JIRA_API_TOKEN"]} |
| 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"}]}]}}'