# Music Product Validation Prompt

Please validate this music product: sample_product.json.

## Instructions

- Only use the skills in this project for the validations
- Only run the validate-classical-metadata skill if the product genre is classical
- Read validation_result_schema.json to understand the required output structure
- Your final response MUST be valid JSON that conforms exactly to this schema
- Write the validation results to validation_results.json

## Validation Approach

1. Read and parse the product JSON file
2. Determine the genre (classical vs non-classical)
3. Run the appropriate validation skills:
   - validate-release-metadata (for all products)
   - validate-track-metadata (for all products)
   - validate-classical-metadata (only for classical genre)
4. Collect all validation results
5. Format the output according to validation_result_schema.json
6. Write the results to validation_results.json
