Purpose
Produce a model-neutral problem contract. Do not start from favorite algorithms or infer missing attachments.
Inputs
- complete problem statement and attachments list;
- contest rules and required deliverables;
- user clarifications;
- existing parse when revising.
Workflow
- Record source files and missing referenced material.
- Extract the global objective and each Qx verbatim enough to preserve intent.
- For each Qx identify:
- goal;
- objects/entities;
- inputs and data;
- decisions or unknowns;
- hard and soft constraints;
- required output and format;
- evaluation/success criteria;
- dependencies on other Qx;
- uncertainty and ambiguity.
- Separate:
- statement facts;
- observations from supplied data;
- proposed relationships;
- assumptions requiring human judgment.
- If output form or success criteria are materially ambiguous, invoke one choice card. Do not choose the framing silently.
- Save:
planning/parse/problem_parse.json
- an optional concise
planning/parse/problem_parse.md only when a human-readable view is useful.
- Update the manifest status when present.
JSON Contract
{
"schema_version": 1,
"problem_source": [],
"global_goal": "",
"objects": [],
"data_inventory": [],
"global_constraints": [],
"subquestions": [
{
"id": "Q1",
"statement": "",
"goal": "",
"inputs": [],
"unknowns_or_decisions": [],
"constraints": [],
"required_outputs": [],
"success_criteria": [],
"dependencies": [],
"proposed_relationships": [],
"ambiguities": []
}
],
"missing_material": [],
"human_decisions_needed": []
}
Rules
- Parse before classifying.
- Do not name or recommend methods.
- Do not fabricate data, fields, equations, causal relationships, or evaluation criteria.
- Preserve units, time ranges, populations, and output formats.
- A proposed relationship must be labeled as proposed until human-confirmed or evidence-supported.
- Ask only about ambiguities that change the downstream problem.
Verification
- Every subquestion maps to a required output.
- Constraints and dependencies are explicit.
- Missing attachments and ambiguities are visible.
- Facts, proposals, assumptions, and decisions are separated.
- Human-owned success criteria are confirmed or remain a blocker.
1---2name: problem-parser3description: Parse a mathematical-modeling problem into goals, objects, data, constraints, outputs, subquestions, dependencies, variables, relationships, and human-confirmed success criteria before any method selection.4---56# Purpose78Produce a model-neutral problem contract. Do not start from favorite algorithms or infer missing attachments.910# Inputs1112- complete problem statement and attachments list;13- contest rules and required deliverables;14- user clarifications;15- existing parse when revising.1617# Workflow18191. Record source files and missing referenced material.202. Extract the global objective and each Qx verbatim enough to preserve intent.213. For each Qx identify:22 - goal;23 - objects/entities;24 - inputs and data;25 - decisions or unknowns;26 - hard and soft constraints;27 - required output and format;28 - evaluation/success criteria;29 - dependencies on other Qx;30 - uncertainty and ambiguity.314. Separate:32 - statement facts;33 - observations from supplied data;34 - proposed relationships;35 - assumptions requiring human judgment.365. If output form or success criteria are materially ambiguous, invoke one choice card. Do not choose the framing silently.376. Save:38 - `planning/parse/problem_parse.json`39 - an optional concise `planning/parse/problem_parse.md` only when a human-readable view is useful.407. Update the manifest status when present.4142# JSON Contract4344```json45{46 "schema_version": 1,47 "problem_source": [],48 "global_goal": "",49 "objects": [],50 "data_inventory": [],51 "global_constraints": [],52 "subquestions": [53 {54 "id": "Q1",55 "statement": "",56 "goal": "",57 "inputs": [],58 "unknowns_or_decisions": [],59 "constraints": [],60 "required_outputs": [],61 "success_criteria": [],62 "dependencies": [],63 "proposed_relationships": [],64 "ambiguities": []65 }66 ],67 "missing_material": [],68 "human_decisions_needed": []69}70```7172# Rules7374- Parse before classifying.75- Do not name or recommend methods.76- Do not fabricate data, fields, equations, causal relationships, or evaluation criteria.77- Preserve units, time ranges, populations, and output formats.78- A proposed relationship must be labeled as proposed until human-confirmed or evidence-supported.79- Ask only about ambiguities that change the downstream problem.8081# Verification8283- Every subquestion maps to a required output.84- Constraints and dependencies are explicit.85- Missing attachments and ambiguities are visible.86- Facts, proposals, assumptions, and decisions are separated.87- Human-owned success criteria are confirmed or remain a blocker.