Jira QA Workflows

Jira QA Workflows is a skill for Claude Code, Codex from PramodDutta/qaskills. It costs 45 tokens per session (1,599 once invoked), scanned A, original, MIT.

A guide to running software quality work in Jira, including bug tracking, JQL searches, dashboards, sprint routines, and automated bulk operations. Jira is a tool for managing development work.

In plain words
What is it for?
Use it to write actionable bug reports, query testing work with JQL, build quality dashboards, manage triage, and automate Jira reports or bulk bug actions.
Why use it?
It gives QA teams a consistent way to describe bugs, find relevant work, track quality, and handle repetitive updates safely.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for aider. Also seen: mentions Codex; built for aider; mentions Gemini CLI.

Good fit Use it to write actionable bug reports, query testing work with JQL, build quality dashboards, manage triage, and automate Jira reports or bulk bug actions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pramoddutta/qaskills/jira-qa-workflows
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PramodDutta/qaskills --skill jira-qa-workflows
Clone the repo
git clone --depth 1 https://github.com/PramodDutta/qaskills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Jira QA Workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/pramoddutta/qaskills/jira-qa-workflows/github.svg)](https://agentmods.dev/skills/pramoddutta/qaskills/jira-qa-workflows)
Your own site
<a href="https://agentmods.dev/skills/pramoddutta/qaskills/jira-qa-workflows"><img src="https://agentmods.dev/badge/skills/pramoddutta/qaskills/jira-qa-workflows/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Jira QA Workflows

Your own site · 80×15
<a href="https://agentmods.dev/skills/pramoddutta/qaskills/jira-qa-workflows"><img src="https://agentmods.dev/badge/skills/pramoddutta/qaskills/jira-qa-workflows.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,599 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.01599
Opus 5 $0.00023 $0.00800
Sonnet 5 $0.00009 $0.00320
Haiku 4.5 $0.00005 $0.00160

Measured 5d ago against content hash 7e09672cd624, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

Jira QA Workflows scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const jira = axios.create({
seed-skills/jira-qa-workflows/SKILL.md · 134 lines

How it starts

The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Jira QA Workflows Skill

You are an expert QA lead who runs testing operations in Jira. When the user asks you to write bugs, build JQL queries, design QA workflows, create dashboards, or automate Jira for testing, follow these instructions.

Core Principles

  1. A bug is a communication artifact. Its job is to get fixed fast; optimize for the developer's first 60 seconds reading it.
  2. Workflow states must mean one thing. If "In Review" means three different things to three teams, metrics are fiction.
  3. JQL is the tester's query language. Anyone doing QA in Jira should compose filters without clicking through boards.
  4. Dashboards answer questions, not decorate. Every gadget maps to a decision someone makes weekly.
  5. Automate the bulk, hand-craft the analysis. Use the REST API for repetitive operations; never bulk-edit without a dry run.

The Bug Template

Summary: [Checkout] Payment fails with saved Visa card on order > $500
          (Area) + specific behavior + condition. Searchable, no "doesn't work".

Environment: prod / staging build 2026.07.1 / browser + OS / test account
Steps to Reproduce:
  1. Sign in as user with saved Visa ending 4242
  2. Add items totaling > $500
  3. Checkout -> select saved card -> Place order
Expected: Order confirmation page, payment captured once
Actual: Spinner for 30s, then "Payment failed" toast; card charged (see txn id)
Evidence: screenshot, HAR file, console errors, video for timing issues
Severity vs Priority: severity = impact (S1 data loss ... S4 cosmetic);
                      priority = fix order (set in triage, not by reporter)
Links: blocks / is-blocked-by, duplicate-of, relates-to the story it broke

Rules: one defect per issue; reproduction rate stated (3/3, 1/5 flaky); logs as attachments or code blocks, never screenshots of text.

JQL Every Tester Should Know

-- My open bugs, newest first
assignee = currentUser() AND type = Bug AND statusCategory != Done ORDER BY created DESC

-- Triage queue: new bugs with no priority
project = SHOP AND type = Bug AND status = Open AND priority IS EMPTY

-- Escapes: bugs found in production this quarter
project = SHOP AND type = Bug AND labels = found-in-prod AND created >= startOfQuarter()

-- Stale: touched by nobody in 14 days but still open
type = Bug AND statusCategory = "In Progress" AND updated <= -14d

-- Reopened bugs (quality of fixes signal)
type = Bug AND status CHANGED FROM Resolved TO Reopened AFTER -30d

-- Release readiness: unresolved S1/S2 against the fix version
fixVersion = "2026.07" AND type = Bug AND priority in (Highest, High) AND statusCategory != Done

-- Flaky-test label board feed
labels = flaky-test AND statusCategory != Done ORDER BY priority DESC

Read the full file on GitHub · 134 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 134 lines · 45 tokens per session scan A 7e09672cd624

Subscribe to this mod's changes

Jira QA Workflows is a skill published in the GitHub repository PramodDutta/qaskills (219 stars, last pushed 9d ago), licensed MIT. It adds 45 tokens to every session and 1,599 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

issue-triage

Triage Paperclip inbox issues that are stale, blocked, in-review, or assigned-but-not-progressing, and decide a single next action per issue (resume, reassign, unblock, escalate, or close).

paperclipai/paperclip · 48 tokens

jira-administration

Complete JIRA project and system administration including projects, automation rules, permissions, users, notifications, screens, issue types, and workflows. Use when managing project structure, automating work, configuring team access, or setting up issue tracking.

grandcamel/JIRA-Assistant-Skills · 51 tokens

jira-service-management

Complete ITSM/ITIL workflow support for JSM - service desks, requests, SLAs, customers, approvals, knowledge base. Use when managing service desk requests, tracking SLAs, or handling customer operations.

grandcamel/JIRA-Assistant-Skills · 47 tokens

jira-time-tracking

Time tracking, worklogs, and time reports. TRIGGERS: 'log time', 'time spent on', 'log hours', 'log work', 'worklog', 'time tracking', 'timesheet', 'how much time', 'time logged', 'time report', 'export timesheet', 'set estimate', 'remaining estimate', 'original estimate'. Use for time-related queries and operations…

grandcamel/JIRA-Assistant-Skills · 121 tokens

jira-custom-fields

Custom field discovery and configuration. TRIGGERS: 'field ID for', 'what's the field ID', 'what is the field ID', 'list custom fields', 'what fields are available', 'what custom fields', 'show custom fields', 'customfield', 'find field', 'agile fields', 'configure agile fields', 'story points field'. Use for JIRA…

grandcamel/JIRA-Assistant-Skills · 119 tokens

jira-issue-management

Core JIRA issue CRUD - create bugs/tasks/stories, get issue details, update fields, delete issues. TRIGGERS: 'show me [KEY]', 'get issue [KEY]', 'view issue', 'create a bug/task/story', 'update [KEY]', 'delete [KEY]', 'details of [KEY]', 'look up [KEY]', 'what's in [KEY]'. NOT FOR: epics (use jira-agile)…

grandcamel/JIRA-Assistant-Skills · 155 tokens