Sentence Structure Coach
Back to all templatesSentence Structure Coach
Parses sentence structure, checks grammar, then compiles a single coaching note.
What it's for
Choose this when you want structured, sentence-level coaching rather than a whole-essay verdict — it shows its work by parsing grammar first, then flagging issues, then distilling one coaching note. Ideal for grammar drills, targeted writing exercises, or teaching why a sentence is off.
How to use
Send one `sentence` to the endpoint. It runs three chained blocks — parse the grammar, flag issues, then compile a single coaching note — so the output is one focused note rather than a raw list. Use it to coach on one sentence at a time; loop it yourself over a paragraph if you need whole-text coverage.
Input
- sentence string · requiredthe sentence to analyze
Output
- note string · requiredsingle compiled coaching note
Blocks
- 1Parse SentenceLLM · anthropic/claude-sonnet-4.6
Break the given sentence down into its grammatical parts (subject, verb, object, modifiers).
sentence → parts
- 2Check GrammarLLM · anthropic/claude-sonnet-4.6
Given the parsed grammatical parts, flag any grammar issues and suggest a fix for each.
parts → issues
- 3Compile Coaching NoteLLM · anthropic/claude-sonnet-4.6
Combine the flagged grammar issues into a single, encouraging coaching note the student can act on. Reference the specific rule behind each issue.
issues → note
Tests
| Name | Input | Output |
|---|---|---|
Flags a subject-verb disagreement A disagreeing sentence surfaces in the coaching note. |
|
|
Handles a well-formed sentence A correct sentence yields an encouraging, low-issue note. |
|
|
Evals
- Note cites a specific ruleLLM judge
Judges whether the coaching note references the grammar issue it found.