**Stage**: 5 - System Test
/plugin marketplace add foolishimp/ai_sdlc_method/plugin install aisdlc-methodology@aisdlcThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Stage: 5 - System Test Purpose: Generate TCS documents with full requirement traceability
<!-- Implements: REQ-NFR-TRACE-001 (Requirement Traceability) --> <!-- Implements: REQ-NFR-QUALITY-001 (Code Quality Standards) -->Use this skill when:
Test Case Specifications follow the same traceability pattern as ADRs:
Requirements (REQ-*)
↓
Design (ADRs)
↓
Implementation
↓
Test Cases (TCS-*) ← This skill creates these
↓
Test Implementation (pytest, etc.)
Create TCS documents at: docs/design/<solution>/tests/TCS-XXX-<slug>.md
# TCS-XXX: {Component/Feature Name}
**Status**: Specified | Implemented | Deprecated
**Date**: YYYY-MM-DD
**Requirements**: REQ-F-*, REQ-NFR-*
**ADR Reference**: ADR-XXX (if applicable)
**Implementation**: Path to implementation file
---
## Purpose
What this test case validates.
---
## Preconditions
Required state before test execution.
---
## Test Scenarios
| ID | Scenario | Input State | Expected Output | Priority |
|----|----------|-------------|-----------------|----------|
| XXX-001 | ... | ... | ... | High/Medium/Low |
| XXX-002 | ... | ... | ... | ... |
---
## Validation Criteria
- [ ] Criterion 1
- [ ] Criterion 2
- [ ] Criterion 3
---
## Test Implementation
**File**: `path/to/test_file.py`
**Class**: `TestClassName`
**Tests**: N
```python
class TestClassName:
def test_scenario_001(self):
"""XXX-001: Scenario description."""
...
| Requirement | How Validated |
|---|---|
| REQ-F-XXX-001 | Test scenario XXX-001 |
| REQ-NFR-XXX-001 | Test scenario XXX-002 |
Additional context or considerations.
---
## Step-by-Step Process
### 1. Identify Requirements to Test
```bash
# List requirements for the component
grep -r "REQ-" docs/requirements/ | grep "<component>"
# Determine next TCS number
ls docs/design/<solution>/tests/TCS-*.md | tail -1
# Create TCS file
TCS_NUM="010" # Next available
touch docs/design/<solution>/tests/TCS-${TCS_NUM}-<component>.md
For each requirement:
Add to docs/design/<solution>/tests/README.md:
| [TCS-XXX](TCS-XXX-<slug>.md) | Component Name | REQ-F-*, REQ-NFR-* | Status |
Create test file referencing TCS scenarios:
# Validates: TCS-XXX
class TestComponent:
def test_scenario_xxx_001(self):
"""XXX-001: <scenario description>"""
# Test implementation
| Pattern | Example | Use For |
|---|---|---|
| TCS-0XX-command-* | TCS-001-command-status | Slash commands |
| TCS-0XX-hook-* | TCS-008-hooks-lifecycle | Lifecycle hooks |
| TCS-0XX-installer-* | TCS-009-installer-setup | Installers |
| TCS-0XX-skill-* | TCS-010-skill-tcs | Skills |
| TCS-0XX-agent-* | TCS-011-agent-system-test | Agents |
After creating TCS, validate:
# Check all requirements have test coverage
grep -h "REQ-" docs/requirements/*.md | sort -u > /tmp/all_reqs.txt
grep -rh "REQ-" docs/design/*/tests/TCS-*.md | sort -u > /tmp/tested_reqs.txt
diff /tmp/all_reqs.txt /tmp/tested_reqs.txt
# TCS-001: /aisdlc-status Command
**Status**: ✅ Implemented
**Date**: 2025-11-27
**Requirements**: REQ-F-CMD-001, REQ-F-TODO-003
**ADR Reference**: ADR-002
**Implementation**: claude-code/plugins/aisdlc-methodology/commands/aisdlc-status.md
---
## Purpose
Validate that /aisdlc-status displays correct task queue status.
---
## Test Scenarios
| ID | Scenario | Input State | Expected Output | Priority |
|----|----------|-------------|-----------------|----------|
| ST-001 | Empty workspace | No tasks | "0 Active Tasks" | High |
| ST-002 | With tasks | 2 tasks | Lists both tasks | High |
---
## Validation Criteria
- [ ] Output contains "AI SDLC Task Status" header
- [ ] Active task count matches file
---
## Test Implementation
**File**: `claude-code/tests/commands/test_commands.py`
**Class**: `TestStatusCommand`
**Tests**: 4
---
## Requirement Traceability
| Requirement | How Validated |
|-------------|---------------|
| REQ-F-CMD-001 | Command executes |
| REQ-F-TODO-003 | TODO list displayed |
The System Test Agent should:
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.