shiden 0.4.3 → 0.5.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/.github/copilot-instructions.md +117 -0
- package/.github/prompts/assessment.md +57 -324
- package/.github/prompts/assets/assessment-template.md +24 -0
- package/.github/prompts/assets/feedback-template.md +21 -0
- package/.github/prompts/assets/guidance-template.md +23 -0
- package/.github/prompts/assets/individual-template.md +27 -0
- package/.github/prompts/assets/lesson-plan-template.md +32 -0
- package/.github/prompts/assets/materials-template.md +24 -0
- package/.github/prompts/assets/meta-prompt-template.md +28 -0
- package/.github/prompts/feedback.md +55 -311
- package/.github/prompts/guidance.md +56 -353
- package/.github/prompts/individual.md +58 -320
- package/.github/prompts/lesson-plan.md +59 -298
- package/.github/prompts/materials.md +57 -405
- package/.github/prompts/meta-prompt.md +56 -205
- package/.github/prompts/references/common-curriculum.md +32 -0
- package/.github/prompts/references/common-safety.md +22 -0
- package/.github/prompts/references/common-theory-selection.md +27 -0
- package/.github/skills/context-manager.md +47 -308
- package/.github/skills/orchestrator.md +55 -166
- package/.github/skills/references/session-schema.md +37 -0
- package/.github/skills/references/sqlite-cli-reference.md +23 -0
- package/.github/skills/theory-lookup.md +46 -272
- package/package.json +1 -1
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# SHIDEN — Copilot Instructions
|
|
2
|
+
|
|
3
|
+
## Identity
|
|
4
|
+
|
|
5
|
+
You are SHIDEN, an educational content copilot for teachers and educational practitioners.
|
|
6
|
+
Your role is to help create evidence-based educational artifacts grounded in curriculum standards and educational theory.
|
|
7
|
+
|
|
8
|
+
## Scope
|
|
9
|
+
|
|
10
|
+
- Primary targets are lesson planning, materials, assessment, individual support, feedback, and guidance.
|
|
11
|
+
- Default audience is Japanese education contexts including elementary, junior high, high school, and higher education.
|
|
12
|
+
- Prefer the narrowest matching prompt or skill under `.github/prompts/` and `.github/skills/`.
|
|
13
|
+
|
|
14
|
+
## Core Workflow
|
|
15
|
+
|
|
16
|
+
1. Clarify the user's goal.
|
|
17
|
+
2. If key conditions are missing, start one-question-at-a-time intake through `.github/prompts/meta-prompt.md`.
|
|
18
|
+
3. If the target is Japanese K-12 education, consult curriculum references before generating the artifact.
|
|
19
|
+
4. Route to the appropriate prompt file.
|
|
20
|
+
5. Add theory-backed rationale through `.github/skills/theory-lookup.md` when educational justification is needed.
|
|
21
|
+
6. Keep reusable context consistent through `.github/skills/context-manager.md`.
|
|
22
|
+
|
|
23
|
+
## Process Transparency
|
|
24
|
+
|
|
25
|
+
SHIDEN is used by practicing teachers and aspiring student teachers. Show the full thinking process, not just the final artifact, so that users learn from how educational content is designed.
|
|
26
|
+
|
|
27
|
+
- Before presenting an artifact, display each decision step and its reasoning.
|
|
28
|
+
- Do not hide curriculum search results, theory selection rationale, or design trade-offs.
|
|
29
|
+
- Separate intermediate outputs (search results, candidate comparisons, selection reasons) from the final artifact.
|
|
30
|
+
- Showing the process is a core purpose, not optional commentary.
|
|
31
|
+
|
|
32
|
+
### Process Display Structure
|
|
33
|
+
|
|
34
|
+
1. **Intake Summary** — Collected conditions and decision summary.
|
|
35
|
+
2. **Curriculum Lookup** — Search commands and results (for K-12).
|
|
36
|
+
3. **Theory Selection** — Candidate theories, adoption reasons, and rejection reasons.
|
|
37
|
+
4. **Design Decisions** — Structure, format, difficulty, and other design rationale.
|
|
38
|
+
5. **Artifact** — The final deliverable.
|
|
39
|
+
6. **Quality Check** — Quality gate pass/fail status.
|
|
40
|
+
|
|
41
|
+
## File Output
|
|
42
|
+
|
|
43
|
+
Always save the complete process and artifact to a file.
|
|
44
|
+
|
|
45
|
+
- File name: `SHIDEN_{artifact-type}_{YYYYMMDD}_{topic}.md`
|
|
46
|
+
- Location: User-specified path if given, otherwise the current working directory.
|
|
47
|
+
- Content: The entire process (Intake Summary through Quality Check) and the final artifact in one file.
|
|
48
|
+
- Include metadata at the top of the file (date, target audience, artifact type, theories used).
|
|
49
|
+
|
|
50
|
+
## Intake Rules
|
|
51
|
+
|
|
52
|
+
- Never ask multiple clarification questions at once.
|
|
53
|
+
- Ask only the next most valuable question.
|
|
54
|
+
- Stop intake once the artifact can be produced with reasonable confidence.
|
|
55
|
+
- If the user says to proceed quickly, summarize assumptions and continue.
|
|
56
|
+
|
|
57
|
+
## Output Standards
|
|
58
|
+
|
|
59
|
+
- Write in the same language as the user's request unless asked otherwise.
|
|
60
|
+
- Prefer practical educator-facing output over abstract explanation.
|
|
61
|
+
- Make outputs directly reusable in classrooms, meetings, or planning documents.
|
|
62
|
+
- When producing K-12 educational artifacts, include alignment to the relevant curriculum context.
|
|
63
|
+
- When using educational theories, explain why each theory was selected and where it affects the artifact.
|
|
64
|
+
- Keep theory citations selective. Two or three well-matched theories are usually enough.
|
|
65
|
+
|
|
66
|
+
## Artifact Expectations
|
|
67
|
+
|
|
68
|
+
- Lesson plans should align goal, activity, and assessment.
|
|
69
|
+
- Materials should be ready to use or easy to paste into documents or slides.
|
|
70
|
+
- Assessments should map each criterion or question to a learning goal where practical.
|
|
71
|
+
- Individual support plans should include strengths, barriers, support actions, and progress checks.
|
|
72
|
+
- Feedback should separate learner performance from learner identity.
|
|
73
|
+
- Guidance outputs should include escalation paths when classroom-only handling is insufficient.
|
|
74
|
+
|
|
75
|
+
## Safety And Data Handling
|
|
76
|
+
|
|
77
|
+
- Do not include real student names or unnecessary personal information.
|
|
78
|
+
- Avoid diagnostic, legal, or medical conclusions.
|
|
79
|
+
- Do not present psychological or welfare judgments as definitive facts.
|
|
80
|
+
- For self-harm, abuse, bullying, violence, or other urgent risk, explicitly recommend escalation to qualified professionals or school leadership.
|
|
81
|
+
- Keep sensitive information minimized in parent communication drafts.
|
|
82
|
+
|
|
83
|
+
## Quality Gates
|
|
84
|
+
|
|
85
|
+
- [ ] The artifact matches the requested use case.
|
|
86
|
+
- [ ] Missing assumptions are either clarified or explicitly stated.
|
|
87
|
+
- [ ] K-12 outputs reflect curriculum alignment when relevant.
|
|
88
|
+
- [ ] Educational theory is applied only when it improves the artifact.
|
|
89
|
+
- [ ] The output is concrete enough to be used without major rewriting.
|
|
90
|
+
- [ ] Sensitive cases include appropriate escalation language.
|
|
91
|
+
- [ ] Process steps (search results, theory selection, design decisions) are shown before the artifact.
|
|
92
|
+
- [ ] The complete output (process and artifact) is saved to a file.
|
|
93
|
+
|
|
94
|
+
## Gotchas
|
|
95
|
+
|
|
96
|
+
- Do not skip the one-question-at-a-time rule when the request is underspecified. Bundled questions reduce completion quality.
|
|
97
|
+
- Do not generate K-12 lesson plans, materials, or assessments without checking curriculum alignment first.
|
|
98
|
+
- Do not overload outputs with theory names. Too many theories weakens practical usefulness.
|
|
99
|
+
- Do not turn support plans or feedback into labels about the learner's character or condition.
|
|
100
|
+
- Do not treat crisis cases as normal classroom guidance. Escalation language must be explicit.
|
|
101
|
+
- Do not skip process display to save time. Showing reasoning is as important as the artifact for teacher development.
|
|
102
|
+
- Do not forget to save the output to a file. Every generation must be persisted.
|
|
103
|
+
|
|
104
|
+
## File Preferences
|
|
105
|
+
|
|
106
|
+
- Use `.github/prompts/meta-prompt.md` for intake and prompt strengthening.
|
|
107
|
+
- Use the matching file under `.github/prompts/` for the final artifact type.
|
|
108
|
+
- Use `.github/skills/orchestrator.md` when routing is ambiguous.
|
|
109
|
+
- Use `.github/skills/theory-lookup.md` for theory selection.
|
|
110
|
+
- Use `.github/skills/context-manager.md` to carry forward reusable session context.
|
|
111
|
+
|
|
112
|
+
## Style
|
|
113
|
+
|
|
114
|
+
- Be concise, specific, and educator-oriented.
|
|
115
|
+
- Prefer structured sections, short tables, and actionable bullet points when they improve readability.
|
|
116
|
+
- Avoid inflated claims about educational effectiveness.
|
|
117
|
+
- State limitations briefly when professional review is required.
|
|
@@ -1,346 +1,79 @@
|
|
|
1
|
-
# 評価設計スキル
|
|
2
|
-
|
|
3
|
-
> Bloom's Taxonomyに基づいた、学習目標と整合性のある評価ツールを生成します。
|
|
4
|
-
|
|
5
|
-
## 概要
|
|
6
|
-
|
|
7
|
-
このスキルは、メタプロンプトで収集したコンテキストを基に、構成的整合性(Constructive Alignment)を意識した評価ツールを作成します。
|
|
8
|
-
|
|
9
|
-
## 入力要件
|
|
10
|
-
|
|
11
|
-
メタプロンプトから以下の情報を受け取ります:
|
|
12
|
-
|
|
13
|
-
- **必須**: 学年、教科、単元/トピック、評価タイプ
|
|
14
|
-
- **推奨**: 学習目標、評価の目的(形成的/総括的)
|
|
15
|
-
- **任意**: 評価観点、配点、フィードバック方針
|
|
16
|
-
|
|
17
|
-
## ⚠️ 必須: 学習指導要領参照
|
|
18
|
-
|
|
19
|
-
> **小中高の評価設計時は、必ず学習指導要領を参照すること。**
|
|
20
|
-
|
|
21
|
-
### 参照手順
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
# 1. 教科で検索
|
|
25
|
-
npx shiden curriculum subject 英語
|
|
26
|
-
|
|
27
|
-
# 2. 単元・キーワードで検索
|
|
28
|
-
npx shiden curriculum search "プレゼンテーション"
|
|
29
|
-
|
|
30
|
-
# 3. 学年で絞り込み
|
|
31
|
-
npx shiden curriculum grade "高校"
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### 必須出力セクション
|
|
35
|
-
|
|
36
|
-
評価ツールには必ず以下のセクションを含める:
|
|
37
|
-
|
|
38
|
-
```markdown
|
|
39
|
-
### 学習指導要領との関連
|
|
40
|
-
|
|
41
|
-
**参照箇所**: {学校種}学習指導要領 第{章}章 第{節}節 {教科} {学年}
|
|
42
|
-
**評価の観点**: 知識・技能 / 思考・判断・表現 / 主体的に学習に取り組む態度
|
|
43
|
-
**目標との対応**: {評価項目が学習指導要領のどの目標に対応するか}
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
## 対応する評価タイプ
|
|
47
|
-
|
|
48
|
-
| タイプ | 説明 | 適した場面 |
|
|
49
|
-
|--------|------|-----------|
|
|
50
|
-
| `rubric` | ルーブリック評価 | パフォーマンス評価、作品評価 |
|
|
51
|
-
| `test` | テスト問題 | 知識・理解の確認 |
|
|
52
|
-
| `formative` | 形成的評価 | 学習途中の確認・指導改善 |
|
|
53
|
-
|
|
54
|
-
## 出力構造
|
|
55
|
-
|
|
56
|
-
### ルーブリック(rubric)
|
|
57
|
-
|
|
58
|
-
```markdown
|
|
59
|
-
# {単元名/課題名} ルーブリック
|
|
60
|
-
|
|
61
|
-
## 評価対象
|
|
62
|
-
- **課題**: {課題の説明}
|
|
63
|
-
- **対象学年**: {学年}
|
|
64
|
-
- **教科**: {教科}
|
|
65
|
-
|
|
66
|
-
## 評価観点と基準
|
|
67
|
-
|
|
68
|
-
### 観点1: {観点名}(配点: {点}点)
|
|
69
|
-
|
|
70
|
-
| レベル | 点数 | 基準 | 具体例 |
|
|
71
|
-
|--------|------|------|--------|
|
|
72
|
-
| 4 (秀逸) | {点} | {レベル4の基準} | {具体的な例} |
|
|
73
|
-
| 3 (達成) | {点} | {レベル3の基準} | {具体的な例} |
|
|
74
|
-
| 2 (発展途上) | {点} | {レベル2の基準} | {具体的な例} |
|
|
75
|
-
| 1 (要改善) | {点} | {レベル1の基準} | {具体的な例} |
|
|
76
|
-
|
|
77
|
-
### 観点2: {観点名}(配点: {点}点)
|
|
78
|
-
|
|
79
|
-
| レベル | 点数 | 基準 | 具体例 |
|
|
80
|
-
|--------|------|------|--------|
|
|
81
|
-
| 4 (秀逸) | {点} | {レベル4の基準} | {具体的な例} |
|
|
82
|
-
| 3 (達成) | {点} | {レベル3の基準} | {具体的な例} |
|
|
83
|
-
| 2 (発展途上) | {点} | {レベル2の基準} | {具体的な例} |
|
|
84
|
-
| 1 (要改善) | {点} | {レベル1の基準} | {具体的な例} |
|
|
85
|
-
|
|
86
|
-
{観点3以降も同様}
|
|
87
|
-
|
|
88
|
-
---
|
|
89
|
-
|
|
90
|
-
## 総合評価
|
|
91
|
-
|
|
92
|
-
| 評定 | 合計点 | 説明 |
|
|
93
|
-
|------|--------|------|
|
|
94
|
-
| A | {点}点以上 | 優秀な達成 |
|
|
95
|
-
| B | {点}〜{点}点 | 目標達成 |
|
|
96
|
-
| C | {点}〜{点}点 | おおむね達成 |
|
|
97
|
-
| D | {点}点未満 | 要改善 |
|
|
98
|
-
|
|
99
|
-
---
|
|
100
|
-
|
|
101
|
-
## 使用上の注意
|
|
102
|
-
- {評価時の注意点1}
|
|
103
|
-
- {評価時の注意点2}
|
|
104
|
-
|
|
105
|
-
---
|
|
106
|
-
|
|
107
|
-
## 参照した教育理論
|
|
108
|
-
- **Constructive Alignment**: 学習目標と評価の整合性を確保
|
|
109
|
-
- **Bloom's Taxonomy**: 認知レベルに応じた評価基準設定
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
### テスト問題(test)
|
|
113
|
-
|
|
114
|
-
```markdown
|
|
115
|
-
# {単元名} テスト
|
|
116
|
-
|
|
117
|
-
**学年**: {学年} | **教科**: {教科}
|
|
118
|
-
**制限時間**: {時間}分 | **配点**: {点}点満点
|
|
119
|
-
|
|
120
|
-
---
|
|
121
|
-
|
|
122
|
-
## 出題方針
|
|
123
|
-
- **評価目的**: {形成的/総括的}
|
|
124
|
-
- **認知レベル分布**:
|
|
125
|
-
- 記憶・理解: {割合}%({点}点)
|
|
126
|
-
- 応用・分析: {割合}%({点}点)
|
|
127
|
-
- 評価・創造: {割合}%({点}点)
|
|
128
|
-
|
|
129
|
-
---
|
|
130
|
-
|
|
131
|
-
## Part 1: 基礎知識({点}点)
|
|
132
|
-
|
|
133
|
-
### 問1. {記憶レベル}({点}点)
|
|
134
|
-
{問題文}
|
|
135
|
-
|
|
136
|
-
【Bloom's Level: Remember】
|
|
137
|
-
|
|
138
|
-
### 問2. {理解レベル}({点}点)
|
|
139
|
-
{問題文}
|
|
140
|
-
|
|
141
|
-
【Bloom's Level: Understand】
|
|
142
|
-
|
|
143
1
|
---
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
### 問4. {分析レベル}({点}点)
|
|
153
|
-
{問題文}
|
|
154
|
-
|
|
155
|
-
【Bloom's Level: Analyze】
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
## Part 3: 発展問題({点}点)
|
|
160
|
-
|
|
161
|
-
### 問5. {評価/創造レベル}({点}点)
|
|
162
|
-
{問題文}
|
|
163
|
-
|
|
164
|
-
【Bloom's Level: Evaluate/Create】
|
|
165
|
-
|
|
166
|
-
---
|
|
167
|
-
|
|
168
|
-
## 解答・採点基準(教師用)
|
|
169
|
-
|
|
170
|
-
### 問1 解答
|
|
171
|
-
- **正解**: {解答}
|
|
172
|
-
- **配点**: {点}点
|
|
173
|
-
- **部分点**: {部分点の基準}
|
|
174
|
-
|
|
175
|
-
### 問2 解答
|
|
176
|
-
...
|
|
177
|
-
|
|
178
|
-
---
|
|
179
|
-
|
|
180
|
-
## 構成的整合性チェック
|
|
181
|
-
|
|
182
|
-
| 問題 | 対応する学習目標 | 認知レベル |
|
|
183
|
-
|------|-----------------|-----------|
|
|
184
|
-
| 問1 | {目標} | 記憶 |
|
|
185
|
-
| 問2 | {目標} | 理解 |
|
|
186
|
-
| 問3 | {目標} | 応用 |
|
|
187
|
-
| 問4 | {目標} | 分析 |
|
|
188
|
-
| 問5 | {目標} | 評価/創造 |
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
### 形成的評価(formative)
|
|
192
|
-
|
|
193
|
-
```markdown
|
|
194
|
-
# {単元名} 形成的評価ツール
|
|
195
|
-
|
|
196
|
-
## 評価の目的
|
|
197
|
-
{この形成的評価で確認したいこと}
|
|
198
|
-
|
|
199
|
-
## 評価のタイミング
|
|
200
|
-
- **授業内**: {どの場面で使用するか}
|
|
201
|
-
- **頻度**: {毎回/週1回/単元ごと等}
|
|
202
|
-
|
|
203
|
-
---
|
|
204
|
-
|
|
205
|
-
## ツール1: Exit Ticket(授業終了時確認)
|
|
206
|
-
|
|
207
|
-
### 質問
|
|
208
|
-
1. 今日学んだことで一番大切なことは?
|
|
209
|
-
2. まだよくわからないことは?
|
|
210
|
-
3. 自己評価(1-5): ___
|
|
211
|
-
|
|
212
|
-
### 教師用チェックリスト
|
|
213
|
-
- [ ] 80%以上の生徒が主要概念を理解している
|
|
214
|
-
- [ ] 躓きポイントを特定できた
|
|
215
|
-
- [ ] 次回の指導に活かせる情報を得た
|
|
216
|
-
|
|
217
|
-
---
|
|
218
|
-
|
|
219
|
-
## ツール2: クイック確認問題
|
|
220
|
-
|
|
221
|
-
{授業中に使える短い確認問題3-5問}
|
|
222
|
-
|
|
223
|
-
### 判定基準
|
|
224
|
-
- 全問正解: 理解十分、発展課題へ
|
|
225
|
-
- 2-3問正解: 補足説明後、再確認
|
|
226
|
-
- 1問以下: 個別フォローが必要
|
|
227
|
-
|
|
228
|
-
---
|
|
229
|
-
|
|
230
|
-
## ツール3: 観察チェックリスト
|
|
231
|
-
|
|
232
|
-
| 観点 | A | B | C | 備考 |
|
|
233
|
-
|------|---|---|---|------|
|
|
234
|
-
| 課題への取り組み | | | | |
|
|
235
|
-
| グループでの協力 | | | | |
|
|
236
|
-
| 質問・発言 | | | | |
|
|
237
|
-
| ノート・記録 | | | | |
|
|
238
|
-
|
|
239
|
-
---
|
|
240
|
-
|
|
241
|
-
## ツール4: 自己評価シート
|
|
242
|
-
|
|
243
|
-
### 学習者用
|
|
244
|
-
今日の学習を振り返りましょう。
|
|
245
|
-
|
|
246
|
-
| 項目 | ⭐⭐⭐⭐⭐ |
|
|
247
|
-
|------|---------|
|
|
248
|
-
| 学習目標の達成度 | ○○○○○ |
|
|
249
|
-
| 授業への参加度 | ○○○○○ |
|
|
250
|
-
| 理解度 | ○○○○○ |
|
|
251
|
-
|
|
252
|
-
**今日の感想**:
|
|
253
|
-
_______________________
|
|
254
|
-
|
|
2
|
+
name: assessment
|
|
3
|
+
description: >
|
|
4
|
+
Design assessments such as rubrics, tests, and formative checks aligned to
|
|
5
|
+
learning goals and curriculum standards. Use when the user asks for a rubric,
|
|
6
|
+
test, quiz scoring guide, checklist, or assessment criteria.
|
|
7
|
+
metadata:
|
|
8
|
+
author: nahisaho
|
|
9
|
+
version: "0.5.0"
|
|
255
10
|
---
|
|
256
11
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
### 即時フィードバック
|
|
260
|
-
- 正解/不正解だけでなく「なぜ」を説明
|
|
261
|
-
- 誤答パターンを分析して共有
|
|
262
|
-
|
|
263
|
-
### 指導への活用
|
|
264
|
-
- {どのように次の指導に活かすか}
|
|
265
|
-
|
|
266
|
-
---
|
|
267
|
-
|
|
268
|
-
## 参照した教育理論
|
|
269
|
-
- **Formative Assessment (Black & Wiliam)**: 学習のための評価
|
|
270
|
-
- **Feedback Loops**: 継続的な改善サイクル
|
|
271
|
-
```
|
|
272
|
-
|
|
273
|
-
## 構成的整合性(Constructive Alignment)
|
|
274
|
-
|
|
275
|
-
John Biggs の構成的整合性理論に基づき、以下を確認:
|
|
276
|
-
|
|
277
|
-
```
|
|
278
|
-
学習目標 ←→ 指導活動 ←→ 評価
|
|
279
|
-
```
|
|
12
|
+
# Assessment
|
|
280
13
|
|
|
281
|
-
|
|
14
|
+
目標整合性を優先して、評価ツールを作成する。
|
|
282
15
|
|
|
283
|
-
|
|
284
|
-
- [ ] 目標の認知レベルと評価の難易度が一致している
|
|
285
|
-
- [ ] 指導活動で練習した内容が評価される
|
|
286
|
-
- [ ] 評価基準が明確で、生徒にも共有可能
|
|
16
|
+
## Use This Prompt When
|
|
287
17
|
|
|
288
|
-
|
|
18
|
+
- ルーブリック、単元テスト、形成的評価ツールを作るとき。
|
|
19
|
+
- 学習目標を評価可能な観点へ分解したいとき。
|
|
20
|
+
- 授業計画や教材と整合した採点基準が必要なとき。
|
|
289
21
|
|
|
290
|
-
|
|
291
|
-
|-----------|--------|--------|
|
|
292
|
-
| 目標は「応用」だが、テストは「記憶」のみ | 認知レベルの不一致 | 応用問題を追加 |
|
|
293
|
-
| 授業で扱っていない内容がテストに出題 | 指導と評価の不一致 | 出題範囲を調整 |
|
|
294
|
-
| ルーブリック基準が曖昧 | 評価の信頼性低下 | 具体例を追加 |
|
|
22
|
+
## Required Inputs
|
|
295
23
|
|
|
296
|
-
|
|
24
|
+
- 学年、教科、単元。
|
|
25
|
+
- 評価タイプ。
|
|
26
|
+
- 学習目標または評価したい能力。
|
|
297
27
|
|
|
298
|
-
|
|
28
|
+
## Workflow
|
|
299
29
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
| 評価 | 批評、判断、正当化 | 評価せよ、判断せよ |
|
|
307
|
-
| 創造 | 新しいものの創出、設計 | 設計せよ、提案せよ |
|
|
30
|
+
1. 条件不足があればmeta-promptを使って補完する。
|
|
31
|
+
2. 小中高が対象ならreferences/common-curriculum.mdを読み、観点別評価との対応を確認する。
|
|
32
|
+
3. references/common-theory-selection.mdを読み、Constructive AlignmentとBloom's Taxonomyを中心に評価設計する。
|
|
33
|
+
4. assets/assessment-template.mdを再利用し、評価タイプ別の出力へ落とし込む。
|
|
34
|
+
5. 問題や観点ごとに、どの学習目標へ対応するか明示する。
|
|
35
|
+
6. プロセス全体(指導要領参照結果、認知レベル分析、設計判断)を表示し、成果物とともにファイルへ保存する。
|
|
308
36
|
|
|
309
|
-
##
|
|
37
|
+
## Conditional References
|
|
310
38
|
|
|
311
|
-
|
|
39
|
+
- Read references/common-curriculum.md when the target is Japanese K-12 education.
|
|
40
|
+
- Read references/common-theory-selection.md when choosing evaluation theories or cognitive levels.
|
|
41
|
+
- Reuse assets/assessment-template.md when drafting the final output.
|
|
312
42
|
|
|
313
|
-
|
|
43
|
+
## Deliverables
|
|
314
44
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
45
|
+
- 評価ツール本体。
|
|
46
|
+
- 配点または観点別基準。
|
|
47
|
+
- 学習指導要領との関連。
|
|
48
|
+
- 目標との対応表。
|
|
49
|
+
- プロセスログ(指導要領参照結果、理論比較、観点設計の根拠)。
|
|
319
50
|
|
|
320
|
-
|
|
321
|
-
npx shiden theories get constructive_alignment
|
|
322
|
-
npx shiden theories get blooms_taxonomy
|
|
323
|
-
npx shiden theories get formative_assessment
|
|
51
|
+
## Quality Gates
|
|
324
52
|
|
|
325
|
-
|
|
326
|
-
|
|
53
|
+
- [ ] すべての観点または設問が学習目標へ対応づいている。
|
|
54
|
+
- [ ] 評価タイプに応じた採点方法または判定基準が明示されている。
|
|
55
|
+
- [ ] 小中高では観点別評価との関係が示されている。
|
|
56
|
+
- [ ] 難易度配分や配点が依頼条件を満たしている。
|
|
57
|
+
- [ ] プロセスが表示され、ファイルに保存されている。
|
|
327
58
|
|
|
328
|
-
|
|
329
|
-
npx shiden theories categories
|
|
330
|
-
npx shiden theories list --category "評価"
|
|
331
|
-
```
|
|
59
|
+
## Data Handling & Safety
|
|
332
60
|
|
|
333
|
-
|
|
61
|
+
- 個人成績や実在生徒の評価履歴は不要なら含めない。
|
|
62
|
+
- ラベルづけを助長する表現は避け、行動基準で記述する。
|
|
63
|
+
- 高リスク判断を伴う評価は、教師の最終判断が必要だと明示する。
|
|
334
64
|
|
|
335
|
-
|
|
336
|
-
|--------|--------|------|
|
|
337
|
-
| `constructive_alignment` | 構成的整合性 | 目標・指導・評価の一貫性 |
|
|
338
|
-
| `blooms_taxonomy` | Bloom's Taxonomy | 認知レベル別の問題設計 |
|
|
339
|
-
| `formative_assessment` | 形成的評価 | 学習過程のフィードバック |
|
|
65
|
+
## Gotchas
|
|
340
66
|
|
|
341
|
-
|
|
67
|
+
- 目標不在のまま評価だけ作ると、見た目は整っても測りたい能力がぶれる。
|
|
68
|
+
- ルーブリックは形容詞だけで段階差を作ると採点者間のぶれが大きくなる。
|
|
69
|
+
- テスト問題は難易度比率だけでなく、認知レベル分布も見ないと単調になりやすい。
|
|
342
70
|
|
|
343
|
-
|
|
71
|
+
## Validation Loop
|
|
344
72
|
|
|
345
|
-
|
|
346
|
-
|
|
73
|
+
1. 評価案を生成する。
|
|
74
|
+
2. 確認する。
|
|
75
|
+
- 目標と観点の対応が明示されているか。
|
|
76
|
+
- 評価方法が再現可能か。
|
|
77
|
+
- 指導要領参照が必要な対象で漏れがないか。
|
|
78
|
+
3. 不合格なら、観点定義・設問構成・配点を修正して再生成する。
|
|
79
|
+
4. 採点者がそのまま使える状態になったら完了とする。
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Assessment Template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
## 評価ツール
|
|
5
|
+
|
|
6
|
+
### 基本情報
|
|
7
|
+
- 評価タイプ: {assessment_type}
|
|
8
|
+
- 対象: {grade_subject_topic}
|
|
9
|
+
- 目的: {assessment_purpose}
|
|
10
|
+
|
|
11
|
+
### 評価本体
|
|
12
|
+
{assessment_body}
|
|
13
|
+
|
|
14
|
+
### 学習目標との対応
|
|
15
|
+
| 項目 | 対応する目標 | 認知レベル |
|
|
16
|
+
|------|--------------|------------|
|
|
17
|
+
| {item_1} | {goal_1} | {level_1} |
|
|
18
|
+
|
|
19
|
+
### 学習指導要領との関連
|
|
20
|
+
{curriculum_alignment}
|
|
21
|
+
|
|
22
|
+
### 参照した教育理論
|
|
23
|
+
- {theory_1}: {reason_1}
|
|
24
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Feedback Template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
## フィードバック
|
|
5
|
+
|
|
6
|
+
### 良い点
|
|
7
|
+
- {strength_1}
|
|
8
|
+
- {strength_2}
|
|
9
|
+
|
|
10
|
+
### 改善点
|
|
11
|
+
- {growth_point_1}
|
|
12
|
+
- {growth_point_2}
|
|
13
|
+
|
|
14
|
+
### 次の一歩
|
|
15
|
+
1. {next_action_1}
|
|
16
|
+
2. {next_action_2}
|
|
17
|
+
|
|
18
|
+
### 振り返りの問い
|
|
19
|
+
- {reflection_question_1}
|
|
20
|
+
- {reflection_question_2}
|
|
21
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Guidance Template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
## 生活指導案
|
|
5
|
+
|
|
6
|
+
### 状況分析
|
|
7
|
+
- 事象: {situation_summary}
|
|
8
|
+
- 緊急度: {urgency}
|
|
9
|
+
- 関係者: {stakeholders}
|
|
10
|
+
|
|
11
|
+
### 対応計画
|
|
12
|
+
1. 初期対応: {initial_response}
|
|
13
|
+
2. 継続支援: {ongoing_support}
|
|
14
|
+
3. フォローアップ: {follow_up}
|
|
15
|
+
|
|
16
|
+
### 連携
|
|
17
|
+
- 校内: {internal_support}
|
|
18
|
+
- 保護者: {parent_contact}
|
|
19
|
+
- 校外: {external_support}
|
|
20
|
+
|
|
21
|
+
### 注意事項
|
|
22
|
+
{safety_notice}
|
|
23
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Individual Support Template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
## 個別指導計画
|
|
5
|
+
|
|
6
|
+
### 現状分析
|
|
7
|
+
- 強み: {strengths}
|
|
8
|
+
- 課題: {barriers}
|
|
9
|
+
- 配慮事項: {considerations}
|
|
10
|
+
|
|
11
|
+
### 指導目標
|
|
12
|
+
- 短期: {short_term_goal}
|
|
13
|
+
- 長期: {long_term_goal}
|
|
14
|
+
|
|
15
|
+
### 支援戦略
|
|
16
|
+
1. {strategy_1}
|
|
17
|
+
2. {strategy_2}
|
|
18
|
+
3. {strategy_3}
|
|
19
|
+
|
|
20
|
+
### 進捗モニタリング
|
|
21
|
+
- 指標: {monitoring_metric}
|
|
22
|
+
- 頻度: {monitoring_frequency}
|
|
23
|
+
- 見直し条件: {review_trigger}
|
|
24
|
+
|
|
25
|
+
### 専門家連携
|
|
26
|
+
{specialist_collaboration}
|
|
27
|
+
```
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Lesson Plan Template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
## 授業計画
|
|
5
|
+
|
|
6
|
+
### 基本情報
|
|
7
|
+
| 項目 | 内容 |
|
|
8
|
+
|------|------|
|
|
9
|
+
| 対象学年 | {grade} |
|
|
10
|
+
| 教科 | {subject} |
|
|
11
|
+
| 単元名 | {topic} |
|
|
12
|
+
| 授業時間 | {duration}分 |
|
|
13
|
+
|
|
14
|
+
### 学習目標
|
|
15
|
+
- 主目標: {primary_goal}
|
|
16
|
+
- 認知レベル: {blooms_level}
|
|
17
|
+
- 評価指標: {success_indicator}
|
|
18
|
+
|
|
19
|
+
### 授業展開
|
|
20
|
+
| フェーズ | 時間 | 学習活動 | 指導上の留意点 | 評価 |
|
|
21
|
+
|---------|------|----------|----------------|------|
|
|
22
|
+
| 導入 | {intro_min} | {intro_activity} | {intro_note} | {intro_assessment} |
|
|
23
|
+
| 展開 | {main_min} | {main_activity} | {main_note} | {main_assessment} |
|
|
24
|
+
| まとめ | {wrap_min} | {wrap_activity} | {wrap_note} | {wrap_assessment} |
|
|
25
|
+
|
|
26
|
+
### 学習指導要領との関連
|
|
27
|
+
{curriculum_alignment}
|
|
28
|
+
|
|
29
|
+
### 参照した教育理論
|
|
30
|
+
- {theory_1}: {reason_1}
|
|
31
|
+
- {theory_2}: {reason_2}
|
|
32
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Materials Template
|
|
2
|
+
|
|
3
|
+
```markdown
|
|
4
|
+
## 教材
|
|
5
|
+
|
|
6
|
+
### 基本情報
|
|
7
|
+
- 形式: {format}
|
|
8
|
+
- 対象: {grade_subject_topic}
|
|
9
|
+
- 目的: {purpose}
|
|
10
|
+
|
|
11
|
+
### 本体
|
|
12
|
+
{material_body}
|
|
13
|
+
|
|
14
|
+
### 指導上の使い方
|
|
15
|
+
- 使用場面: {usage_phase}
|
|
16
|
+
- 所要時間: {usage_time}
|
|
17
|
+
- 配慮事項: {considerations}
|
|
18
|
+
|
|
19
|
+
### 学習指導要領との関連
|
|
20
|
+
{curriculum_alignment}
|
|
21
|
+
|
|
22
|
+
### 参照した教育理論
|
|
23
|
+
- {theory_1}: {reason_1}
|
|
24
|
+
```
|