REQ-SELF-IO-002 inconclusive high since 0.3.1
Statement: Spec.from_file(path) shall auto-detect format by file extension and delegate to the appropriate from_yaml/from_json/from_toml method.
Rationale: A single entry point simplifies callers and prevents format-detection bugs.
Verification Method: test
Last Checked: Never
Acceptance Criteria
- Spec.from_file("x.yaml") delegates to from_yaml.
- Spec.from_file("x.json") delegates to from_json.
- Spec.from_file("x.toml") delegates to from_toml.
- Spec.from_file("x.txt") raises SpecError.
Evidence
No evidence collected for this requirement.