# Jira Verify

> verifying that a JIRA ticket…

- Skill: `codyswanngt/jira-verify-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add codyswanngt/jira-verify-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/codyswanngt/jira-verify-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-verify-2

---


# Verify JIRA Ticket: $ARGUMENTS

Verify that the existing JIRA ticket `$ARGUMENTS` meets organizational standards. This skill is a thin post-write wrapper around `lisa:jira-validate-ticket`: it fetches the live ticket and asks `lisa:jira-validate-ticket` to run the gates against the fetched state.

This indirection exists so the gate definitions live in exactly one place (`lisa:jira-validate-ticket`). When the bar changes, change it there — `lisa:jira-verify`, `lisa:jira-write-ticket` (Phase 5.5 pre-write), and `lisa:notion-to-tracker` (PRD dry-run) all pick it up.

## Process

1. Resolve cloud ID via `mcp__atlassian__getAccessibleAtlassianResources`.
2. Fetch the ticket via `mcp__atlassian__getJiraIssue` for `$ARGUMENTS`.
3. Invoke `lisa:jira-validate-ticket` and pass the ticket key. The validator runs every gate (Specification + Feasibility) against the live state.
4. Surface the validator's report verbatim.

## Output

Pass through `lisa:jira-validate-ticket`'s structured output unchanged. Downstream callers parse the gate lines.

## Notes

- This skill is read-only. It never edits the ticket, posts comments, or changes status.

