# Jira Journey

> Parse a JIRA ticket's Validation Journey section, execute the verification steps, capture evidence, and post to JIRA + GitHub PR using the jira-evidence skill.

- Skill: `codyswanngt/jira-journey-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add codyswanngt/jira-journey-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/codyswanngt/jira-journey-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: codyswanngt (https://skillmd.com/u/codyswanngt)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/codyswanngt/jira-journey-2

---


# JIRA Validation Journey

Parse a JIRA ticket's Validation Journey, execute the verification steps using the project's appropriate tools, capture evidence at each marker, and post to JIRA + GitHub PR.

## Arguments

`$ARGUMENTS`: `<TICKET_ID> [PR_NUMBER]`

- `TICKET_ID` (required): JIRA ticket key (e.g., `PROJ-123`)
- `PR_NUMBER` (optional): GitHub PR number to update description

## Prerequisites

- `JIRA_API_TOKEN` environment variable set
- `jira-cli` configured — `.lisa/jira-cli/.config.yml` (written by the
  `setup-jira-cli` SessionStart hook) or `~/.config/.jira/.config.yml`
- `gh` CLI authenticated

## Workflow

### Step 1: Parse the Validation Journey

Run the parser script to extract the Validation Journey from the JIRA ticket description:

```bash
python3 .claude/skills/jira-journey/scripts/parse-plan.py <TICKET_ID>
```

The script outputs JSON with: `ticket`, `prerequisites`, `steps`, `viewports`, `assertions`.

### Step 2: Satisfy Prerequisites

Before starting the journey, verify each prerequisite listed in the parsed output.

### Step 3: Execute Steps

Execute each step sequentially. At each step with an evidence marker (`[SCREENSHOT: name]`, or typed `[EVIDENCE: <artifact-type>: <name>]` per the `verification` rule — `[SCREENSHOT: name]` is shorthand for `[EVIDENCE: screenshot: name]`), capture an artifact of the declared type.

The execution method depends on the project type:
- **UI projects**: Use Playwright MCP browser tools, capture screenshots at each viewport
- **API projects**: Use curl or test commands, capture stdout/stderr
- **Library projects**: Run tests, capture output

Stack-specific overrides provide the actual execution implementation.

### Step 4: Generate Evidence Templates

After capturing all evidence, run the template generator to format evidence for JIRA and GitHub.

### Step 5: Post Evidence

Use the `/jira-evidence` skill to post everything:

```bash
bash .claude/skills/jira-evidence/scripts/post-evidence.sh <TICKET_ID> ./evidence <PR_NUMBER>
```

### Step 6: Verify

Confirm evidence renders at both the JIRA ticket and GitHub PR.

