Skill: NeqSim Standard Requirement Extraction
Purpose
Extract and map engineering requirements from standards or approved standards
excerpts into a structured format that can support NeqSim book chapters,
engineering reports, and design checks. Use this for NORSOK, DNV, API, ISO,
IEC, ASME, and similar standards when clause-level traceability is needed.
Inputs
- A standards PDF or approved excerpt, when extraction is legally permitted.
- Existing chapter text or
standards_map.json to identify the target chapter
and equipment context.
- Optional OCR text for scanned standards.
Workflow
- Identify the standard code, revision, publisher, and license constraints.
- Extract only requirement-level statements using keywords such as
shall,
should, may, required, and standard-specific forms.
- Preserve section, clause, page, context-before, and context-after metadata.
- Classify each item as mandatory, recommendation, permission, information, or
ambiguous.
- Link each item to chapters, equipment, or skills without copying large
licensed text into public outputs.
- Use
book-standards-map to summarize the chapter-level standard relevance.
Output Schema
{
"standard": "NORSOK D-010",
"revision": "latest-confirmed",
"source": "approved local excerpt",
"requirements": [
{
"id": "REQ-001",
"level": "mandatory",
"clause": "5.2",
"topic": "well barriers",
"text_excerpt": "short allowed excerpt or paraphrase",
"context": "why it matters for the chapter",
"mapped_chapters": ["ch14_drilling_and_wells"],
"status": "candidate"
}
]
}
Safety Rules
- Respect standards copyright and license restrictions.
- Prefer clause references and paraphrased summaries for public artifacts.
- Do not claim compliance from keyword extraction alone; human review is needed.
- Mark OCR-derived requirements as
needs-human-check until reviewed.
Book Uses
- Chapter 7: separator and vessel design.
- Chapter 11: facility architecture, power systems, and design basis.
- Chapter 13: subsea and SURF systems.
- Chapter 14: wells and barriers.
- Chapter 21: NCS regulation and standards governance.
- Chapter 23: CO2 transport and injection integrity.
1---2name: neqsim-standard-requirement-extraction3description: Extract and map engineering requirements from standards or approved standards4---56# Skill: NeqSim Standard Requirement Extraction78## Purpose910Extract and map engineering requirements from standards or approved standards11excerpts into a structured format that can support NeqSim book chapters,12engineering reports, and design checks. Use this for NORSOK, DNV, API, ISO,13IEC, ASME, and similar standards when clause-level traceability is needed.1415## Inputs1617- A standards PDF or approved excerpt, when extraction is legally permitted.18- Existing chapter text or `standards_map.json` to identify the target chapter19 and equipment context.20- Optional OCR text for scanned standards.2122## Workflow23241. Identify the standard code, revision, publisher, and license constraints.252. Extract only requirement-level statements using keywords such as `shall`,26 `should`, `may`, `required`, and standard-specific forms.273. Preserve section, clause, page, context-before, and context-after metadata.284. Classify each item as mandatory, recommendation, permission, information, or29 ambiguous.305. Link each item to chapters, equipment, or skills without copying large31 licensed text into public outputs.326. Use `book-standards-map` to summarize the chapter-level standard relevance.3334## Output Schema3536```json37{38 "standard": "NORSOK D-010",39 "revision": "latest-confirmed",40 "source": "approved local excerpt",41 "requirements": [42 {43 "id": "REQ-001",44 "level": "mandatory",45 "clause": "5.2",46 "topic": "well barriers",47 "text_excerpt": "short allowed excerpt or paraphrase",48 "context": "why it matters for the chapter",49 "mapped_chapters": ["ch14_drilling_and_wells"],50 "status": "candidate"51 }52 ]53}54```5556## Safety Rules5758- Respect standards copyright and license restrictions.59- Prefer clause references and paraphrased summaries for public artifacts.60- Do not claim compliance from keyword extraction alone; human review is needed.61- Mark OCR-derived requirements as `needs-human-check` until reviewed.6263## Book Uses6465- Chapter 7: separator and vessel design.66- Chapter 11: facility architecture, power systems, and design basis.67- Chapter 13: subsea and SURF systems.68- Chapter 14: wells and barriers.69- Chapter 21: NCS regulation and standards governance.70- Chapter 23: CO2 transport and injection integrity.