Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Qa Defect

ASecurity

[QA Method] Defect management lifecycle: JIRA Bug Workflow, triage, classification, report validation, verification protocol, defect metrics.

2 stars
0 votes
0 copies
0 views
Added 9/20/2026
testinggoapifrontendbackend

Works with

apimcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add VirtoCommerce/vc-mcp-testing-module --skill qa-defect --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Qa Defect?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Qa Defect
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/virtocommerce-qa-defect/badge)](https://www.skillsdirectory.com/skills/virtocommerce-qa-defect)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: qa-defect
description: "[QA Method] Defect management lifecycle: JIRA Bug Workflow, triage, classification, report validation, verification protocol, defect metrics."
argument-hint: "triage VCST-XXXX | verify VCST-XXXX | classify | workflow | metrics"

---

# /qa-defect — Defect Management Lifecycle

Manages the full defect lifecycle from detection through triage, classification, fix verification, and closure. Provides the JIRA Bug Workflow (16 statuses), triage routing, report validation, verification protocol, and defect process health metrics.

## Usage

```
/qa-defect                       # Full lifecycle overview + JIRA workflow map
/qa-defect triage VCST-1234      # Triage a bug: validate report, check duplicates, classify, assign
/qa-defect verify VCST-1234      # Verify a fix: re-run STR, check regression, transition JIRA
/qa-defect classify              # Show defect type taxonomy + root cause categories
/qa-defect workflow              # Show JIRA Bug Workflow (16 statuses, all transitions)
/qa-defect metrics               # Defect process health: aging, MTTR, reopen rate, escape rate
```

## Execution

1. Load `defect-lifecycle-workflow.md` from this skill folder.
2. Determine context from argument:
   - No argument → full lifecycle overview with JIRA workflow diagram
   - `triage VCST-XXXX` → triage workflow
   - `verify VCST-XXXX` → fix verification protocol
   - `classify` → defect type taxonomy + root cause categories
   - `workflow` → JIRA Bug Workflow diagram + transition table
   - `metrics` → defect process health indicators
3. **For triage:** Fetch ticket via Atlassian MCP → validate report completeness (12-item checklist) → check for duplicates (JQL: `summary ~ "keyword" AND status != Cancelled`) → classify defect type + root cause → assess severity + priority (reference `/qa-risk`) → route to owner via triage matrix → set JIRA fields + recommend transition.
4. **For verify:** Fetch ticket + linked PR via Atlassian MCP → confirm fix is deployed → execute original STR verbatim (must pass 3 consecutive times) → run 2-3 adjacent regression checks → check for side effects (console errors, network failures) → decision: all pass → transition to TESTED and **stop there** (a QA flow never sets `DONE` — `knowledge/execution/ticket-status-transitions.md` §9.5); any fail → transition TESTED → REOPEN with new evidence.
5. **For classify:** Show defect type taxonomy (8 types) and root cause categories (6 categories) from `defect-lifecycle-workflow.md` section 6. Suggest classification for the given bug based on symptoms.
6. **For workflow:** Show JIRA Bug Workflow ASCII diagram and full transition table from `defect-lifecycle-workflow.md` sections 1-3. Highlight QA-owned transitions.
7. **For metrics:** Compute defect process health indicators from JIRA data using JQL queries. Report aging, MTTR, reopen rate, escape rate, density, and verification pass rate against targets.
8. For bug report templates, load `defect-report-templates.md` from this skill folder (frontend + backend templates).

## Integration with Other Skills

| Direction | Skill | Relationship |
|-----------|-------|-------------|
| Upstream | `/qa-investigate` | Bug investigation produces the defect that enters this lifecycle |
| Upstream | `/qa-evidence` | Evidence capture standards used in report validation |
| Upstream | `/qa-risk` | Severity/Priority classification (independent dimensions) |
| Upstream | `/qa-bug` (command) | Bug filing creates the JIRA ticket this skill manages |
| Optional | `/qa-postman bug-evidence` | For an API/GraphQL defect whose finding is a **disagreement**, or needs ≥2 controls to be non-vacuous: a reproduction collection attached to the ticket, red while the defect is open and green on the fix — so `verify` re-runs it instead of re-deriving the repro. Skip it for every other defect class, which is most of them ([bug-evidence.md](../qa-postman/bug-evidence.md) §1) |
| Downstream | `/qa-metrics` | Defect counts, escape rates, reopen rates feed quality gates |

## Rules

- Never transition a JIRA bug without documenting the reason in a comment.
- Always validate report completeness before triaging — missing STR = send back to reporter.
- Verification must re-run original STR (3x) + check at least 1 adjacent flow for regression.
- Duplicate check is mandatory before filing any new bug.
- Severity and Priority are independent dimensions — always set both explicitly.
- Escalate P0 bugs not picked up within 2 hours, P1 bugs not assigned within 1 business day.

Attribution

VirtoCommerceVirtoCommerce
View sourceMore from VirtoCommerce →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Screen Reader Testing

Practical guide to testing web applications with screen readers for comprehensive accessibility validation.

393431 votes

Python Testing

使用pytest、TDD方法、夹具、模拟、参数化和覆盖率要求的Python测试策略。

2456590 votes

Tdd Workflow

在编写新功能、修复错误或重构代码时使用此技能。强制执行测试驱动开发,包含单元测试、集成测试和端到端测试,覆盖率超过80%。

2456590 votes

Springboot Tdd

使用JUnit 5、Mockito、MockMvc、Testcontainers和JaCoCo进行Spring Boot的测试驱动开发。适用于添加功能、修复错误或重构时。

2456590 votes

Eval Harness

克劳德代码会话的正式评估框架,实施评估驱动开发(EDD)原则

2456590 votes
View all in testing →