> ## Documentation Index
> Fetch the complete documentation index at: https://docs.learningcommons.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Overview of feedback evaluators that measure the quality of teacher and AI-generated coaching feedback on student writing.

export const EarlyAccessBadge = ({size = "md", children}) => {
  return <Badge color="green" size={size} icon="flask">
      {children == null || children === "" ? "Early access" : children}
    </Badge>;
};

export const EarlyAccessCallout = ({children}) => <div className="eyebrow-callout not-prose rounded-xl border border-gray-200/80 p-5 dark:border-white/10" style={{
  marginBottom: "1rem",
  borderRadius: "4px"
}}>
    <div className="mb-3">
      <Badge color="green" size="md" icon="flask">
        Early access
      </Badge>
    </div>
    <div className="callout-body text-[15px] leading-relaxed text-gray-700 dark:text-gray-300">{children}</div>
    <style>{`.callout-body a { text-decoration: underline; text-decoration-color: #178251; }`}</style>
  </div>;

<EarlyAccessCallout>
  This functionality is actively evolving. Changes may occur as we expand
  capabilities and improve accuracy and reliability. Email
  [support@learningcommons.org](mailto:support@learningcommons.org) ↗ with your
  feedback or issues.
</EarlyAccessCallout>

## The problem

Edtech developers often wonder if the AI-generated feedback they're delivering to students is actually good coaching. Feedback can be warm but generic, accurate but overwhelming, clear but off-task.

Feedback quality encompasses multiple dimensions, making a single quality score for a piece of feedback misleading. As AI-generated feedback enters classrooms at scale, these dimensions can fail independently and quietly.

## What we're building

Our feedback evaluators surface feedback quality as a multidimensional profile, rather than a verdict. Edtech developers can see the qualities that a piece of AI-generated feedback exhibits, which it's missing, and what to adjust. This helps them measure, monitor, and improve the quality of educators' feedback to students at scale.

Our feedback evaluators are anchored in the Productive Coaching rubric developed by [Quill.org](https://www.quill.org/) ↗ and [Leanlab Education](https://www.leanlabeducation.org/) ↗, in partnership with [Anastasiya A. Lipnevich](https://www.anastasiyalipnevich.com/) ↗.

| Evaluator                                                                                                           | Description                                                                                                                         |
| :------------------------------------------------------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------------------------- |
| [Strength Acknowledgement](/evaluators/feedback-evaluators/strength-acknowledgement) <EarlyAccessBadge size="xs" /> | Determines whether feedback names something specific and authentic the student did well, distinct from generic or unanchored praise |
| [Actionability](/evaluators/feedback-evaluators/actionability) <EarlyAccessBadge size="xs" />                       | Determines whether feedback gives a clear, usable next step the student can act on without additional clarification                 |
| [Student Response Anchor](/evaluators/feedback-evaluators/student-response-anchor) <EarlyAccessBadge size="xs" />   | Determines whether feedback is clearly based on the student's specific response                                                     |
| [Appropriateness](/evaluators/feedback-evaluators/appropriateness) <EarlyAccessBadge size="xs" />                   | Determines whether feedback correctly identifies whether the student needed to revise                                               |
| [Manageability](/evaluators/feedback-evaluators/manageability) <EarlyAccessBadge size="xs" />                       | Determines whether the amount of feedback is manageable for the student                                                             |

## Scope and limitations

<Note>
  Remember that LLM scores can vary across runs, especially on borderline cases.
  We recommend keeping a human in the loop and treating outputs as directional
  signals vs. definitive judgments.
</Note>

| Limitation               | Details                                                                                                                                                                                                                                                        |
| :----------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Validated grade band** | Evaluator validated for grades 8-9 only                                                                                                                                                                                                                        |
| **Validated task type**  | Limited to short claim-with-evidence "because" completions from Quill.org – generalization to other prompts, genres, or subject areas is unverified                                                                                                            |
| **Binary output**        | Some feedback evaluators (like [Actionability](/evaluators/feedback-evaluators/actionability), [Student Response Anchor](/evaluators/feedback-evaluators/student-response-anchor), etc.) reduces a nuanced judgment to a binary 0 or 1 output, plus rationale. |

<Warning>
  Feedback evaluator outputs should not be used for high-stakes applications
  like grading, assessment, or placement decisions.
</Warning>
