Test a story or feature to verify the implementation works correctly
/plugin marketplace add elafo/hefesto/plugin install hefesto@hermes<path> | story <path> | feature <id>dev/# Developer: Testing Router command that verifies implementations work correctly. **Key distinction**: Testing verifies the software **works correctly** (Dev concern). Validation verifies it **meets requirements** (PO concern). ## Routing | Input | Strategy | |-------|----------| | `story <path>` | Story Testing (unit/component) | | `feature <id>` | Feature Testing (integration) | | `<path>` (auto-detect) | Detect from path pattern | --- ## Strategy: Story Testing **Trigger**: `dev:test story <path>` or auto-detected story path ### Prerequisites - Story status must be `coded` - Imp...