Automatic QA test lifecycle management, naming conventions, and directory structure. Use when creating, organizing, or tracking QA tests to ensure proper naming, directory structure, and status transitions.
Automates QA test file creation with standardized naming, directory structure, and required metadata. Triggers when you create or organize test files, enforcing the DRAFT→ACTIVE→EXECUTED→ARCHIVED lifecycle and linking tests to PRD requirements for traceability.
/plugin marketplace add jpoutrin/product-forge/plugin install product-design@product-forge-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Ensure consistent QA test organization, lifecycle management, and traceability.
When working with QA tests, automatically:
qa-tests/
├── draft/ # Tests being written
│ └── QA-20250105-001-login.md
├── active/ # Tests ready for execution
│ └── QA-20250104-002-checkout.md
├── executed/ # Recently executed tests
│ └── QA-20250103-001-search.md
├── archived/ # Historical tests
│ └── 2024/
│ └── QA-20241215-001-old-feature.md
└── screenshots/ # Test evidence
├── login-page.png
└── checkout-success.png
QA-YYYYMMDD-###-feature-name.md
QA - Prefix for all QA test filesYYYYMMDD - Creation date### - Sequential number for that day (001, 002, etc.)feature-name - Kebab-case feature descriptionExamples:
QA-20250105-001-user-login.mdQA-20250105-002-password-reset.mdQA-20250106-001-checkout-flow.mdDRAFT → ACTIVE → EXECUTED → ARCHIVED
| Status | Description | Location |
|---|---|---|
DRAFT | Being written, not ready for execution | qa-tests/draft/ |
ACTIVE | Ready to be executed by testers | qa-tests/active/ |
EXECUTED | Has been run, awaiting review/archival | qa-tests/executed/ |
ARCHIVED | Historical reference, no longer active | qa-tests/archived/YYYY/ |
Every QA test file MUST include:
## Metadata
- **Test ID**: QA-YYYYMMDD-###
- **Feature**: [Feature name]
- **Application**: [App name]
- **URL**: [Test environment URL]
- **Created**: [YYYY-MM-DD]
- **Author**: [Name]
- **Status**: [DRAFT|ACTIVE|EXECUTED|ARCHIVED]
- **Priority**: [Critical|High|Medium|Low]
- **Estimated Time**: [X minutes]
- **PRD Reference**: [Link to PRD section if applicable]
| Priority | Description | Execution Frequency |
|---|---|---|
| Critical | Core functionality, blocking issues | Every release |
| High | Important features, user-facing | Every sprint |
| Medium | Secondary features, edge cases | Monthly |
| Low | Nice-to-have, rare scenarios | Quarterly |
Link QA tests to PRD requirements:
## Requirement Traceability
| Requirement | PRD Section | Test Cases |
|-------------|-------------|------------|
| User can login with email/password | PRD 3.1.1 | TC-001, TC-002 |
| Password must be 8+ characters | PRD 3.1.2 | TC-003 |
| Failed login shows error message | PRD 3.1.3 | EC-001, EC-002 |
Track test runs in each test file:
## Test Execution Log
| Date | Tester | Environment | Build | Result | Issues |
|------|--------|-------------|-------|--------|--------|
| 2025-01-05 | Jane | staging | v1.2.3 | PASS | None |
| 2025-01-04 | John | staging | v1.2.2 | FAIL | #123 |
Before moving a test from DRAFT to ACTIVE:
Archive a test when:
Archival metadata to add:
## Archive Information
- **Archived Date**: [YYYY-MM-DD]
- **Archived By**: [Name]
- **Archive Reason**: [Deprecated|Superseded|Stale|Requirements Changed]
- **Superseded By**: [New test ID, if applicable]
When listing or reporting on QA tests:
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.