{"record":{"id":"83d9a70f0b751c11","repo":"Fission-AI/OpenSpec","slug":"spec-must-have-a-requirements-section","errorCode":null,"errorMessage":"Spec must have a Requirements section","messagePattern":"Spec must have a Requirements section","errorType":"validation","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"src/core/parsers/markdown-parser.ts","lineNumber":39,"sourceCode":"  }\n\n  protected static normalizeContent(content: string): string {\n    // Strip a UTF-8 BOM so a header on the first line still matches.\n    return content.replace(/^﻿/, '').replace(/\\r\\n?/g, '\\n');\n  }\n\n  parseSpec(name: string): Spec {\n    const sections = this.parseSections();\n    const purpose = this.findSection(sections, 'Purpose')?.content || '';\n    \n    const requirementsSection = this.findSection(sections, 'Requirements');\n    \n    if (!purpose) {\n      throw new Error('Spec must have a Purpose section');\n    }\n    \n    if (!requirementsSection) {\n      throw new Error('Spec must have a Requirements section');\n    }\n\n    const requirements = this.parseRequirements(requirementsSection);\n\n    return {\n      name,\n      overview: purpose.trim(),\n      requirements,\n      metadata: {\n        version: '1.0.0',\n        format: 'openspec',\n      },\n    };\n  }\n\n  parseChange(name: string): Change {\n    const sections = this.parseSections();\n    const why = this.findSection(sections, 'Why')?.content || '';","sourceCodeStart":21,"sourceCodeEnd":57,"githubUrl":"https://github.com/Fission-AI/OpenSpec/blob/6926ccb18afa4ff621112813e9968334576ee11a/src/core/parsers/markdown-parser.ts#L21-L57","documentation":"Error \"Spec must have a Requirements section\" thrown in Fission-AI/OpenSpec.","triggerScenarios":"Thrown at src/core/parsers/markdown-parser.ts:39 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"6926ccb18afa4ff621112813e9968334576ee11a","analyzedAt":"2026-08-25T12:29:45.729Z","schemaVersion":2},"datasetVersion":"2026-08-25T16:17:27.014Z"}