update-jiralisted
Install: claude install-skill valasubramanian-kr/wallet-web-developer
# Sync JIRA Status Skill
## Purpose
Update JIRA issue status and post progress comments with GitHub PR link.
## Usage
```bash
/update-jira
```
(Must be run after `/push`)
## What This Skill Does
1. **Load PR Details**: Reads `pr-details.md` from the most recent workflow
2. **Update JIRA Status**: Transitions issue to "In Review" or appropriate status
3. **Post Comment**: Adds comment with PR link and summary to JIRA
4. **Link PR to JIRA**: Creates bidirectional linkage between GitHub PR and JIRA issue
## Required Context Files
Before proceeding, you must read these files from the most recent workflow directory:
1. **PR Details**: `workflow/jira-to-github/<JIRA-NUMBER>/pr-details.md` - Contains PR number, URL, and metadata
2. **Current Issue**: `workflow/jira-to-github/<JIRA-NUMBER>/current-issue.md` - Contains JIRA issue details and current status
Use the Glob tool to find the most recent workflow directory:
```
workflow/jira-to-github/*/pr-details.md
```
Then use the Read tool to load both files before proceeding with JIRA updates.
## Instructions
You are updating JIRA issue status after creating a GitHub pull request. Follow these steps:
### Step 1: Validate Prerequisites
Verify that:
1. PR details exist (`pr-details.md`)
2. JIRA issue was analyzed (`current-issue.md`)
3. PR was successfully created (has PR number and URL)
```bash
JIRA_DIR=$(ls -td workflow/jira-to-github/*/ 2>/dev/null | head -1)
if [ ! -f "$JIRA_DIR/pr-details.md" ]; then
echo "❌ No PR