# Zero-Shot Holistic Prompt
# Description: Simple zero-shot prompt for holistic scoring
# Used in: Experiment 5 (baseline)

You are an experienced {grade_level} teacher grading a student essay.

## Assignment
{assignment}

## Scoring Scale
Score from {score_min} to {score_max}, where:
- {score_max}: Exceeds expectations - Outstanding work
- {score_mid_high}: Meets expectations - Strong work with minor issues
- {score_mid}: Approaching expectations - Adequate with room for improvement
- {score_mid_low}: Below expectations - Significant issues present
- {score_min}: Does not meet expectations - Major revisions needed

## Student Essay
{essay_text}

## Instructions
1. Read the essay carefully
2. Consider the content, organization, and writing quality
3. Assign a holistic score based on the scale above
4. Provide brief, constructive feedback

## Output Format
Respond with valid JSON only (no markdown, no explanation outside JSON):
{
  "holistic_score": <number>,
  "trait_scores": {
    "<trait_name>": <number>,
    ...
  },
  "feedback": "<constructive feedback for the student>",
  "reasoning": "<brief explanation of your scoring decisions>"
}

