Importance Scoring
Assess the academic and practical importance of a research gap, output a 1-5 score with rationale.
HARD-GATE
Pipeline
- Precondition check: verify input GapRecord completeness; confirm the domain field is valid
- Domain impact assessment: judge how much this gap affects the core problems of its field (1-5); reference: whether it blocks the field's progress, whether it is repeatedly mentioned across multiple papers
- Theoretical contribution assessment: judge the contribution that filling this gap makes to the theoretical system (1-5); reference: whether it challenges the existing paradigm, whether it can unify fragmented theories
- Practical value assessment: judge the real-world application value of filling this gap (1-5); reference: size of the benefiting population, implementability, industry/policy impact
- Composite score: weighted average of the three dimensions (domain impact 40%, theoretical contribution 30%, practical value 30%), to one decimal place
- Output: return the ImportanceScore object
Output Format
{
"gap_id": "gap_001",
"dimension_scores": {
"domain_impact": { "score": 4, "rationale": "..." },
"theoretical_contribution": { "score": 3, "rationale": "..." },
"practical_value": { "score": 4, "rationale": "..." }
},
"composite_score": 3.7,
"overall_rationale": "Overall rationale (2-4 sentences)"
}
1---2name: importance-scoring3description: SOP: assess the academic and practical importance of a research gap, output a 1-5 score with rationale4---56# Importance Scoring78Assess the academic and practical importance of a research gap, output a 1-5 score with rationale.910## HARD-GATE1112<HARD-GATE>13- Input must be a GapRecord with status: "complete" (id, title, description, domain all non-empty)14- The output composite score must lie in the [1, 5] range (may be a decimal, one decimal place)15- Each sub-dimension must carry at least 1 sentence of textual rationale16</HARD-GATE>1718## Pipeline19201. **Precondition check**: verify input GapRecord completeness; confirm the domain field is valid212. **Domain impact assessment**: judge how much this gap affects the core problems of its field (1-5); reference: whether it blocks the field's progress, whether it is repeatedly mentioned across multiple papers223. **Theoretical contribution assessment**: judge the contribution that filling this gap makes to the theoretical system (1-5); reference: whether it challenges the existing paradigm, whether it can unify fragmented theories234. **Practical value assessment**: judge the real-world application value of filling this gap (1-5); reference: size of the benefiting population, implementability, industry/policy impact245. **Composite score**: weighted average of the three dimensions (domain impact 40%, theoretical contribution 30%, practical value 30%), to one decimal place256. **Output**: return the ImportanceScore object2627## Output Format2829```json30{31 "gap_id": "gap_001",32 "dimension_scores": {33 "domain_impact": { "score": 4, "rationale": "..." },34 "theoretical_contribution": { "score": 3, "rationale": "..." },35 "practical_value": { "score": 4, "rationale": "..." }36 },37 "composite_score": 3.7,38 "overall_rationale": "Overall rationale (2-4 sentences)"39}40```