← ClaudeAtlas

jira-datacenterlisted

This skill should be used when the user asks to "get Jira issue", "create Jira ticket", "search Jira", "update issue status", or needs to interact with Jira Data Center/Server instances.
mfmezger/ai_agent_dotfiles · ★ 1 · Data & Documents · score 68
Install: claude install-skill mfmezger/ai_agent_dotfiles
# Jira Data Center Interact with Jira Data Center/Server instances via REST API. ## Features | Command | Description | | ----------- | --------------------------------------- | | get | Get issue details by key | | search | Search issues using JQL | | create | Create a new issue | | update | Update issue fields | | transition | Change issue status | | comment | Add a comment to an issue | | assign | Assign issue to a user | | projects | List available projects | | transitions | List available transitions for an issue | ## Prerequisites Environment variables (can be in `.env` file): - `JIRA_BASE_URL` - Your Jira instance URL (e.g., `https://jira.company.com`) - `JIRA_PAT` - Personal Access Token (preferred) OR for basic auth: - `JIRA_BASE_URL` - Your Jira instance URL - `JIRA_USERNAME` - Your username - `JIRA_PASSWORD` - Your password ### Creating a Personal Access Token 1. Go to your Jira profile (click avatar → Profile) 2. Navigate to Personal Access Tokens 3. Click "Create token" 4. Give it a name and set expiry 5. Copy the token to `JIRA_PAT` ## Usage ```bash uvx --with requests --with python-dotenv --with typer --with rich \ python ~/.claude/skills/jira-datacenter/scripts/jira.py COMMAND [OPTIONS] ``` ## Commands ### Get Issue ```bash uvx --with request