jira
2
总安装量
2
周安装量
#67876
全站排名
安装命令
npx skills add https://github.com/zfael/brn --skill jira
Agent 安装分布
amp
2
opencode
2
kimi-cli
2
codex
2
github-copilot
2
gemini-cli
2
Skill 文档
JIRA Integration
Interact with JIRA API using workspace-configured tokens.
Quick Reference
| Action | Script |
|---|---|
| List my tickets | npx tsx scripts/list_tickets.ts |
| Get ticket details | npx tsx scripts/get_ticket.ts <ticket_key> |
| Update ticket status | npx tsx scripts/update_ticket.ts <ticket_key> <transition> |
| Add comment | npx tsx scripts/add_comment.ts <ticket_key> <comment> |
Prerequisites
Configure JIRA access in your workspace:
# Set JIRA Cloud URL
./skills/workspace-manager/scripts/configure_workspace.sh work jira_url https://company.atlassian.net
# Set API token (create at https://id.atlassian.com/manage-profile/security/api-tokens)
./skills/workspace-manager/scripts/configure_workspace.sh work jira_token your_api_token
# Set your JIRA email (required for auth)
./skills/workspace-manager/scripts/configure_workspace.sh work jira_email your@email.com
Workflow Examples
Start working on a ticket
# See what's assigned to you
npx tsx scripts/list_tickets.ts
# Get details for a specific ticket
npx tsx scripts/get_ticket.ts PROJ-123
# Move to "In Progress"
npx tsx scripts/update_ticket.ts PROJ-123 "In Progress"
After completing work
# Add a comment
npx tsx scripts/add_comment.ts PROJ-123 "PR created: https://github.com/..."
# Move to "Code Review"
npx tsx scripts/update_ticket.ts PROJ-123 "Code Review"
API Reference
See references/api_patterns.md for JIRA API patterns.