> ## 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.

# Use cases

> Common Knowledge Graph use cases: align content to standards and curriculum, plan instructional content, compare standards across states, and deliver personalized assessments.

export const GatedBadge = ({size = "md", children}) => {
  return <Badge color="orange" size={size} icon="lock">
      {children == null || children === "" ? "Gated" : typeof children === "string" ? children.trim() : children}
    </Badge>;
};

These are several common ways that edtech teams use Knowledge Graph data in product development and instructional workflows.

| Use case                                       | Description                                                                                                                                                                                                                                     | Examples                                                                                                                                                                                                                                                                                                                                                                                     |
| :--------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Align content to standards**                 | Create content rooted in [Academic Standards](/knowledge-graph/graph-reference/academic-standards) and learner competencies across subjects.                                                                                                    | Replace fragmented infrastructure with a single, trusted source of standards data: <ul><li>Populate a standards menu (i.e., 50 states across subjects)</li><li>Use standards as context when generating AI outputs</li><li>Integrate standards data with your CMS</li></ul>                                                                                                                  |
| **Plan instructional content**                 | Use dependencies ([Learning Progressions](/knowledge-graph/graph-reference/learning-progressions)) and granular skills ([Learning Components](/knowledge-graph/graph-reference/learning-components)) to inform instructional content and plans. | <ul><li>Group students more effectively by looking at the skills they've mastered</li><li>Give each student their own instance of a knowledge model graph, with a score for each node (Learning Component)</li><li>Build a teachers dashboard that gives grounded AI recommendations on lesson plans and identifies gaps in prerequisite skills</li><li>Give more precise feedback</li></ul> |
| **Compare standards across states**            | Use [Standards Crosswalks](/knowledge-graph/graph-reference/standards-crosswalks) to adapt content aligned to one state standard to other states'.                                                                                              | Outsource the burden of managing standards across states: <ul><li>Align content across all states you serve</li><li>Reduce maintenance burden on internal systems</li><li>Share content across state lines with automatic remapping to local standards</li></ul>                                                                                                                             |
| **Align content to curriculum** <GatedBadge /> | Create or use educational materials that are aligned to official curricula<br /><br />[Contact us](mailto:support@learningcommons.org) ↗ to get access to this gated functionality.                                                             | <ul><li>Feed lesson narratives, instructional routines, and Learning Components into LLM prompts to generate parent-facing activities</li><li>Map student performance data to standards</li><li>Use IM misconceptions to generate differentiated lesson plans and support RTI workflows</li></ul>                                                                                            |
| **Deliver personalized assessments**           | Build adaptive experiences that go beyond content delivery into diagnostic assessment.                                                                                                                                                          | <ul><li>Combine curricular data with student data to help teachers plan targeted weekly interventions</li><li>Combine Academic Standards and Learning Components with student data to prepare teachers for observation and coaching</li></ul>                                                                                                                                                |
