@graffiticode/l0175 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compiler.d.ts +12 -0
- package/dist/compiler.d.ts.map +1 -0
- package/dist/compiler.js +1285 -0
- package/dist/compiler.js.map +1 -0
- package/dist/embedding.d.ts +64 -0
- package/dist/embedding.d.ts.map +1 -0
- package/dist/embedding.js +294 -0
- package/dist/embedding.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/lexicon.d.ts +644 -0
- package/dist/lexicon.d.ts.map +1 -0
- package/dist/lexicon.js +101 -0
- package/dist/lexicon.js.map +1 -0
- package/dist/static/instructions.md +527 -0
- package/dist/static/language-info.json +85 -0
- package/dist/static/lexicon.json +1112 -0
- package/dist/static/schema.json +162 -0
- package/dist/static/scope.json +28 -0
- package/dist/static/spec.html +572 -0
- package/dist/static/stems.md +374 -0
- package/dist/static/template.gc +67 -0
- package/dist/static/usage-guide.md +111 -0
- package/package.json +33 -0
- package/spec/README.md +18 -0
- package/spec/data/examples.gc +84 -0
- package/spec/data/examples_with_explanations.md +124 -0
- package/spec/data/training_examples.json +122 -0
- package/spec/docs.md +102 -0
- package/spec/examples.md +91 -0
- package/spec/instructions.md +337 -0
- package/spec/language-info.json +78 -0
- package/spec/schema.json +162 -0
- package/spec/scope.json +28 -0
- package/spec/spec.md +277 -0
- package/spec/stems.md +374 -0
- package/spec/template.gc +67 -0
- package/spec/unparse-hints.json +3 -0
- package/spec/usage-guide.md +111 -0
package/spec/spec.md
ADDED
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
|
2
|
+
# L0175 Vocabulary
|
|
3
|
+
|
|
4
|
+
_Revised: 2026-06-19_
|
|
5
|
+
|
|
6
|
+
**L0175** is a Graffiticode dialect for composing 5th-grade English Language Arts assessment
|
|
7
|
+
items (Smarter Balanced · Grade 5 · Claim 1). One language serves **multiple learning targets**,
|
|
8
|
+
selected by a required top-level `target`: `c1-t4` (Reasoning & Evidence, literary, RL standards),
|
|
9
|
+
`c1-t11` (Reasoning & Evidence, informational, RI standards), `c1-t9` (Central Ideas,
|
|
10
|
+
informational, RI-1/RI-2), `c1-t8` (Key Details, informational, RI-1/RI-7 — the inference is
|
|
11
|
+
given and the student selects supporting evidence), or `c1-t10` (Word Meanings, informational,
|
|
12
|
+
RI-4/L-4 — the meaning of a targeted word, options authored as `word`/`meaning`) — different
|
|
13
|
+
reading skills, each with its own dimensions, distractor taxonomy, DOK, item types, and stem
|
|
14
|
+
catalog. It is **item-first**: a
|
|
15
|
+
program declares its `target`, then authors the `outcome`s (questions) first — each with a unique
|
|
16
|
+
`id`, a `focus` naming its correct claim, and an explicit `stem` from that target's guideline
|
|
17
|
+
catalog — then the supported and distractor `claim`s (each distractor `targets` the question(s)
|
|
18
|
+
it foils) and the evidence `source`s for one passage. The compiler **composes** each outcome by
|
|
19
|
+
taking its `focus` claim, drawing that question's foils from the distractors that `targets` it,
|
|
20
|
+
and assembling a finished item (`ebsr`, `hot-text`, or `short-text`). It selects and validates
|
|
21
|
+
authored content against the target profile; it does not generate content or stems.
|
|
22
|
+
|
|
23
|
+
The core language specification (syntax, semantics, base library) is here:
|
|
24
|
+
[Graffiticode Language Specification](./graffiticode-language-spec.html)
|
|
25
|
+
|
|
26
|
+
## Authoring shape
|
|
27
|
+
|
|
28
|
+
A program is **one flat builder chain** ending in a single `{}..`:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
target c1-t4
|
|
32
|
+
title "Optional assessment title"
|
|
33
|
+
passage "Heading"
|
|
34
|
+
type literary
|
|
35
|
+
lines [ "First paragraph…" "Second paragraph…" ] /* one entry per paragraph */
|
|
36
|
+
claims [ claim ... {} claim ... {} ]
|
|
37
|
+
evidence [ source ... {} source ... {} ]
|
|
38
|
+
outcomes [ outcome ... {} outcome ... {} ]
|
|
39
|
+
{}..
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Three function roles make up the idiom:
|
|
43
|
+
|
|
44
|
+
- **Attribute functions** are arity-2 `(value, continuation)` and merge one key into the
|
|
45
|
+
record: `text "…" cont` → `{ ...cont, text: "…" }`. They are generic — the same `id`,
|
|
46
|
+
`status`, `text`, `type` appear on several forms — and the element wrapper validates them in
|
|
47
|
+
context.
|
|
48
|
+
- **Collection builders** (`claims`, `evidence`, `outcomes`, `rubric`) and the passage forms
|
|
49
|
+
(`passage`, `type`, `lines`, `title`) are arity-2 and thread **one shared continuation**, so
|
|
50
|
+
the whole top level is a single chain closed by **one** trailing `{}`.
|
|
51
|
+
- **Element wrappers** (`claim`, `source`, `outcome`, `band`) are arity-1; each element's own
|
|
52
|
+
attribute chain is terminated by its **own** `{}` inside the list.
|
|
53
|
+
|
|
54
|
+
Free text (`text`, `rationale`, `subject`, `stem`, the passage heading) and id labels
|
|
55
|
+
(`id`, `focus`, `cites`, `supports`, `targets`) are **quoted strings**; closed-enum values
|
|
56
|
+
(`ebsr`, `character`, `misreads-detail`, `rl-1`, …) are **bare kebab-case identifiers**;
|
|
57
|
+
`line`, `score`, `plausibility`, and `grade` are **numbers**.
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
# Function reference
|
|
62
|
+
|
|
63
|
+
## Structural forms
|
|
64
|
+
|
|
65
|
+
| Form | Arity | Takes | Description |
|
|
66
|
+
| :--- | :---: | :--- | :--- |
|
|
67
|
+
| `target` | 2 | tag | Top level: the learning target — `c1-t4` (R&E literary, RL), `c1-t11` (R&E informational, RI), `c1-t9` (Central Ideas informational, RI-1/RI-2), `c1-t8` (Key Details informational, RI-1/RI-7), or `c1-t10` (Word Meanings informational, RI-4/L-4). Selects the valid dimensions/standards, distractor taxonomy, DOK, item types, and stem catalog. Always author one; defaults to `c1-t4` if omitted. |
|
|
68
|
+
| `title` | 2 | string | Optional assessment title; echoed on the composed output. |
|
|
69
|
+
| `grade` | 2 | number | Optional top-level reading-level target (e.g. `grade 5`). Defaults to the target/guideline's grade (5 for `c1-t4`/`c1-t11`); echoed on the output. The compiler estimates the passage's reading level and warns when it reads above this grade. |
|
|
70
|
+
| `passage` | 2 | string | Opens the stimulus; the value is the passage **heading**. Chains with `type` and `lines`. |
|
|
71
|
+
| `type` | 2 | tag | On the passage: `literary` \| `informational`. On an `outcome`: the item type `ebsr` \| `hot-text` \| `short-text` \| `multiple-choice` \| `multi-select`. |
|
|
72
|
+
| `lines` | 2 | string list | The passage **paragraphs** (one entry per paragraph by default), **auto-numbered from 1** (the numbers `source.line` refers to). Use finer units (sentences) only when a task needs them, e.g. click-the-sentence Hot Text. |
|
|
73
|
+
| `claims` | 2 | list | The collection of candidate `claim`s (the inference graph's nodes). |
|
|
74
|
+
| `claim` | 1 | chain | One candidate inference/conclusion statement — either the correct answer or a foil. |
|
|
75
|
+
| `evidence` | 2 | list | The collection of evidence `source`s. |
|
|
76
|
+
| `source` | 1 | chain | One passage line tagged by its support role. |
|
|
77
|
+
| `outcomes` | 2 | list | The collection of intended items. |
|
|
78
|
+
| `outcome` | 1 | chain | One item to compose; varying it projects the same pool into a different item. |
|
|
79
|
+
| `rubric` | 2 | band list | On a `short-text` outcome: the scoring `band`s (defaults to 0/1/2 if omitted). |
|
|
80
|
+
| `band` | 1 | chain | One rubric row (a `score` + a `descriptor`). |
|
|
81
|
+
|
|
82
|
+
## Identity & references
|
|
83
|
+
|
|
84
|
+
| Attribute | On | Value | Description |
|
|
85
|
+
| :--- | :--- | :--- | :--- |
|
|
86
|
+
| `id` | claim, source, outcome | string | Stable identifier. Claim/source ids are referenced by `cites` / `supports` / `focus`; an outcome's id is referenced by a distractor's `targets`. **Must be unique** within claims, within sources, and within outcomes (duplicates are a hard error). |
|
|
87
|
+
| `cites` | claim | id list | The evidence `source` ids this claim draws on. For the correct claim, the `directly-supports` members become Part B's correct option(s). |
|
|
88
|
+
| `supports` | source | id list | The claim ids this evidence backs — *truly* for the correct claim, or *temptingly* for a distractor claim. A source tied to both the correct claim and a foil is what makes a Part B option plausibly support more than one Part A option (the no-giveaway rule). |
|
|
89
|
+
| `focus` | outcome | id | **Required** — the supported claim that is this question's correct answer. |
|
|
90
|
+
| `targets` | distractor | id list | **Required on distractors** — the outcome id(s) of the question(s) this foil is authored against. Composition draws an item's foils only from the distractors that target it. |
|
|
91
|
+
|
|
92
|
+
`cites` / `supports` references that don't resolve produce a **warning** (the item still
|
|
93
|
+
composes). A `focus` that isn't a supported claim, or a `targets` to a missing outcome, is a
|
|
94
|
+
**hard error** — the binding is the contract.
|
|
95
|
+
|
|
96
|
+
## Claim content
|
|
97
|
+
|
|
98
|
+
| Attribute | Value | Req. | Description |
|
|
99
|
+
| :--- | :--- | :---: | :--- |
|
|
100
|
+
| `status` | tag | ✓ | `supported` (a valid inference — a candidate correct answer) or `distractor` (a foil). |
|
|
101
|
+
| `dimension` | tag | ✓ on supported | The inference target (`character`, `theme`, `point-of-view`, …). Required on supported claims (it must match the outcome); on distractors the binding is by `targets`, so it is not needed. |
|
|
102
|
+
| `text` | string | ✓ | The statement a student reads as an option. |
|
|
103
|
+
| `error-type` | tag | ✓ on distractor | Which student misconception the foil targets: `misreads-detail`, `erroneous-inference`, or `faulty-reasoning`. |
|
|
104
|
+
| `rationale` | string | ✓ on distractor | Why a student would plausibly choose this foil (the error it targets). Surfaced in the item's `distractorAnalysis`. |
|
|
105
|
+
| `targets` | id list | ✓ on distractor | The outcome id(s) this foil is authored against (see *Identity & references*). |
|
|
106
|
+
| `plausibility` | number 0–1 | — | Optional author override for how tempting the foil is. If omitted, the compiler computes a score from evidence overlap, structural parallelism, and error type, and uses it to pick the strongest foil per error type among those targeting the outcome. |
|
|
107
|
+
| `subject` | string | — | Who/what the claim is about (e.g. `"Mara"`, or a specific reference like `"Cortez's age"`); echoed in review metadata. |
|
|
108
|
+
| `standard` | tag | — | The companion RL standard the claim addresses; emitted on the item. |
|
|
109
|
+
| `dok` | tag | — | The claim's cognitive demand (`r-dok3`). |
|
|
110
|
+
|
|
111
|
+
## Evidence content
|
|
112
|
+
|
|
113
|
+
| Attribute | Value | Description |
|
|
114
|
+
| :--- | :--- | :--- |
|
|
115
|
+
| `status` | tag | The support role: `directly-supports` (real backing for its claim), `supports-wrong-claim` (real text that *seems* to back a foil), or `irrelevant` (off-point — a Part B distractor). |
|
|
116
|
+
| `line` | number | The numbered passage entry (a paragraph by default, 1-based) this source draws on. Must be within the passage (out-of-range → warning). |
|
|
117
|
+
| `quote` | string | A verbatim excerpt shown instead of the whole `line`. For EBSR Part B, set this to the exact supporting **sentence** (with `line` pointing at its paragraph) so options stay sentence-tight. |
|
|
118
|
+
| `supports` | id list | See *Identity & references* — the claim(s) this evidence backs. |
|
|
119
|
+
| `rationale` | string | Optional: why this line is a tempting-but-wrong Part B foil. If omitted, composition synthesizes one from the source's status. |
|
|
120
|
+
|
|
121
|
+
## Outcome & stem control
|
|
122
|
+
|
|
123
|
+
| Attribute | Value | Req. | Description |
|
|
124
|
+
| :--- | :--- | :---: | :--- |
|
|
125
|
+
| `id` | string | ✓ | Unique question id; distractors `targets` it. |
|
|
126
|
+
| `type` | tag | ✓ | The task model: `ebsr`, `hot-text`, `short-text`, `multiple-choice`, or `multi-select`. |
|
|
127
|
+
| `dimension` | tag | ✓ | The skill facet the item assesses (must match the focus claim's dimension). |
|
|
128
|
+
| `focus` | id \| id list | ✓ | The supported claim that is the correct answer; on `multi-select` a **list** of ids = the correct set (see *Identity & references*). |
|
|
129
|
+
| `stem` | string | ✓ | The Part A / single-question stem (or, for `short-text`, the prompt), authored from the guideline's Appropriate-Stem catalog (`stems.md`). |
|
|
130
|
+
| `stem-b` | string | ✓ on ebsr | The EBSR Part B stem, authored from the catalog. (Hot Text's Part B instruction is fixed; Short Text has no Part B.) |
|
|
131
|
+
| `subject` | string | — | The noun phrase the stem is about, e.g. `"Mara"` or `"the letter Cortez burned"`; echoed in review metadata. |
|
|
132
|
+
| `standard` | tag | — | The primary RL standard; `rl-1` (cite evidence) is added automatically, and the dimension's companion standard is inferred. |
|
|
133
|
+
| `dok` | tag | — | Target cognitive demand (default: the target's — `r-dok3` for R&E, `r-dok2` for T9; a `short-text` summary is `r-dok3`). |
|
|
134
|
+
| `rubric` | band list | — | `short-text` only — replace the default 0/1/2 rubric with authored `band`s. |
|
|
135
|
+
|
|
136
|
+
## Rubric band
|
|
137
|
+
|
|
138
|
+
| Attribute | Value | Description |
|
|
139
|
+
| :--- | :--- | :--- |
|
|
140
|
+
| `score` | number | The points this band awards (e.g. `2`, `1`, `0`). |
|
|
141
|
+
| `descriptor` | string | What a response at this score looks like. |
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Enumerations
|
|
146
|
+
|
|
147
|
+
- **`target`**: `c1-t4` (R&E literary), `c1-t11` (R&E informational), `c1-t9` (Central Ideas informational), `c1-t8` (Key Details informational), `c1-t10` (Word Meanings informational) — required, top level
|
|
148
|
+
- **item `type`**: `ebsr`, `hot-text`, `short-text`, `multiple-choice`, `multi-select` (allowed set is per-target) · **passage `type`**: `literary`, `informational`
|
|
149
|
+
- **`dimension` (c1-t4)**: `character`, `setting`, `event`, `point-of-view`, `theme`, `topic`, `narrators-feelings`, `character-relationship`
|
|
150
|
+
- **`dimension` (c1-t11)**: `relationships-interactions`, `author-use-of-information`, `point-of-view`, `purpose`, `authors-opinion`
|
|
151
|
+
- **`dimension` (c1-t9)**: `central-idea`, `key-detail`, `summary` · **(c1-t8)**: `supporting-evidence` · **(c1-t10)**: `word-meaning`
|
|
152
|
+
- **claim `status`**: `supported`, `distractor` · **source `status`**: `directly-supports`, `supports-wrong-claim`, `irrelevant` · **meaning `status` (c1-t10)**: `correct`, `distractor`
|
|
153
|
+
- **`error-type` (c1-t4 / c1-t11)**: `misreads-detail`, `erroneous-inference`, `faulty-reasoning` · **(c1-t9)**: `too-narrow`, `too-broad`, `misreads-detail`, `insignificant` · **(c1-t8)**: none — non-supporting sources · **(c1-t10)**: `other-meaning`, `misinterprets`, `wrong-context`
|
|
154
|
+
- **`standard` (c1-t4)**: `rl-1`, `rl-3`, `rl-6`, `rl-9` · **(c1-t11)**: `ri-1`, `ri-3`, `ri-6`, `ri-7`, `ri-8`, `ri-9` · **(c1-t9)**: `ri-1`, `ri-2` · **(c1-t8)**: `ri-1`, `ri-7` · **(c1-t10)**: `ri-4`, `l-4`, `l-4a`, `l-4b`, `l-4c`, `l-5c` · **`dok`**: `r-dok1`, `r-dok2`, `r-dok3`
|
|
155
|
+
|
|
156
|
+
## How composition uses the vocabulary
|
|
157
|
+
|
|
158
|
+
For each outcome, the compiler takes the `focus` supported claim as the correct answer and
|
|
159
|
+
draws the foils from the distractors that `targets` that outcome (most plausible per error
|
|
160
|
+
type), then:
|
|
161
|
+
|
|
162
|
+
- **ebsr** — Part A: the correct claim + 3 targeted distractor claims; Part B: a
|
|
163
|
+
`directly-supports` line + 3 foils drawn from `supports-wrong-claim` and `irrelevant` sources.
|
|
164
|
+
- **hot-text** — Part A as above; Part B exposes every passage line as selectable, with the
|
|
165
|
+
correct claim's `directly-supports` lines marked correct.
|
|
166
|
+
- **short-text** — the authored prompt plus a 0/1/2 `rubric`; no distractors.
|
|
167
|
+
|
|
168
|
+
It emits `distractorAnalysis` (every foil's error type/status + rationale + the claim it ties
|
|
169
|
+
to + plausibility), an `answerKey`, the matched `standards` and `dok`, and `warnings`.
|
|
170
|
+
**Hard errors** (invalid enum; missing `id`/`focus`/`stem`; distractor missing its `rationale`
|
|
171
|
+
or `targets`; a `focus`/`targets` that doesn't resolve; fewer than 3 foils targeting an
|
|
172
|
+
option item; duplicate `id`) fail the compile and carry source coordinates. **Warnings** (thin
|
|
173
|
+
targeted distractor pool, thin Part B pool, dangling `cites`/`supports`, hot-text ambiguity)
|
|
174
|
+
are non-fatal and ride on the item.
|
|
175
|
+
|
|
176
|
+
## Example
|
|
177
|
+
|
|
178
|
+
An EBSR item about a character's motivation, plus a short-text item with an authored rubric:
|
|
179
|
+
|
|
180
|
+
```
|
|
181
|
+
target c1-t4
|
|
182
|
+
title "The Tide Pool"
|
|
183
|
+
passage "The Tide Pool"
|
|
184
|
+
type literary
|
|
185
|
+
lines [
|
|
186
|
+
"Mara crouched at the edge of the tide pool, ignoring the picnic behind her."
|
|
187
|
+
"Her brother called twice, but she did not turn around."
|
|
188
|
+
"A tiny crab scuttled under a rock, and Mara smiled for the first time all day."
|
|
189
|
+
]
|
|
190
|
+
claims [
|
|
191
|
+
claim id "c1"
|
|
192
|
+
status supported
|
|
193
|
+
dimension character
|
|
194
|
+
subject "Mara"
|
|
195
|
+
standard rl-1
|
|
196
|
+
text "Mara is more interested in the tide pool than in her family's picnic."
|
|
197
|
+
cites [
|
|
198
|
+
"e1"
|
|
199
|
+
"e3"
|
|
200
|
+
] {}
|
|
201
|
+
claim id "c2"
|
|
202
|
+
status distractor
|
|
203
|
+
error-type misreads-detail
|
|
204
|
+
plausibility 0.8
|
|
205
|
+
targets [ "q1" ]
|
|
206
|
+
text "Mara is angry at her brother."
|
|
207
|
+
rationale "Not turning around shows absorption, not anger."
|
|
208
|
+
cites [
|
|
209
|
+
"e2"
|
|
210
|
+
] {}
|
|
211
|
+
claim id "c3"
|
|
212
|
+
status distractor
|
|
213
|
+
error-type erroneous-inference
|
|
214
|
+
targets [ "q1" ]
|
|
215
|
+
text "Mara dislikes the outdoors."
|
|
216
|
+
rationale "Contradicted by her smile in line 3."
|
|
217
|
+
cites [
|
|
218
|
+
"e2"
|
|
219
|
+
] {}
|
|
220
|
+
claim id "c4"
|
|
221
|
+
status distractor
|
|
222
|
+
error-type faulty-reasoning
|
|
223
|
+
targets [ "q1" ]
|
|
224
|
+
text "Because Mara is quiet, she must be upset."
|
|
225
|
+
rationale "Treats quiet as upset without support."
|
|
226
|
+
cites [
|
|
227
|
+
"e2"
|
|
228
|
+
] {}
|
|
229
|
+
]
|
|
230
|
+
evidence [
|
|
231
|
+
source id "e1"
|
|
232
|
+
line 1
|
|
233
|
+
status directly-supports
|
|
234
|
+
supports [
|
|
235
|
+
"c1"
|
|
236
|
+
] {}
|
|
237
|
+
source id "e2"
|
|
238
|
+
line 2
|
|
239
|
+
status supports-wrong-claim
|
|
240
|
+
supports [
|
|
241
|
+
"c1"
|
|
242
|
+
"c2"
|
|
243
|
+
] {}
|
|
244
|
+
source id "e3"
|
|
245
|
+
line 3
|
|
246
|
+
status directly-supports
|
|
247
|
+
supports [
|
|
248
|
+
"c1"
|
|
249
|
+
] {}
|
|
250
|
+
]
|
|
251
|
+
outcomes [
|
|
252
|
+
outcome id "q1"
|
|
253
|
+
type ebsr
|
|
254
|
+
dimension character
|
|
255
|
+
subject "Mara"
|
|
256
|
+
standard rl-1
|
|
257
|
+
focus "c1"
|
|
258
|
+
stem "Which of these inferences about Mara is supported by the passage?"
|
|
259
|
+
stem-b "Which sentence(s) from the passage best support your answer in Part A?" {}
|
|
260
|
+
outcome id "q2"
|
|
261
|
+
type short-text
|
|
262
|
+
dimension character
|
|
263
|
+
subject "Mara"
|
|
264
|
+
standard rl-1
|
|
265
|
+
focus "c1"
|
|
266
|
+
stem "What inference can be made about Mara? Explain using key details from the passage to support your answer."
|
|
267
|
+
rubric [
|
|
268
|
+
band score 2
|
|
269
|
+
descriptor "Valid inference with specific evidence." {}
|
|
270
|
+
band score 1
|
|
271
|
+
descriptor "Partial inference or weak evidence." {}
|
|
272
|
+
band score 0
|
|
273
|
+
descriptor "No valid inference or no evidence." {}
|
|
274
|
+
] {}
|
|
275
|
+
]
|
|
276
|
+
{}..
|
|
277
|
+
```
|
package/spec/stems.md
ADDED
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
|
2
|
+
# L0175 Appropriate-Stem Catalog (SBAC · Grade 5 · Claim 1)
|
|
3
|
+
|
|
4
|
+
_Revised: 2026-06-24_
|
|
5
|
+
|
|
6
|
+
The **code generator authors each question's stem from this catalog** and emits it on the
|
|
7
|
+
outcome (`stem`, and `stem-b` on EBSR). The compiler uses the authored text verbatim — it does
|
|
8
|
+
not synthesize stems (it DOES synthesize the Hot-Text Part B selection line). These stems are
|
|
9
|
+
transcribed **verbatim** from the guidelines' "Appropriate Stems" (single-passage only;
|
|
10
|
+
dual-text-stimuli stems are out of scope).
|
|
11
|
+
|
|
12
|
+
**First match your program's `target`, then use that target's catalog below:**
|
|
13
|
+
- **`c1-t4`** (Reasoning & Evidence, literary) → `packages/core/data/E.G5.C1.T4 Reasoning & Evidence.pdf`
|
|
14
|
+
- **`c1-t11`** (Reasoning & Evidence, informational) → `packages/core/data/E.G5.C1.T11 Reasoning & Evidence.pdf`
|
|
15
|
+
- **`c1-t9`** (Central Ideas, informational) → `packages/core/data/E.G5.C1.T9 Central Ideas.pdf`
|
|
16
|
+
- **`c1-t8`** (Key Details, informational) → `packages/core/data/E.G5.C1.T8 Key Details.pdf`
|
|
17
|
+
- **`c1-t10`** (Word Meanings, informational) → `packages/core/data/E.G5.C1.T10 Word Meanings.pdf`
|
|
18
|
+
|
|
19
|
+
## How to use this catalog
|
|
20
|
+
|
|
21
|
+
1. Use the section for your `target`.
|
|
22
|
+
2. Pick the stem that matches your **item `type`** and the task. Task-model numbering is
|
|
23
|
+
per-target and differs between targets — match by item type, not by number. (R&E targets:
|
|
24
|
+
EBSR=TM1, Hot-Text=TM2, Short-Text=TM3. T9 Central Ideas: Multiple-Choice=TM1,
|
|
25
|
+
Multi-Select=TM2, EBSR=TM3, Hot-Text=TM4, Short-Text=TM5. T8 Key Details: Multiple-Choice=TM1,
|
|
26
|
+
Multi-Select=TM2, Hot-Text=TM3. T10 Word Meanings: Multiple-Choice=TM1, Multi-Select=TM2,
|
|
27
|
+
Hot-Text=TM3.)
|
|
28
|
+
3. Pick the **one stem template** that matches the task and the dimension, and fill its
|
|
29
|
+
bracketed `[...]` slot.
|
|
30
|
+
|
|
31
|
+
**Specificity rule (required, both targets).** The `[...]` slot must name the concrete thing the
|
|
32
|
+
question is about — a character's name (`Mother`), a specific event (`the turkey-feeding`), a
|
|
33
|
+
specific idea (`the relationship between the bridge designs`), the author's point of view, etc.
|
|
34
|
+
It is the same string you put in the outcome's `subject`. Do **not** leave it generic
|
|
35
|
+
(`the character`) and do **not** pad it (`the theme of the passage` → use `the theme`; the stem
|
|
36
|
+
already ends "…supported by the passage"). A specific subject makes the four choices discriminating.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
# Target 4 (`c1-t4`) — literary
|
|
41
|
+
|
|
42
|
+
## Task Model 1 — EBSR (two-part selected response)
|
|
43
|
+
|
|
44
|
+
**Lead-in:** This question has two parts. First, answer part A. Then, answer part B.
|
|
45
|
+
|
|
46
|
+
**Part A (`stem`) — pick one:**
|
|
47
|
+
- Which of these inferences about [...] is supported by the passage?
|
|
48
|
+
- What inference can be made about [...]?
|
|
49
|
+
- What inference can be made about the narrator's feelings toward [...]?
|
|
50
|
+
- What inference can be made about [character's name]'s relationship with [character's name]?
|
|
51
|
+
- Which of these conclusions about [...] is supported by the passage?
|
|
52
|
+
- What conclusion can be drawn about [...]?
|
|
53
|
+
- What conclusion can be drawn about the narrator's feelings toward [...]?
|
|
54
|
+
- What conclusion can be drawn about [character's name]'s relationship with [character's name]?
|
|
55
|
+
- What did the author most likely mean by including [...] in the passage?
|
|
56
|
+
|
|
57
|
+
(The `[...]` slot is `[provide character's name / setting / event / author's point of view /
|
|
58
|
+
theme / topic / etc.]`.)
|
|
59
|
+
|
|
60
|
+
**Part B (`stem-b`) — pick one:**
|
|
61
|
+
- Which sentence(s) from the passage best support your answer in part A?
|
|
62
|
+
- Which sentence(s) from the passage best support the [inference made / conclusion drawn] in part A?
|
|
63
|
+
|
|
64
|
+
## Task Model 2 — Hot Text (select text)
|
|
65
|
+
|
|
66
|
+
**Lead-in:** This question has two parts. First, answer part A. Then, answer part B.
|
|
67
|
+
|
|
68
|
+
**Part A (`stem`) — pick one:**
|
|
69
|
+
- Click on the statement that best provides an inference about [...] that is supported by the passage.
|
|
70
|
+
- Click on the statement that best provides an inference that can be made about the narrator's feelings toward [...].
|
|
71
|
+
- Click on the statement that best provides an inference that can be made about [character's name]'s relationship with [character's name].
|
|
72
|
+
- Click on the statement that best provides a conclusion that can be drawn about [...].
|
|
73
|
+
- Click on the statement that best provides a conclusion that can be drawn about the narrator's feelings toward [...].
|
|
74
|
+
- Click on the statement that best provides a conclusion that can be drawn about [character's name]'s relationship with [character's name].
|
|
75
|
+
- Click on the statement that best describes what the author most likely meant by including [...] in the passage.
|
|
76
|
+
|
|
77
|
+
**Part B:** fixed by the compiler (you do not author it) — "Click N sentence(s) from the passage
|
|
78
|
+
that support your answer in Part A," where N is the exact per-item count (one less than the valid
|
|
79
|
+
count, floored at 1, capped at 3). **Any selection of N sentences from the valid set is correct**
|
|
80
|
+
(a superset), so **author ≥3 `directly-supports` sentences with exact `quote`s** so the asked
|
|
81
|
+
count is ≥2 with real choice. **Author only the Part A *statement* stem above; never author a
|
|
82
|
+
"click/select the sentences…" instruction as the Part A `stem`** (that is Part B's job). If a
|
|
83
|
+
request says "select the sentences that show [X]", that describes the Part B selection — author
|
|
84
|
+
Part A as a statement prompt about [X] and mark the sentences that show [X] as `directly-supports`
|
|
85
|
+
evidence (with exact `quote`s).
|
|
86
|
+
|
|
87
|
+
## Task Model 3 — Short Text (constructed response)
|
|
88
|
+
|
|
89
|
+
Author as `stem` (the prompt); every Short Text stem ends with the explain clause:
|
|
90
|
+
|
|
91
|
+
- What inference can be made about [...]? Explain using key details from the passage to support your answer.
|
|
92
|
+
- What inference can be made about the narrator's feelings toward [...]? Explain using key details from the passage to support your answer.
|
|
93
|
+
- What inference can be made about [character's name]'s relationship with [character's name]? Explain using key details from the passage to support your answer.
|
|
94
|
+
- What conclusion can be drawn about [...]? Explain using key details from the passage to support your answer.
|
|
95
|
+
- What conclusion can be drawn about the narrator's feelings toward [...]? Explain using key details from the passage to support your answer.
|
|
96
|
+
- What conclusion can be drawn about [character's name]'s relationship with [character's name]? Explain using key details from the passage to support your answer.
|
|
97
|
+
|
|
98
|
+
(`[...]` slot here is `[provide character's name / setting / event / theme / topic]`.)
|
|
99
|
+
|
|
100
|
+
## Worked examples (specific slot fills)
|
|
101
|
+
|
|
102
|
+
- character / inference / EBSR →
|
|
103
|
+
`stem "Which of these inferences about Mother is supported by the passage?"`
|
|
104
|
+
`stem-b "Which sentence(s) from the passage best support your answer in part A?"`
|
|
105
|
+
- point-of-view / inference / EBSR →
|
|
106
|
+
`stem "What inference can be made about the narrator's point of view?"`
|
|
107
|
+
- theme / inference / EBSR →
|
|
108
|
+
`stem "Which of these inferences about the theme is supported by the passage?"` ✓
|
|
109
|
+
(not "…about the theme of the passage is supported by the passage?" — redundant)
|
|
110
|
+
- author-intent / EBSR (specific event) →
|
|
111
|
+
`stem "What did the author most likely mean by including the scarecrow in the passage?"`
|
|
112
|
+
- theme / inference / Short Text →
|
|
113
|
+
`stem "What inference can be made about the theme? Explain using key details from the passage to support your answer."`
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
# Target 11 (`c1-t11`) — informational
|
|
118
|
+
|
|
119
|
+
Informational dimensions: `relationships-interactions`, `author-use-of-information`,
|
|
120
|
+
`point-of-view`, `purpose`, `authors-opinion`. The `[...]` slot is the guideline's
|
|
121
|
+
`[provide example of relationships or interactions between individuals, events, ideas, or
|
|
122
|
+
concepts / author's use of information / point of view / purpose]` (or, for an opinion question,
|
|
123
|
+
`the author's opinion of [idea/concept]`; for author-intent, `[target detail]`). Note T11 says
|
|
124
|
+
"key **evidence**" (T4 said "key details"), and Part B units are
|
|
125
|
+
`sentence(s) / paragraph(s) / section(s)`.
|
|
126
|
+
|
|
127
|
+
## Task Model 1 — EBSR (two-part selected response)
|
|
128
|
+
|
|
129
|
+
**Lead-in:** This question has two parts. First, answer part A. Then, answer part B.
|
|
130
|
+
|
|
131
|
+
**Part A (`stem`) — pick one:**
|
|
132
|
+
- Which of these inferences about the [...] is supported by the passage?
|
|
133
|
+
- What inference can be made about the [...]?
|
|
134
|
+
- What inference can be made about the author's opinion of [idea/concept in the text]?
|
|
135
|
+
- Which of these conclusions about the [...] is supported by the passage?
|
|
136
|
+
- What conclusion can be drawn about the [...]?
|
|
137
|
+
- What conclusion can be drawn about the author's opinion of [idea/concept in the text]?
|
|
138
|
+
- What did the author most likely mean by using [target detail] in the text?
|
|
139
|
+
|
|
140
|
+
**Part B (`stem-b`) — pick one:**
|
|
141
|
+
- Which sentence(s) from the passage best support your answer in part A?
|
|
142
|
+
- Which sentence(s) from the passage best show the [inference made / conclusion drawn] in part A?
|
|
143
|
+
|
|
144
|
+
## Task Model 2 — Hot Text (select text)
|
|
145
|
+
|
|
146
|
+
**Lead-in:** This question has two parts. First, answer part A. Then, answer part B.
|
|
147
|
+
|
|
148
|
+
**Part A (`stem`) — pick one:**
|
|
149
|
+
- Click on the statement that best provides an inference about the [...] that is supported by the passage.
|
|
150
|
+
- Click on the statement that best provides an inference that can be made about the author's opinion of [idea/concept in the text].
|
|
151
|
+
- Click on the statement that best provides a conclusion that can be drawn about the [...].
|
|
152
|
+
- Click on the statement that best provides a conclusion that can be drawn about the author's opinion of [idea/concept in the text].
|
|
153
|
+
- Click on the statement that best describes what the author most likely meant by using [target detail] in the text.
|
|
154
|
+
|
|
155
|
+
**Part B:** fixed by the compiler (you do not author it) — "Click N sentence(s) from the passage
|
|
156
|
+
that support your answer in Part A," where N is the exact per-item count (one less than the valid
|
|
157
|
+
count, floored at 1, capped at 3). **Any selection of N sentences from the valid set is correct**
|
|
158
|
+
(a superset), so **author ≥3 `directly-supports` sentences with exact `quote`s** so the asked
|
|
159
|
+
count is ≥2 with real choice. **Author only the Part A *statement* stem above; never author a
|
|
160
|
+
"click/select the sentences…" instruction as the Part A `stem`** (that is Part B's job). If a
|
|
161
|
+
request says "select the sentences that show [X]", that describes the Part B selection — author
|
|
162
|
+
Part A as a statement prompt about [X] and mark the sentences that show [X] as `directly-supports`
|
|
163
|
+
evidence (with exact `quote`s).
|
|
164
|
+
|
|
165
|
+
## Task Model 3 — Short Text (constructed response)
|
|
166
|
+
|
|
167
|
+
Author as `stem`; every Short Text stem ends with the explain clause ("key **evidence**"):
|
|
168
|
+
|
|
169
|
+
- What inference can be made about the [...]? Explain using key evidence from the passage to support your answer.
|
|
170
|
+
- What inference can be made about the author's opinion about [idea/concept in the text]? Explain using key evidence from the passage to support your answer.
|
|
171
|
+
- What conclusion can be drawn about the [...]? Explain using key evidence from the passage to support your answer.
|
|
172
|
+
- What conclusion can be drawn about the author's opinion about [idea/concept in the text]? Explain using key evidence from the passage to support your answer.
|
|
173
|
+
- What did the author most likely mean by using [target detail] in the text? Explain using key evidence from the passage to support your answer.
|
|
174
|
+
|
|
175
|
+
## Worked examples (T11, specific slot fills)
|
|
176
|
+
|
|
177
|
+
- relationships-interactions / inference / EBSR →
|
|
178
|
+
`stem "Which of these inferences about the relationship between the bridge designs is supported by the passage?"`
|
|
179
|
+
`stem-b "Which sentence(s) from the passage best support your answer in part A?"`
|
|
180
|
+
- author-use-of-information / inference / EBSR →
|
|
181
|
+
`stem "What inference can be made about the author's use of statistics in the report?"`
|
|
182
|
+
- point-of-view / EBSR →
|
|
183
|
+
`stem "Which of these conclusions about the author's point of view is supported by the passage?"`
|
|
184
|
+
- authors-opinion / Short Text →
|
|
185
|
+
`stem "What conclusion can be drawn about the author's opinion about renewable energy? Explain using key evidence from the passage to support your answer."`
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
# Target 9 (`c1-t9`) — Central Ideas (informational)
|
|
190
|
+
|
|
191
|
+
A **different skill** from Reasoning & Evidence: synthesize and condense — the **main/central
|
|
192
|
+
idea**, the **key details** that build it, and **summary**. DOK **2** (3 only for the written
|
|
193
|
+
summary). Standards **RI-1 + RI-2**. Dimensions: `central-idea` (the main idea / author's message /
|
|
194
|
+
main problem), `key-detail` (a supporting detail), `summary` (the details that belong in a summary).
|
|
195
|
+
|
|
196
|
+
**Distractors are a SIGNIFICANCE taxonomy** (usually true statements that just aren't central):
|
|
197
|
+
`too-narrow` (a real supporting detail mistaken for the main idea), `too-broad` (an
|
|
198
|
+
overgeneralization / off-topic claim), `misreads-detail` (a misread), `insignificant` (a minor true
|
|
199
|
+
detail that doesn't belong in a summary). The `[...]` slot names what the question is about (the
|
|
200
|
+
same string as `subject`), e.g. "the passage", "the first paragraph", "the introduction".
|
|
201
|
+
|
|
202
|
+
## Task Model 1 — Multiple Choice (`type multiple-choice`, single-answer, DOK 2)
|
|
203
|
+
|
|
204
|
+
Author as `stem`; the `focus` claim is the correct central idea (or, for the missing-detail variant,
|
|
205
|
+
the missing key detail):
|
|
206
|
+
- Which sentence best [shows/tells/describes] the main idea of [the passage / provide section]?
|
|
207
|
+
- Which sentence best [shows/tells/describes] the main problem in the passage?
|
|
208
|
+
- Which sentence best [shows/tells/describes] the author's [message/main idea] in [provide section]?
|
|
209
|
+
- Which [sentence/detail] from the passage best [shows/tells/describes] the main idea?
|
|
210
|
+
- Which sentence best summarizes [the passage / the first paragraph / the introduction]?
|
|
211
|
+
- Which sentence is the best summary of what happens [when/after/during] [provide text event]?
|
|
212
|
+
- Read this summary. [provide summary; one pivotal key event/idea/detail is missing] Which [key event/idea/detail] is missing from the summary?
|
|
213
|
+
|
|
214
|
+
## Task Model 2 — Multi-Select (`type multi-select`, choose two, DOK 2)
|
|
215
|
+
|
|
216
|
+
Author as `stem`; `focus` is the **list** of the two correct statements (the correct set):
|
|
217
|
+
- Choose two sentences that best identify the main ideas presented in the passage.
|
|
218
|
+
- Choose two sentences that should be included in a summary of [the passage / provide section].
|
|
219
|
+
|
|
220
|
+
## Task Model 3 — EBSR (`type ebsr`, two-part, DOK 2)
|
|
221
|
+
|
|
222
|
+
**Lead-in:** This question has two parts. First, answer part A. Then, answer part B.
|
|
223
|
+
|
|
224
|
+
**Part A (`stem`) — pick one** (the `focus` claim is the central idea):
|
|
225
|
+
- Which sentence best [shows/tells/describes] the main idea of the passage?
|
|
226
|
+
- Which sentence best [shows/tells/describes] the main problem in the passage?
|
|
227
|
+
- Which sentence best [shows/tells/describes] the author's [message/main idea] in [provide section]?
|
|
228
|
+
|
|
229
|
+
**Part B (`stem-b`) — pick one** (Part B options are key-detail `source`s):
|
|
230
|
+
- Which [sentence/detail] from the passage best [supports/is an example of] your answer in part A?
|
|
231
|
+
|
|
232
|
+
## Task Model 5 — Short Text (`type short-text`, constructed response, DOK 3)
|
|
233
|
+
|
|
234
|
+
Author as `stem`; every Short Text stem ends with the explain clause:
|
|
235
|
+
- Determine the main idea of the passage. Explain using key details from the passage to support your answer.
|
|
236
|
+
- What is the main idea of the passage? Explain using key details from the passage to support your answer.
|
|
237
|
+
- What is the author's [message/point] about [provide text detail that relates to the central idea]? Explain using key ideas from the passage to support your answer.
|
|
238
|
+
- What is the author's main idea in this [paragraph/section]? Explain using key details from the passage to support your answer.
|
|
239
|
+
- Summarize [the first paragraph / the introduction]. Use key [details/events] from the passage in your summary.
|
|
240
|
+
- Summarize what happens [after/during] [provide text event]. Use key [details/events] from the passage in your summary.
|
|
241
|
+
|
|
242
|
+
## Task Model 4 — Hot Text (`type hot-text`, single-part select-text, DOK 2)
|
|
243
|
+
|
|
244
|
+
Single-part: the authored `stem` is the whole click instruction (the compiler does not synthesize
|
|
245
|
+
it); the student clicks the sentence(s) that show the main idea. The correct sentences are the
|
|
246
|
+
`focus` claim's directly-supporting `source`s (give each a `quote`):
|
|
247
|
+
- Click on [one/two] [sentence(s)/section(s)] of the text that best [shows/tells/describes] the main idea of [the passage / provide section].
|
|
248
|
+
- Read this summary of the passage. [provide summary; one key event/idea/detail is missing] A [key event/idea/detail] is missing from the summary. Click on the [sentence/section] that includes the missing [event/idea/detail].
|
|
249
|
+
- Click on [one/two] [key details/events] that should be included in a summary of the passage.
|
|
250
|
+
|
|
251
|
+
## Worked examples (T9, specific slot fills)
|
|
252
|
+
|
|
253
|
+
- central-idea / Multiple Choice →
|
|
254
|
+
`stem "Which sentence best shows the main idea of the passage?"`
|
|
255
|
+
- summary / Multi-Select →
|
|
256
|
+
`stem "Choose two sentences that should be included in a summary of the passage."` with `focus ["s1" "s2"]`
|
|
257
|
+
- central-idea / EBSR →
|
|
258
|
+
`stem "Which sentence best describes the main idea of the passage?"`
|
|
259
|
+
`stem-b "Which detail from the passage best supports your answer in part A?"`
|
|
260
|
+
- central-idea / Short Text →
|
|
261
|
+
`stem "Determine the main idea of the passage. Explain using key details from the passage to support your answer."`
|
|
262
|
+
- central-idea / Hot Text (single-part) →
|
|
263
|
+
`stem "Click on the sentence that best shows the main idea of the passage."` (the `focus` claim's directly-supporting sources are the correct sentences)
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
# Target 8 (`c1-t8`) — Key Details (informational)
|
|
268
|
+
|
|
269
|
+
A **different model**: the inference/conclusion is **GIVEN in the stem**, and the student selects
|
|
270
|
+
the **text evidence** that supports it. DOK **1–2**. Standards **RI-1 + RI-7**. Dimension:
|
|
271
|
+
`supporting-evidence`. Item types: `multiple-choice`, `multi-select`, `hot-text` (no EBSR, no
|
|
272
|
+
constructed response).
|
|
273
|
+
|
|
274
|
+
**Authoring:** author ONE supported `claim` = the given inference (named by the outcome's `focus`)
|
|
275
|
+
and **state that inference in the `stem`**; author `source`s for the options — `directly-supports`
|
|
276
|
+
(the correct evidence; give a `quote` for the exact sentence) and `supports-wrong-claim` /
|
|
277
|
+
`irrelevant` (the distractor evidence, each with a `rationale`). The options are the **sources**,
|
|
278
|
+
not claims; there are no distractor claims.
|
|
279
|
+
|
|
280
|
+
## Task Model 1 — Multiple Choice (`type multiple-choice`, single-answer, DOK 1–2)
|
|
281
|
+
|
|
282
|
+
The stem states the inference and asks which evidence supports it:
|
|
283
|
+
- Which [evidence/detail/sentence] from the passage best supports [provide inference or conclusion]?
|
|
284
|
+
- [Provide inference or conclusion based on the passage]. Which [evidence/detail/sentence] from the passage best supports this [inference/conclusion]?
|
|
285
|
+
- The reader can [infer/conclude] [provide inference/conclusion]. Which [evidence/detail/sentence] from the passage best supports this?
|
|
286
|
+
- The author [infers/concludes] that [provide inference/conclusion]. Which [evidence/detail/sentence] from the passage best supports this?
|
|
287
|
+
|
|
288
|
+
## Task Model 2 — Multi-Select (`type multi-select`, choose two/three, DOK 1–2)
|
|
289
|
+
|
|
290
|
+
- Choose [two/three] [details/sentences] from the passage that best support the [inference/conclusion] that [provide inference/conclusion].
|
|
291
|
+
- Which [evidence/details/sentences] from the passage best support [provide inference/conclusion]? Select two answers.
|
|
292
|
+
|
|
293
|
+
## Task Model 3 — Hot Text (`type hot-text`, single-part select-text, DOK 1–2)
|
|
294
|
+
|
|
295
|
+
Single-part: the authored `stem` states the inference and the click instruction (the compiler does
|
|
296
|
+
not synthesize it); the student clicks the supporting sentence(s):
|
|
297
|
+
- Click the [detail/sentence/set of sentences/paragraph] that best supports [provide inference/conclusion].
|
|
298
|
+
- Click [one/two] [details/sentences] that best support [provide inference/conclusion].
|
|
299
|
+
- [Provide inference/conclusion]. Click the [sentence(s)] from the passage that support this.
|
|
300
|
+
|
|
301
|
+
## Worked examples (T8, specific slot fills)
|
|
302
|
+
|
|
303
|
+
- supporting-evidence / Multiple Choice →
|
|
304
|
+
`stem "Aqueducts brought water to distant cities. Which detail from the passage best supports this conclusion?"` with one supported `claim` (the inference) at `focus`, its directly-supporting `source` the correct option.
|
|
305
|
+
- supporting-evidence / Multi-Select →
|
|
306
|
+
`stem "Which two details best support the idea that aqueducts carried water far? Select two answers."` (two `directly-supports` sources)
|
|
307
|
+
- supporting-evidence / Hot Text (single-part) →
|
|
308
|
+
`stem "Aqueducts brought water to distant cities. Click the sentence(s) from the passage that support this."`
|
|
309
|
+
|
|
310
|
+
---
|
|
311
|
+
|
|
312
|
+
# Target 10 (`c1-t10`) — Word Meanings (informational)
|
|
313
|
+
|
|
314
|
+
A **different model**: the question asks for the **meaning of a targeted word/phrase in context**,
|
|
315
|
+
so the answer choices are **meanings** (definitions/synonyms), authored as a `word` with candidate
|
|
316
|
+
`meaning`s — not claims. DOK **1–2**. Standards **RI-4** (always) + the **L-4 family** by strategy:
|
|
317
|
+
context → `l-4a`, Greek/Latin roots & affixes → `l-4b`, word relationships (synonyms/antonyms) →
|
|
318
|
+
`l-5c`, reference materials → `l-4c`. Dimension: `word-meaning`. Item types: `multiple-choice`,
|
|
319
|
+
`multi-select`, and `hot-text` (Task Model 3 — click the word in the excerpt that matches a given
|
|
320
|
+
definition).
|
|
321
|
+
|
|
322
|
+
**Authoring:** author a `word` (the targeted word, with `line`/`quote` for its context) holding a
|
|
323
|
+
`meanings` list — one (MC) or ≥2 (Multi-Select) `status correct` meanings + `status distractor`
|
|
324
|
+
meanings, each distractor with a T10 `error-type` and `rationale`. The outcome's `focus` names the
|
|
325
|
+
word; the stem states the word and its context sentence. Distractor taxonomy: `other-meaning`
|
|
326
|
+
(another meaning of the word, ignoring context), `misinterprets` (misreads the word/context),
|
|
327
|
+
`wrong-context` (uses the wrong context).
|
|
328
|
+
|
|
329
|
+
## Task Model 1 — Multiple Choice (`type multiple-choice`, single-answer, DOK 1–2)
|
|
330
|
+
|
|
331
|
+
The stem shows the sentence with the targeted word and asks for its meaning:
|
|
332
|
+
- Read the sentence(s). [excerpt] What is the meaning of the word [word]?
|
|
333
|
+
- Read the sentence(s). [excerpt] What does the word [word] most likely mean?
|
|
334
|
+
- Read the sentence(s). [excerpt] Which word or phrase best states the meaning of [word]?
|
|
335
|
+
- Read the sentence(s). [excerpt] Pick the word or phrase that best defines [word] as it is used in the sentence(s).
|
|
336
|
+
- Read the dictionary entry. [(part of speech) 1. definition] Which word from the text best matches the dictionary entry?
|
|
337
|
+
- Read the sentence(s). [excerpt] What does the [root/affix] in the word [word] mean?
|
|
338
|
+
|
|
339
|
+
## Task Model 2 — Multi-Select (`type multi-select`, choose two, DOK 1–2)
|
|
340
|
+
|
|
341
|
+
- Read the sentence(s). [excerpt] What does the word [word] most likely mean? Choose two answers.
|
|
342
|
+
- Read the sentence(s). [excerpt] What does the use of [word] tell the reader about [idea/event] in the passage? Choose two answers.
|
|
343
|
+
|
|
344
|
+
## Task Model 3 — Hot Text / click-the-word (`type hot-text`, single-part, DOK 1–2)
|
|
345
|
+
|
|
346
|
+
The reverse: the stem gives a **definition**; the student clicks the word in the passage that
|
|
347
|
+
matches it. Author the focus `word` (the correct one) as the outcome's `focus`, giving it the
|
|
348
|
+
`line` of its paragraph, then the **distractor candidate words** one of two ways:
|
|
349
|
+
|
|
350
|
+
1. **As more `word`s** in the `words` list (`text` only — no `meanings`), or
|
|
351
|
+
2. **As the focus word's distractor `meanings`** whose `text` IS the candidate word — a single word,
|
|
352
|
+
carrying an `error-type` + `rationale`. For hot-text the meaning text must be the literal word to
|
|
353
|
+
click, **not** a definition. (This reuses the MC/MS shape and is what the generator most often
|
|
354
|
+
produces.)
|
|
355
|
+
|
|
356
|
+
**All candidates must be words that appear in the focus word's paragraph.** The compiler shows the
|
|
357
|
+
whole paragraph (from the focus word's `line`) and makes the candidate words clickable, with the
|
|
358
|
+
focus word correct. **The `stem` is just the instruction + definition — do NOT paste the paragraph
|
|
359
|
+
into the stem; it is shown separately** (the compiler warns if the stem contains it). Candidates not
|
|
360
|
+
in the focus word's paragraph are warned and dropped. ⚠ If you author *only* the focus word with a
|
|
361
|
+
real multi-word definition (no candidate words/single-word meanings), the compiler can't find
|
|
362
|
+
candidates and falls back to making **every** content word clickable — list the candidate words to
|
|
363
|
+
avoid that. Stems:
|
|
364
|
+
- Read the dictionary entry. [(part of speech) definition] Click on the word in the sentence that most closely matches the definition.
|
|
365
|
+
- The author uses a word that means [definition]. Click on the word in the sentence that best shows that meaning.
|
|
366
|
+
|
|
367
|
+
## Worked examples (T10, specific slot fills)
|
|
368
|
+
|
|
369
|
+
- word-meaning / Multiple Choice →
|
|
370
|
+
`word id "w1" text "aqueduct" line 1 quote "The aqueduct carried water for miles." meanings [ meaning id "m1" status correct text "a channel built to carry water" {} meaning id "m2" status distractor error-type other-meaning text "a cargo boat" rationale "another meaning, ignores context" {} … ] {}`
|
|
371
|
+
`stem "Read the sentence: \"The aqueduct carried water for miles.\" What does the word aqueduct most likely mean?"` with `focus "w1"`, `standard l-4a`
|
|
372
|
+
- word-meaning / Hot Text (click the word) →
|
|
373
|
+
`words [ word id "w1" text "aqueduct" line 8 {} word id "w2" text "causeways" {} word id "w3" text "canals" {} word id "w4" text "distributed" {} ]`
|
|
374
|
+
`stem "Read the dictionary entry: aqueduct (noun) a channel that carries water. Click the word in the paragraph that matches this definition."` with `focus "w1"` — line 8's paragraph is shown and the authored candidates (aqueduct, causeways, canals, distributed — all in that paragraph) are clickable; "aqueduct" is correct.
|