-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathregistry.json
More file actions
5497 lines (5497 loc) · 201 KB
/
Copy pathregistry.json
File metadata and controls
5497 lines (5497 loc) · 201 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "2.0",
"generated": "2026-08-10T12:45:42.238213+00:00",
"standard": "agent-skills-1.0",
"total_skills": 165,
"domains": [
{
"id": "ai-learning-science",
"label": "AI & Learning Science",
"skill_count": 14
},
{
"id": "ai-literacy",
"label": "AI Literacy",
"skill_count": 7
},
{
"id": "curriculum-alignment",
"label": "Curriculum Alignment",
"skill_count": 4
},
{
"id": "curriculum-assessment",
"label": "Curriculum & Assessment",
"skill_count": 13
},
{
"id": "eal-language-development",
"label": "EAL & Language Development",
"skill_count": 5
},
{
"id": "environmental-experiential-learning",
"label": "Environmental & Experiential Learning",
"skill_count": 6
},
{
"id": "explicit-instruction",
"label": "Explicit Instruction",
"skill_count": 5
},
{
"id": "global-cross-cultural-pedagogies",
"label": "Global & Cross-Cultural Pedagogies",
"skill_count": 9
},
{
"id": "historical-thinking",
"label": "Historical Thinking",
"skill_count": 10
},
{
"id": "inclusive-design",
"label": "Inclusive Design",
"skill_count": 3
},
{
"id": "literacy-critical-thinking",
"label": "Literacy & Critical Thinking",
"skill_count": 7
},
{
"id": "memory-learning-science",
"label": "Memory & Learning Science",
"skill_count": 8
},
{
"id": "montessori-alternative-approaches",
"label": "Montessori & Alternative Approaches",
"skill_count": 4
},
{
"id": "original-frameworks",
"label": "Original Frameworks",
"skill_count": 17
},
{
"id": "professional-learning",
"label": "Professional Learning",
"skill_count": 10
},
{
"id": "questioning-discussion",
"label": "Questioning & Discussion",
"skill_count": 5
},
{
"id": "self-regulated-learning",
"label": "Self-Regulated Learning",
"skill_count": 5
},
{
"id": "student-learning",
"label": "Student-Facing Learning Skills",
"skill_count": 13
},
{
"id": "systems-thinking",
"label": "Systems Thinking",
"skill_count": 8
},
{
"id": "wellbeing-motivation-agency",
"label": "Wellbeing, Motivation & Agency",
"skill_count": 12
}
],
"skills": [
{
"id": "ai-learning-science/adaptive-hint-sequence-designer",
"name": "adaptive-hint-sequence-designer",
"display_name": "Adaptive Hint Sequence Designer",
"domain": "ai-learning-science",
"description": "Generate a cascading hint sequence for a problem type, revealing progressively without giving answers. Use when designing tutoring dialogues or scaffolded worksheets.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"hints",
"scaffolding",
"ITS",
"VanLehn",
"Aleven",
"adaptive",
"tutoring",
"cognitive-tutor"
],
"teacher_time": "4 minutes",
"chains_with": [
"intelligent-tutoring-dialogue-designer",
"productive-failure-desirable-difficulty-designer",
"worked-example-fading-designer",
"formative-assessment-loop-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/adaptive-hint-sequence-designer/SKILL.md"
},
{
"id": "ai-learning-science/ai-facilitated-collaborative-learning-designer",
"name": "ai-facilitated-collaborative-learning-designer",
"display_name": "AI-Facilitated Collaborative Learning Designer",
"domain": "ai-learning-science",
"description": "Design AI-supported collaborative tasks that structure group interaction and address participation problems. Use when students struggle to collaborate effectively on group tasks.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"collaboration",
"CSCL",
"Dillenbourg",
"J\u00e4rvel\u00e4",
"cooperative-learning",
"Slavin",
"group-work",
"AI-facilitation",
"regulation"
],
"teacher_time": "5 minutes",
"chains_with": [
"intelligent-tutoring-dialogue-designer",
"ai-feedback-design-principles",
"metacognitive-monitoring-ai-contexts"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/ai-facilitated-collaborative-learning-designer/SKILL.md"
},
{
"id": "ai-learning-science/ai-feedback-design-principles",
"name": "ai-feedback-design-principles",
"display_name": "AI Feedback Design Principles",
"domain": "ai-learning-science",
"description": "Audit and redesign AI-generated feedback for pedagogical quality, timing, and learning impact. Use when building or reviewing automated feedback in digital learning tools.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"feedback",
"AI-feedback",
"formative",
"Shute",
"Narciss",
"Hattie",
"LLM",
"automated-feedback"
],
"teacher_time": "4 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"formative-assessment-loop-designer",
"intelligent-tutoring-dialogue-designer",
"self-explanation-prompt-designer",
"technological-pedagogical-content-knowledge-developer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/ai-feedback-design-principles/SKILL.md"
},
{
"id": "ai-learning-science/cognitive-tutoring-architecture-designer",
"name": "cognitive-tutoring-architecture-designer",
"display_name": "Cognitive Tutoring Architecture Designer",
"domain": "ai-learning-science",
"description": "Map knowledge components and skill hierarchies for a cognitive tutoring system or adaptive learning platform. Use when designing intelligent tutoring software or skill-based mastery systems.",
"disable_model_invocation": true,
"evidence_strength": "strong",
"tags": [
"cognitive-tutor",
"ACT-R",
"Anderson",
"knowledge-tracing",
"Corbett",
"mastery",
"ITS",
"adaptive"
],
"teacher_time": "6 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"intelligent-tutoring-dialogue-designer",
"formative-assessment-loop-designer",
"worked-example-to-problem-solving-transition-designer",
"technological-pedagogical-content-knowledge-developer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/cognitive-tutoring-architecture-designer/SKILL.md"
},
{
"id": "ai-learning-science/digital-worked-example-sequence",
"name": "digital-worked-example-sequence",
"display_name": "Digital Worked Example Sequence",
"domain": "ai-learning-science",
"description": "Create an interactive digital worked example sequence with fading for online or blended delivery. Use when building e-learning modules, LMS content, or app-based instruction.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"worked-examples",
"fading",
"digital-learning",
"CLT",
"Sweller",
"Renkl",
"self-explanation",
"multimedia"
],
"teacher_time": "4 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"erroneous-example-designer",
"worked-example-to-problem-solving-transition-designer",
"cognitive-load-analyser"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/digital-worked-example-sequence/SKILL.md"
},
{
"id": "ai-learning-science/erroneous-example-designer",
"name": "erroneous-example-designer",
"display_name": "Erroneous Example Designer",
"domain": "ai-learning-science",
"description": "Design deliberately flawed examples that develop error-detection skills and deepen understanding. Use when students make characteristic errors and need practice spotting mistakes.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"erroneous-examples",
"McLaren",
"error-detection",
"worked-examples",
"misconceptions",
"self-explanation"
],
"teacher_time": "3 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"worked-example-fading-designer",
"self-explanation-prompt-designer",
"diagnostic-question-generator"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/erroneous-example-designer/SKILL.md"
},
{
"id": "ai-learning-science/formative-assessment-loop-designer",
"name": "formative-assessment-loop-designer",
"display_name": "Formative Assessment Loop Designer for AI Systems",
"domain": "ai-learning-science",
"description": "Design an adaptive assessment loop where each student response triggers the next instructional move. Use when building technology-enhanced formative assessment cycles.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"formative-assessment",
"Black-Wiliam",
"assessment-loop",
"adaptive",
"feedback",
"VanLehn",
"inner-loop",
"outer-loop"
],
"teacher_time": "5 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"ai-feedback-design-principles",
"learning-analytics-interpretation-guide",
"cognitive-tutoring-architecture-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/formative-assessment-loop-designer/SKILL.md"
},
{
"id": "ai-learning-science/individual-spacing-algorithm-explainer",
"name": "individual-spacing-algorithm-explainer",
"display_name": "Individual Spacing Algorithm Explainer",
"domain": "ai-learning-science",
"description": "Explain and configure individual spacing algorithms using student performance data and forgetting curves. Use when personalising retention schedules in adaptive learning platforms.",
"disable_model_invocation": true,
"evidence_strength": "strong",
"tags": [
"spacing",
"spaced-repetition",
"forgetting-curve",
"Ebbinghaus",
"Lindsey",
"Duolingo",
"retention",
"memory",
"algorithm"
],
"teacher_time": "5 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"formative-assessment-loop-designer",
"retrieval-practice-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/individual-spacing-algorithm-explainer/SKILL.md"
},
{
"id": "ai-learning-science/intelligent-tutoring-dialogue-designer",
"name": "intelligent-tutoring-dialogue-designer",
"display_name": "Intelligent Tutoring Dialogue Designer",
"domain": "ai-learning-science",
"description": "Script a multi-turn tutoring dialogue with branching responses for anticipated student difficulties. Use when designing AI tutors, chatbot interactions, or structured one-to-one support scripts.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"tutoring",
"dialogue",
"ITS",
"VanLehn",
"AutoTutor",
"Graesser",
"Chi",
"ICAP",
"mixed-initiative"
],
"teacher_time": "5 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"self-explanation-prompt-designer",
"ai-feedback-design-principles",
"cognitive-tutoring-architecture-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/intelligent-tutoring-dialogue-designer/SKILL.md"
},
{
"id": "ai-learning-science/learning-analytics-interpretation-guide",
"name": "learning-analytics-interpretation-guide",
"display_name": "Learning Analytics Interpretation Guide",
"domain": "ai-learning-science",
"description": "Interpret learning analytics data and translate dashboard findings into actionable teaching decisions. Use when reviewing LMS data, quiz patterns, or engagement metrics.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"analytics",
"data",
"formative",
"Siemens",
"Wiliam",
"data-literacy",
"assessment",
"interpretation"
],
"teacher_time": "5 minutes",
"chains_with": [
"formative-assessment-loop-designer",
"ai-feedback-design-principles",
"retrieval-practice-designer",
"diagnostic-question-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/learning-analytics-interpretation-guide/SKILL.md"
},
{
"id": "ai-learning-science/metacognitive-monitoring-ai-contexts",
"name": "metacognitive-monitoring-ai-contexts",
"display_name": "Metacognitive Monitoring in AI Contexts",
"domain": "ai-learning-science",
"description": "Design metacognitive checkpoints that prevent AI-assisted learning from bypassing genuine understanding. Use when students use AI tools and may overestimate their own comprehension.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"metacognition",
"self-regulation",
"Dunning-Kruger",
"overconfidence",
"AI-literacy",
"Winne",
"Thiede",
"calibration"
],
"teacher_time": "4 minutes",
"chains_with": [
"self-explanation-prompt-designer",
"ai-feedback-design-principles",
"productive-failure-desirable-difficulty-designer",
"formative-assessment-loop-designer",
"ai-learning-boundary-mapper",
"ai-output-critical-audit-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/metacognitive-monitoring-ai-contexts/SKILL.md"
},
{
"id": "ai-learning-science/productive-failure-desirable-difficulty-designer",
"name": "productive-failure-desirable-difficulty-designer",
"display_name": "Productive Failure & Desirable Difficulty Designer",
"domain": "ai-learning-science",
"description": "Redesign a direct instruction sequence to include productive struggle before the explanation phase. Use when teaching concepts that benefit from failure-first approaches.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"productive-failure",
"desirable-difficulty",
"Kapur",
"Bjork",
"struggle",
"generation",
"consolidation",
"cognitive-offloading"
],
"teacher_time": "5 minutes",
"chains_with": [
"adaptive-hint-sequence-designer",
"worked-example-to-problem-solving-transition-designer",
"self-explanation-prompt-designer",
"intelligent-tutoring-dialogue-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/productive-failure-desirable-difficulty-designer/SKILL.md"
},
{
"id": "ai-learning-science/self-explanation-prompt-designer",
"name": "self-explanation-prompt-designer",
"display_name": "Self-Explanation Prompt Designer",
"domain": "ai-learning-science",
"description": "Create self-explanation prompts that deepen understanding of worked examples, texts, or diagrams. Use when students read material passively without engaging with underlying principles.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"self-explanation",
"Chi",
"metacognition",
"worked-examples",
"comprehension",
"deep-learning",
"generation"
],
"teacher_time": "4 minutes",
"chains_with": [
"digital-worked-example-sequence",
"adaptive-hint-sequence-designer",
"intelligent-tutoring-dialogue-designer",
"metacognitive-monitoring-ai-contexts"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/self-explanation-prompt-designer/SKILL.md"
},
{
"id": "ai-learning-science/worked-example-to-problem-solving-transition-designer",
"name": "worked-example-to-problem-solving-transition-designer",
"display_name": "Worked Example to Problem Solving Transition Designer",
"domain": "ai-learning-science",
"description": "Design the transition from worked examples to independent problem-solving using expertise-reversal principles. Use when students follow examples but cannot solve problems alone.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"expertise-reversal",
"Kalyuga",
"fading",
"worked-examples",
"Renkl",
"transition",
"scaffolding",
"cognitive-load"
],
"teacher_time": "5 minutes",
"chains_with": [
"digital-worked-example-sequence",
"adaptive-hint-sequence-designer",
"cognitive-tutoring-architecture-designer",
"productive-failure-desirable-difficulty-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-learning-science/worked-example-to-problem-solving-transition-designer/SKILL.md"
},
{
"id": "ai-literacy/ai-expertise-interrogation-designer",
"name": "ai-expertise-interrogation-designer",
"display_name": "AI Expertise Interrogation Designer",
"domain": "ai-literacy",
"description": "Design a Funhouse Mirror activity where students use their own domain expertise to detect AI distortions, omissions, and overconfidence. Use when students know a subject well enough to evaluate AI claims about it.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"AI-literacy",
"expertise",
"distortion",
"Funhouse-Mirror",
"metacognition",
"Dunning-Kruger",
"domain-knowledge"
],
"teacher_time": "4 minutes",
"chains_with": [
"metacognitive-monitoring-ai-contexts",
"ai-output-critical-audit-designer",
"pedagogical-content-knowledge-developer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/ai-expertise-interrogation-designer/SKILL.md"
},
{
"id": "ai-literacy/ai-hallucination-fact-check-protocol",
"name": "ai-hallucination-fact-check-protocol",
"display_name": "AI Hallucination Fact-Check Protocol",
"domain": "ai-literacy",
"description": "Design a fact-checking protocol for AI-generated text, extending SIFT with AI-specific adaptations for hallucination detection. Use when students need to verify AI claims and citations.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"AI-literacy",
"hallucination",
"fact-checking",
"SIFT",
"lateral-reading",
"AI-citations",
"verification"
],
"teacher_time": "4 minutes",
"chains_with": [
"source-credibility-evaluation-protocol",
"ai-output-critical-audit-designer",
"media-literacy-deconstruction-protocol"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/ai-hallucination-fact-check-protocol/SKILL.md"
},
{
"id": "ai-literacy/ai-learning-boundary-mapper",
"name": "ai-learning-boundary-mapper",
"display_name": "AI Learning Boundary Mapper",
"domain": "ai-literacy",
"description": "Map which elements of an assignment benefit from AI assistance vs. which AI use undermines. Use when redesigning tasks for AI-age classrooms or setting defensible AI use policies for specific assignments.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"AI-literacy",
"assignment-design",
"AI-policy",
"backward-design",
"tool-selection",
"learning-objectives",
"AI-boundaries"
],
"teacher_time": "5 minutes",
"chains_with": [
"metacognitive-monitoring-ai-contexts",
"backwards-design-unit-planner",
"assessment-validity-checker"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/ai-learning-boundary-mapper/SKILL.md"
},
{
"id": "ai-literacy/ai-output-critical-audit-designer",
"name": "ai-output-critical-audit-designer",
"display_name": "AI Output Critical Audit Designer",
"domain": "ai-literacy",
"description": "Design a structured protocol for auditing AI-generated text against Ennis's six CT standards. Use when students need to critically evaluate AI output in any subject.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"AI-literacy",
"critical-thinking",
"Ennis",
"audit",
"annotation",
"AI-output",
"hallucination",
"epistemic"
],
"teacher_time": "4 minutes",
"chains_with": [
"critical-thinking-task-designer",
"source-credibility-evaluation-protocol",
"elaborative-interrogation-generator",
"ai-hallucination-fact-check-protocol"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/ai-output-critical-audit-designer/SKILL.md"
},
{
"id": "ai-literacy/ai-socratic-dialogue-designer",
"name": "ai-socratic-dialogue-designer",
"display_name": "AI Socratic Dialogue Designer",
"domain": "ai-literacy",
"description": "Design a multi-round questioning sequence for interrogating AI chatbot answers, tracking how responses shift and distinguishing genuine updates from sycophantic capitulation. Use when teaching students to probe AI critically.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"AI-literacy",
"Socratic-questioning",
"sycophancy",
"AI-behaviour",
"critical-thinking",
"multi-round",
"capitulation"
],
"teacher_time": "4 minutes",
"chains_with": [
"socratic-questioning-sequence-generator",
"ai-output-critical-audit-designer",
"critical-thinking-task-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/ai-socratic-dialogue-designer/SKILL.md"
},
{
"id": "ai-literacy/disciplinary-ai-literacy-sequence-designer",
"name": "disciplinary-ai-literacy-sequence-designer",
"display_name": "Disciplinary AI Literacy Sequence Designer",
"domain": "ai-literacy",
"description": "Design a sequence where students compare AI's handling of the same question across disciplines, developing a mental model of where AI is reliable vs. distorting based on knowledge type.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"AI-literacy",
"disciplinary-thinking",
"knowledge-types",
"Bernstein",
"Willingham",
"domain-specificity",
"AI-reliability"
],
"teacher_time": "5 minutes",
"chains_with": [
"kud-knowledge-type-mapper",
"curriculum-knowledge-architecture-designer",
"ai-output-critical-audit-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/disciplinary-ai-literacy-sequence-designer/SKILL.md"
},
{
"id": "ai-literacy/prompt-literacy-sequence-designer",
"name": "prompt-literacy-sequence-designer",
"display_name": "Prompt Literacy Sequence Designer",
"domain": "ai-literacy",
"description": "Design a learning sequence teaching prompt quality \u2014 comparing vague vs. refined prompts to show why specificity and context transform AI output. Use when students use AI without understanding why output quality varies.",
"disable_model_invocation": false,
"evidence_strength": "low-moderate",
"tags": [
"AI-literacy",
"prompt-engineering",
"prompt-literacy",
"specificity",
"AI-use",
"context",
"constraints"
],
"teacher_time": "4 minutes",
"chains_with": [
"ai-output-critical-audit-designer",
"metacognitive-monitoring-ai-contexts",
"explicit-instruction-sequence-builder"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/ai-literacy/prompt-literacy-sequence-designer/SKILL.md"
},
{
"id": "curriculum-alignment/coverage-audit",
"name": "coverage-audit",
"display_name": "Coverage Audit",
"domain": "curriculum-alignment",
"description": "Takes a curriculum framework and a statutory or accreditation requirement list; produces a coverage table, gap summary, and CSV showing which framework content covers each requirement and where gaps exist.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"coverage-audit",
"accreditation",
"statutory-compliance",
"curriculum-alignment",
"gap-analysis"
],
"teacher_time": "15 minutes",
"chains_with": [
"curriculum-crosswalk",
"developmental-band-translator",
"scope-and-sequence-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/curriculum-alignment/coverage-audit/SKILL.md"
},
{
"id": "curriculum-alignment/curriculum-crosswalk",
"name": "curriculum-crosswalk",
"display_name": "Curriculum Crosswalk",
"domain": "curriculum-alignment",
"description": "Compares two or more band-tagged frameworks and produces a framework-neutral topic matrix showing coverage and gaps across all inputs, plus an optional reference-centric PLC crosswalk document when a reference framework is supplied.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"curriculum-alignment",
"crosswalk",
"framework-comparison",
"Webb-alignment",
"Porter-content-analysis",
"PLC",
"source-voice-preservation"
],
"teacher_time": "30 minutes",
"chains_with": [
"developmental-band-translator",
"learning-progression-builder",
"scope-and-sequence-designer",
"curriculum-knowledge-architecture-designer",
"gap-analysis-from-student-work"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/curriculum-alignment/curriculum-crosswalk/SKILL.md"
},
{
"id": "curriculum-alignment/developmental-band-translator",
"name": "developmental-band-translator",
"display_name": "Developmental Band Translator",
"domain": "curriculum-alignment",
"description": "Tags harness-decomposed curriculum items (KUDs, LTs, criteria) with a school's developmental band metadata while preserving source voice and labels. Supply the band schema; the skill derives mapping rules from it.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"developmental-bands",
"curriculum-alignment",
"band-mapping",
"source-voice-preservation",
"Wiggins-McTighe",
"Vygotsky",
"ZPD",
"framework-translation"
],
"teacher_time": "10 minutes",
"chains_with": [
"curriculum-crosswalk",
"kud-knowledge-type-mapper",
"learning-progression-builder",
"competency-framework-translator",
"scope-and-sequence-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/curriculum-alignment/developmental-band-translator/SKILL.md"
},
{
"id": "curriculum-alignment/kud-chart-author",
"name": "kud-chart-author",
"display_name": "KUD Chart Author",
"domain": "curriculum-alignment",
"description": "Authors or reviews Know/Understand/Do charts for competency-based learning targets across developmental bands. Handles seven input types from raw curriculum documents to existing LT sets. Routes to upstream skills when stronger inputs are available.",
"disable_model_invocation": false,
"evidence_strength": "moderate",
"tags": [
"KUD",
"curriculum-design",
"learning-targets",
"Wiggins-McTighe",
"backward-design",
"progression",
"assessment-design",
"competency-based"
],
"teacher_time": "15 minutes",
"chains_with": [
"learning-target-authoring-guide",
"developmental-band-translator",
"curriculum-crosswalk",
"coherent-rubric-logic-builder",
"criterion-referenced-rubric-generator",
"learning-progression-builder",
"competency-unpacker"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/curriculum-alignment/kud-chart-author/SKILL.md"
},
{
"id": "curriculum-assessment/assessment-validity-checker",
"name": "assessment-validity-checker",
"display_name": "Assessment Validity Checker",
"domain": "curriculum-assessment",
"description": "Audit a proposed assessment for construct validity, reliability, and alignment to learning objectives. Use when reviewing or quality-assuring assessments before deployment.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"validity",
"reliability",
"assessment-design",
"quality-assurance",
"measurement"
],
"teacher_time": "3 minutes",
"chains_with": [
"criterion-referenced-rubric-generator",
"formative-assessment-technique-selector",
"competency-unpacker",
"backwards-design-unit-planner",
"curriculum-knowledge-architecture-designer",
"kud-knowledge-type-mapper"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/curriculum-assessment/assessment-validity-checker/SKILL.md"
},
{
"id": "curriculum-assessment/backwards-design-unit-planner",
"name": "backwards-design-unit-planner",
"display_name": "Backwards Design Unit Planner",
"domain": "curriculum-assessment",
"description": "Plan a unit using backwards design from desired outcomes through assessment evidence to learning activities. Use when starting a new unit or redesigning an existing one from standards.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"UbD",
"backwards-design",
"unit-planning",
"curriculum",
"alignment"
],
"teacher_time": "5 minutes",
"chains_with": [
"competency-unpacker",
"criterion-referenced-rubric-generator",
"formative-assessment-technique-selector",
"explicit-instruction-sequence-builder",
"curriculum-knowledge-architecture-designer",
"kud-knowledge-type-mapper",
"critical-thinking-task-designer",
"scope-and-sequence-designer"
],
"chain_edges": {
"receives_from": [],
"feeds_into": [],
"output_field": null,
"input_field": null
},
"path": "skills/curriculum-assessment/backwards-design-unit-planner/SKILL.md"
},
{
"id": "curriculum-assessment/competency-unpacker",
"name": "competency-unpacker",
"display_name": "Competency Unpacker",
"domain": "curriculum-assessment",
"description": "Unpack a broad standard or competency descriptor into specific, assessable success criteria and sub-skills. Use when interpreting curriculum standards or writing learning objectives.",
"disable_model_invocation": false,
"evidence_strength": "strong",
"tags": [
"competency",
"standards",