一键导入
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"}]}]}}'