Loading...
Loading...
Jira API operations via Python CLI scripts. AUTOMATICALLY TRIGGER when user mentions Jira URLs (https://jira.*/browse/*, https://*.atlassian.net/browse/*), issue keys (PROJ-123), or asks about Jira issues. Use when Claude needs to: (1) Search issues with JQL queries, (2) Get or update issue details, (3) Create new issues, (4) Transition issue status (e.g., "To Do" → "Done"), (5) Add comments, (6) Log work time (worklogs), (7) List sprints and sprint issues, (8) List boards and board issues, (9) Create or list issue links, (10) Discover available Jira fields, (11) Get user profile information, (12) Download attachments from issues. If authentication fails, offer interactive credential setup via jira-setup.py. Supports both Jira Cloud and Server/Data Center with automatic auth detection.
npx skill4agent add netresearch/jira-skill jira-communicationuv run--help--json--quiet--debughttps://jira.*/browse/*https://*.atlassian.net/browse/*PROJ-123NRS-4167jira-issue.py get PROJ-123uv run scripts/core/jira-setup.py| Script | Purpose |
|---|---|
| Interactive credential config |
| Verify connection |
| Get/update issue details |
| Search with JQL |
| Time tracking |
| Download attachments |
| Create issues |
| Change status |
| Add comments |
| List sprints |
| List boards |
| User info |
| Search fields |
| Issue links |
# Correct: uv run scripts/core/jira-issue.py --json get PROJ-123
# Wrong: uv run scripts/core/jira-issue.py get PROJ-123 --jsonuv run scripts/core/jira-validate.py --verbose
uv run scripts/core/jira-search.py query "assignee = currentUser()"
uv run scripts/core/jira-issue.py get PROJ-123
uv run scripts/core/jira-worklog.py add PROJ-123 2h --comment "Work done"
uv run scripts/workflow/jira-transition.py do PROJ-123 "In Progress" --dry-runreferences/jql-quick-reference.mdreferences/troubleshooting.mdJIRA_URLJIRA_USERNAMEJIRA_API_TOKENJIRA_URLJIRA_PERSONAL_TOKEN~/.env.jirajira-validate.py --verbose