ワンクリックで
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"}]}]}}'