@thanh01.pmt/curriculum-kit 1.4.38 → 1.4.39
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/ai/index.cjs +194 -2
- package/dist/ai/index.cjs.map +1 -1
- package/dist/ai/index.d.cts +39 -2
- package/dist/ai/index.d.ts +39 -2
- package/dist/ai/index.mjs +191 -3
- package/dist/ai/index.mjs.map +1 -1
- package/dist/index.cjs +326 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +59 -3
- package/dist/index.d.ts +59 -3
- package/dist/index.mjs +310 -3
- package/dist/index.mjs.map +1 -1
- package/dist/pipeline/index.cjs +43 -2
- package/dist/pipeline/index.cjs.map +1 -1
- package/dist/pipeline/index.mjs +43 -2
- package/dist/pipeline/index.mjs.map +1 -1
- package/dist/schemas/index.cjs +47 -2
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +473 -44
- package/dist/schemas/index.d.ts +473 -44
- package/dist/schemas/index.mjs +44 -3
- package/dist/schemas/index.mjs.map +1 -1
- package/dist/workflow/index.cjs +43 -2
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.mjs +43 -2
- package/dist/workflow/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/schemas/index.d.cts
CHANGED
|
@@ -2918,6 +2918,7 @@ type Extension = z.infer<typeof ExtensionSchema>;
|
|
|
2918
2918
|
* LLM-as-Judge Schema — Pedagogical & Technical Quality Audit Report
|
|
2919
2919
|
*/
|
|
2920
2920
|
declare const QualityAuditVerdictSchema: z.ZodEnum<["PASS", "NEEDS_REVISION", "FAIL"]>;
|
|
2921
|
+
type QualityAuditVerdict = z.infer<typeof QualityAuditVerdictSchema>;
|
|
2921
2922
|
declare const JudgeCriterionSchema: z.ZodObject<{
|
|
2922
2923
|
name: z.ZodString;
|
|
2923
2924
|
passed: z.ZodBoolean;
|
|
@@ -2934,6 +2935,401 @@ declare const JudgeCriterionSchema: z.ZodObject<{
|
|
|
2934
2935
|
score: number;
|
|
2935
2936
|
feedback: string;
|
|
2936
2937
|
}>;
|
|
2938
|
+
type JudgeCriterion = z.infer<typeof JudgeCriterionSchema>;
|
|
2939
|
+
/**
|
|
2940
|
+
* Structured Actionable Repair Prescription:
|
|
2941
|
+
* Used by the closed-loop autonomous repair pipeline to patch plans deterministically.
|
|
2942
|
+
*/
|
|
2943
|
+
declare const ActionableRepairActionSchema: z.ZodEnum<["SPLIT_STEP", "REVISE_PROVISIONING", "INSERT_RECAP", "ADJUST_TIME_BUDGET", "SUBSTITUTE_FALLBACK", "REVISE_EXIT_EVIDENCE"]>;
|
|
2944
|
+
type ActionableRepairAction = z.infer<typeof ActionableRepairActionSchema>;
|
|
2945
|
+
declare const ActionableRepairPromptSchema: z.ZodObject<{
|
|
2946
|
+
action: z.ZodEnum<["SPLIT_STEP", "REVISE_PROVISIONING", "INSERT_RECAP", "ADJUST_TIME_BUDGET", "SUBSTITUTE_FALLBACK", "REVISE_EXIT_EVIDENCE"]>;
|
|
2947
|
+
targetId: z.ZodString;
|
|
2948
|
+
severity: z.ZodDefault<z.ZodEnum<["CRITICAL", "WARNING", "INFO"]>>;
|
|
2949
|
+
rationale: z.ZodString;
|
|
2950
|
+
instruction: z.ZodString;
|
|
2951
|
+
}, "strip", z.ZodTypeAny, {
|
|
2952
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
2953
|
+
targetId: string;
|
|
2954
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
2955
|
+
rationale: string;
|
|
2956
|
+
instruction: string;
|
|
2957
|
+
}, {
|
|
2958
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
2959
|
+
targetId: string;
|
|
2960
|
+
rationale: string;
|
|
2961
|
+
instruction: string;
|
|
2962
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
2963
|
+
}>;
|
|
2964
|
+
type ActionableRepairPrompt = z.infer<typeof ActionableRepairPromptSchema>;
|
|
2965
|
+
/**
|
|
2966
|
+
* Stage 1: Project Graph Engineering & Toolchain Audit Schema
|
|
2967
|
+
*/
|
|
2968
|
+
declare const ProjectGraphAuditSchema: z.ZodObject<{
|
|
2969
|
+
schema_version: z.ZodDefault<z.ZodNumber>;
|
|
2970
|
+
projectId: z.ZodString;
|
|
2971
|
+
overallVerdict: z.ZodEnum<["PASS", "NEEDS_REVISION", "FAIL"]>;
|
|
2972
|
+
totalScore: z.ZodNumber;
|
|
2973
|
+
toolchainFeasibility: z.ZodObject<{
|
|
2974
|
+
name: z.ZodString;
|
|
2975
|
+
passed: z.ZodBoolean;
|
|
2976
|
+
score: z.ZodNumber;
|
|
2977
|
+
feedback: z.ZodString;
|
|
2978
|
+
}, "strip", z.ZodTypeAny, {
|
|
2979
|
+
name: string;
|
|
2980
|
+
passed: boolean;
|
|
2981
|
+
score: number;
|
|
2982
|
+
feedback: string;
|
|
2983
|
+
}, {
|
|
2984
|
+
name: string;
|
|
2985
|
+
passed: boolean;
|
|
2986
|
+
score: number;
|
|
2987
|
+
feedback: string;
|
|
2988
|
+
}>;
|
|
2989
|
+
provisioningStrategy: z.ZodObject<{
|
|
2990
|
+
name: z.ZodString;
|
|
2991
|
+
passed: z.ZodBoolean;
|
|
2992
|
+
score: z.ZodNumber;
|
|
2993
|
+
feedback: z.ZodString;
|
|
2994
|
+
}, "strip", z.ZodTypeAny, {
|
|
2995
|
+
name: string;
|
|
2996
|
+
passed: boolean;
|
|
2997
|
+
score: number;
|
|
2998
|
+
feedback: string;
|
|
2999
|
+
}, {
|
|
3000
|
+
name: string;
|
|
3001
|
+
passed: boolean;
|
|
3002
|
+
score: number;
|
|
3003
|
+
feedback: string;
|
|
3004
|
+
}>;
|
|
3005
|
+
hardwareRuntimeEnvelope: z.ZodObject<{
|
|
3006
|
+
name: z.ZodString;
|
|
3007
|
+
passed: z.ZodBoolean;
|
|
3008
|
+
score: z.ZodNumber;
|
|
3009
|
+
feedback: z.ZodString;
|
|
3010
|
+
}, "strip", z.ZodTypeAny, {
|
|
3011
|
+
name: string;
|
|
3012
|
+
passed: boolean;
|
|
3013
|
+
score: number;
|
|
3014
|
+
feedback: string;
|
|
3015
|
+
}, {
|
|
3016
|
+
name: string;
|
|
3017
|
+
passed: boolean;
|
|
3018
|
+
score: number;
|
|
3019
|
+
feedback: string;
|
|
3020
|
+
}>;
|
|
3021
|
+
timeToHelloWorld: z.ZodObject<{
|
|
3022
|
+
name: z.ZodString;
|
|
3023
|
+
passed: z.ZodBoolean;
|
|
3024
|
+
score: z.ZodNumber;
|
|
3025
|
+
feedback: z.ZodString;
|
|
3026
|
+
}, "strip", z.ZodTypeAny, {
|
|
3027
|
+
name: string;
|
|
3028
|
+
passed: boolean;
|
|
3029
|
+
score: number;
|
|
3030
|
+
feedback: string;
|
|
3031
|
+
}, {
|
|
3032
|
+
name: string;
|
|
3033
|
+
passed: boolean;
|
|
3034
|
+
score: number;
|
|
3035
|
+
feedback: string;
|
|
3036
|
+
}>;
|
|
3037
|
+
actionableRepairs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3038
|
+
action: z.ZodEnum<["SPLIT_STEP", "REVISE_PROVISIONING", "INSERT_RECAP", "ADJUST_TIME_BUDGET", "SUBSTITUTE_FALLBACK", "REVISE_EXIT_EVIDENCE"]>;
|
|
3039
|
+
targetId: z.ZodString;
|
|
3040
|
+
severity: z.ZodDefault<z.ZodEnum<["CRITICAL", "WARNING", "INFO"]>>;
|
|
3041
|
+
rationale: z.ZodString;
|
|
3042
|
+
instruction: z.ZodString;
|
|
3043
|
+
}, "strip", z.ZodTypeAny, {
|
|
3044
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3045
|
+
targetId: string;
|
|
3046
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
3047
|
+
rationale: string;
|
|
3048
|
+
instruction: string;
|
|
3049
|
+
}, {
|
|
3050
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3051
|
+
targetId: string;
|
|
3052
|
+
rationale: string;
|
|
3053
|
+
instruction: string;
|
|
3054
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
3055
|
+
}>, "many">>;
|
|
3056
|
+
}, "strip", z.ZodTypeAny, {
|
|
3057
|
+
schema_version: number;
|
|
3058
|
+
projectId: string;
|
|
3059
|
+
overallVerdict: "PASS" | "NEEDS_REVISION" | "FAIL";
|
|
3060
|
+
totalScore: number;
|
|
3061
|
+
toolchainFeasibility: {
|
|
3062
|
+
name: string;
|
|
3063
|
+
passed: boolean;
|
|
3064
|
+
score: number;
|
|
3065
|
+
feedback: string;
|
|
3066
|
+
};
|
|
3067
|
+
provisioningStrategy: {
|
|
3068
|
+
name: string;
|
|
3069
|
+
passed: boolean;
|
|
3070
|
+
score: number;
|
|
3071
|
+
feedback: string;
|
|
3072
|
+
};
|
|
3073
|
+
hardwareRuntimeEnvelope: {
|
|
3074
|
+
name: string;
|
|
3075
|
+
passed: boolean;
|
|
3076
|
+
score: number;
|
|
3077
|
+
feedback: string;
|
|
3078
|
+
};
|
|
3079
|
+
timeToHelloWorld: {
|
|
3080
|
+
name: string;
|
|
3081
|
+
passed: boolean;
|
|
3082
|
+
score: number;
|
|
3083
|
+
feedback: string;
|
|
3084
|
+
};
|
|
3085
|
+
actionableRepairs: {
|
|
3086
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3087
|
+
targetId: string;
|
|
3088
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
3089
|
+
rationale: string;
|
|
3090
|
+
instruction: string;
|
|
3091
|
+
}[];
|
|
3092
|
+
}, {
|
|
3093
|
+
projectId: string;
|
|
3094
|
+
overallVerdict: "PASS" | "NEEDS_REVISION" | "FAIL";
|
|
3095
|
+
totalScore: number;
|
|
3096
|
+
toolchainFeasibility: {
|
|
3097
|
+
name: string;
|
|
3098
|
+
passed: boolean;
|
|
3099
|
+
score: number;
|
|
3100
|
+
feedback: string;
|
|
3101
|
+
};
|
|
3102
|
+
provisioningStrategy: {
|
|
3103
|
+
name: string;
|
|
3104
|
+
passed: boolean;
|
|
3105
|
+
score: number;
|
|
3106
|
+
feedback: string;
|
|
3107
|
+
};
|
|
3108
|
+
hardwareRuntimeEnvelope: {
|
|
3109
|
+
name: string;
|
|
3110
|
+
passed: boolean;
|
|
3111
|
+
score: number;
|
|
3112
|
+
feedback: string;
|
|
3113
|
+
};
|
|
3114
|
+
timeToHelloWorld: {
|
|
3115
|
+
name: string;
|
|
3116
|
+
passed: boolean;
|
|
3117
|
+
score: number;
|
|
3118
|
+
feedback: string;
|
|
3119
|
+
};
|
|
3120
|
+
schema_version?: number | undefined;
|
|
3121
|
+
actionableRepairs?: {
|
|
3122
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3123
|
+
targetId: string;
|
|
3124
|
+
rationale: string;
|
|
3125
|
+
instruction: string;
|
|
3126
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
3127
|
+
}[] | undefined;
|
|
3128
|
+
}>;
|
|
3129
|
+
type ProjectGraphAuditReport = z.infer<typeof ProjectGraphAuditSchema>;
|
|
3130
|
+
/**
|
|
3131
|
+
* Stage 2: Macro-Pedagogical Curriculum Plan Audit Schema
|
|
3132
|
+
* Evaluates the full session sequence against real classroom friction and cognitive load.
|
|
3133
|
+
*/
|
|
3134
|
+
declare const MacroPedagogyPlanAuditSchema: z.ZodObject<{
|
|
3135
|
+
schema_version: z.ZodDefault<z.ZodNumber>;
|
|
3136
|
+
planHash: z.ZodString;
|
|
3137
|
+
overallVerdict: z.ZodEnum<["PASS", "NEEDS_REVISION", "FAIL"]>;
|
|
3138
|
+
totalScore: z.ZodNumber;
|
|
3139
|
+
autoApproved: z.ZodDefault<z.ZodBoolean>;
|
|
3140
|
+
stepIncrementality: z.ZodObject<{
|
|
3141
|
+
name: z.ZodString;
|
|
3142
|
+
passed: z.ZodBoolean;
|
|
3143
|
+
score: z.ZodNumber;
|
|
3144
|
+
feedback: z.ZodString;
|
|
3145
|
+
}, "strip", z.ZodTypeAny, {
|
|
3146
|
+
name: string;
|
|
3147
|
+
passed: boolean;
|
|
3148
|
+
score: number;
|
|
3149
|
+
feedback: string;
|
|
3150
|
+
}, {
|
|
3151
|
+
name: string;
|
|
3152
|
+
passed: boolean;
|
|
3153
|
+
score: number;
|
|
3154
|
+
feedback: string;
|
|
3155
|
+
}>;
|
|
3156
|
+
zpdSaturation: z.ZodObject<{
|
|
3157
|
+
name: z.ZodString;
|
|
3158
|
+
passed: z.ZodBoolean;
|
|
3159
|
+
score: z.ZodNumber;
|
|
3160
|
+
feedback: z.ZodString;
|
|
3161
|
+
}, "strip", z.ZodTypeAny, {
|
|
3162
|
+
name: string;
|
|
3163
|
+
passed: boolean;
|
|
3164
|
+
score: number;
|
|
3165
|
+
feedback: string;
|
|
3166
|
+
}, {
|
|
3167
|
+
name: string;
|
|
3168
|
+
passed: boolean;
|
|
3169
|
+
score: number;
|
|
3170
|
+
feedback: string;
|
|
3171
|
+
}>;
|
|
3172
|
+
frictionAdjustedBudget: z.ZodObject<{
|
|
3173
|
+
name: z.ZodString;
|
|
3174
|
+
passed: z.ZodBoolean;
|
|
3175
|
+
score: z.ZodNumber;
|
|
3176
|
+
feedback: z.ZodString;
|
|
3177
|
+
}, "strip", z.ZodTypeAny, {
|
|
3178
|
+
name: string;
|
|
3179
|
+
passed: boolean;
|
|
3180
|
+
score: number;
|
|
3181
|
+
feedback: string;
|
|
3182
|
+
}, {
|
|
3183
|
+
name: string;
|
|
3184
|
+
passed: boolean;
|
|
3185
|
+
score: number;
|
|
3186
|
+
feedback: string;
|
|
3187
|
+
}>;
|
|
3188
|
+
epitomeViability: z.ZodObject<{
|
|
3189
|
+
name: z.ZodString;
|
|
3190
|
+
passed: z.ZodBoolean;
|
|
3191
|
+
score: z.ZodNumber;
|
|
3192
|
+
feedback: z.ZodString;
|
|
3193
|
+
}, "strip", z.ZodTypeAny, {
|
|
3194
|
+
name: string;
|
|
3195
|
+
passed: boolean;
|
|
3196
|
+
score: number;
|
|
3197
|
+
feedback: string;
|
|
3198
|
+
}, {
|
|
3199
|
+
name: string;
|
|
3200
|
+
passed: boolean;
|
|
3201
|
+
score: number;
|
|
3202
|
+
feedback: string;
|
|
3203
|
+
}>;
|
|
3204
|
+
exitEvidenceSpecificity: z.ZodObject<{
|
|
3205
|
+
name: z.ZodString;
|
|
3206
|
+
passed: z.ZodBoolean;
|
|
3207
|
+
score: z.ZodNumber;
|
|
3208
|
+
feedback: z.ZodString;
|
|
3209
|
+
}, "strip", z.ZodTypeAny, {
|
|
3210
|
+
name: string;
|
|
3211
|
+
passed: boolean;
|
|
3212
|
+
score: number;
|
|
3213
|
+
feedback: string;
|
|
3214
|
+
}, {
|
|
3215
|
+
name: string;
|
|
3216
|
+
passed: boolean;
|
|
3217
|
+
score: number;
|
|
3218
|
+
feedback: string;
|
|
3219
|
+
}>;
|
|
3220
|
+
actionableRepairs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3221
|
+
action: z.ZodEnum<["SPLIT_STEP", "REVISE_PROVISIONING", "INSERT_RECAP", "ADJUST_TIME_BUDGET", "SUBSTITUTE_FALLBACK", "REVISE_EXIT_EVIDENCE"]>;
|
|
3222
|
+
targetId: z.ZodString;
|
|
3223
|
+
severity: z.ZodDefault<z.ZodEnum<["CRITICAL", "WARNING", "INFO"]>>;
|
|
3224
|
+
rationale: z.ZodString;
|
|
3225
|
+
instruction: z.ZodString;
|
|
3226
|
+
}, "strip", z.ZodTypeAny, {
|
|
3227
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3228
|
+
targetId: string;
|
|
3229
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
3230
|
+
rationale: string;
|
|
3231
|
+
instruction: string;
|
|
3232
|
+
}, {
|
|
3233
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3234
|
+
targetId: string;
|
|
3235
|
+
rationale: string;
|
|
3236
|
+
instruction: string;
|
|
3237
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
3238
|
+
}>, "many">>;
|
|
3239
|
+
summary: z.ZodString;
|
|
3240
|
+
}, "strip", z.ZodTypeAny, {
|
|
3241
|
+
schema_version: number;
|
|
3242
|
+
overallVerdict: "PASS" | "NEEDS_REVISION" | "FAIL";
|
|
3243
|
+
totalScore: number;
|
|
3244
|
+
actionableRepairs: {
|
|
3245
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3246
|
+
targetId: string;
|
|
3247
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
3248
|
+
rationale: string;
|
|
3249
|
+
instruction: string;
|
|
3250
|
+
}[];
|
|
3251
|
+
planHash: string;
|
|
3252
|
+
autoApproved: boolean;
|
|
3253
|
+
stepIncrementality: {
|
|
3254
|
+
name: string;
|
|
3255
|
+
passed: boolean;
|
|
3256
|
+
score: number;
|
|
3257
|
+
feedback: string;
|
|
3258
|
+
};
|
|
3259
|
+
zpdSaturation: {
|
|
3260
|
+
name: string;
|
|
3261
|
+
passed: boolean;
|
|
3262
|
+
score: number;
|
|
3263
|
+
feedback: string;
|
|
3264
|
+
};
|
|
3265
|
+
frictionAdjustedBudget: {
|
|
3266
|
+
name: string;
|
|
3267
|
+
passed: boolean;
|
|
3268
|
+
score: number;
|
|
3269
|
+
feedback: string;
|
|
3270
|
+
};
|
|
3271
|
+
epitomeViability: {
|
|
3272
|
+
name: string;
|
|
3273
|
+
passed: boolean;
|
|
3274
|
+
score: number;
|
|
3275
|
+
feedback: string;
|
|
3276
|
+
};
|
|
3277
|
+
exitEvidenceSpecificity: {
|
|
3278
|
+
name: string;
|
|
3279
|
+
passed: boolean;
|
|
3280
|
+
score: number;
|
|
3281
|
+
feedback: string;
|
|
3282
|
+
};
|
|
3283
|
+
summary: string;
|
|
3284
|
+
}, {
|
|
3285
|
+
overallVerdict: "PASS" | "NEEDS_REVISION" | "FAIL";
|
|
3286
|
+
totalScore: number;
|
|
3287
|
+
planHash: string;
|
|
3288
|
+
stepIncrementality: {
|
|
3289
|
+
name: string;
|
|
3290
|
+
passed: boolean;
|
|
3291
|
+
score: number;
|
|
3292
|
+
feedback: string;
|
|
3293
|
+
};
|
|
3294
|
+
zpdSaturation: {
|
|
3295
|
+
name: string;
|
|
3296
|
+
passed: boolean;
|
|
3297
|
+
score: number;
|
|
3298
|
+
feedback: string;
|
|
3299
|
+
};
|
|
3300
|
+
frictionAdjustedBudget: {
|
|
3301
|
+
name: string;
|
|
3302
|
+
passed: boolean;
|
|
3303
|
+
score: number;
|
|
3304
|
+
feedback: string;
|
|
3305
|
+
};
|
|
3306
|
+
epitomeViability: {
|
|
3307
|
+
name: string;
|
|
3308
|
+
passed: boolean;
|
|
3309
|
+
score: number;
|
|
3310
|
+
feedback: string;
|
|
3311
|
+
};
|
|
3312
|
+
exitEvidenceSpecificity: {
|
|
3313
|
+
name: string;
|
|
3314
|
+
passed: boolean;
|
|
3315
|
+
score: number;
|
|
3316
|
+
feedback: string;
|
|
3317
|
+
};
|
|
3318
|
+
summary: string;
|
|
3319
|
+
schema_version?: number | undefined;
|
|
3320
|
+
actionableRepairs?: {
|
|
3321
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3322
|
+
targetId: string;
|
|
3323
|
+
rationale: string;
|
|
3324
|
+
instruction: string;
|
|
3325
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
3326
|
+
}[] | undefined;
|
|
3327
|
+
autoApproved?: boolean | undefined;
|
|
3328
|
+
}>;
|
|
3329
|
+
type MacroPedagogyPlanAuditReport = z.infer<typeof MacroPedagogyPlanAuditSchema>;
|
|
3330
|
+
/**
|
|
3331
|
+
* Legacy SOT / Lesson Quality Report Schema (Retained for Backward Compatibility)
|
|
3332
|
+
*/
|
|
2937
3333
|
declare const CurriculumQualityReportSchema: z.ZodObject<{
|
|
2938
3334
|
targetArtifactType: z.ZodString;
|
|
2939
3335
|
lessonId: z.ZodString;
|
|
@@ -2957,6 +3353,25 @@ declare const CurriculumQualityReportSchema: z.ZodObject<{
|
|
|
2957
3353
|
feedback: string;
|
|
2958
3354
|
}>, "many">;
|
|
2959
3355
|
actionableRepairPrompts: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3356
|
+
structuredRepairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3357
|
+
action: z.ZodEnum<["SPLIT_STEP", "REVISE_PROVISIONING", "INSERT_RECAP", "ADJUST_TIME_BUDGET", "SUBSTITUTE_FALLBACK", "REVISE_EXIT_EVIDENCE"]>;
|
|
3358
|
+
targetId: z.ZodString;
|
|
3359
|
+
severity: z.ZodDefault<z.ZodEnum<["CRITICAL", "WARNING", "INFO"]>>;
|
|
3360
|
+
rationale: z.ZodString;
|
|
3361
|
+
instruction: z.ZodString;
|
|
3362
|
+
}, "strip", z.ZodTypeAny, {
|
|
3363
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3364
|
+
targetId: string;
|
|
3365
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
3366
|
+
rationale: string;
|
|
3367
|
+
instruction: string;
|
|
3368
|
+
}, {
|
|
3369
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3370
|
+
targetId: string;
|
|
3371
|
+
rationale: string;
|
|
3372
|
+
instruction: string;
|
|
3373
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
3374
|
+
}>, "many">>;
|
|
2960
3375
|
}, "strip", z.ZodTypeAny, {
|
|
2961
3376
|
criteria: {
|
|
2962
3377
|
name: string;
|
|
@@ -2965,11 +3380,18 @@ declare const CurriculumQualityReportSchema: z.ZodObject<{
|
|
|
2965
3380
|
feedback: string;
|
|
2966
3381
|
}[];
|
|
2967
3382
|
lessonId: string;
|
|
2968
|
-
targetArtifactType: string;
|
|
2969
3383
|
overallVerdict: "PASS" | "NEEDS_REVISION" | "FAIL";
|
|
2970
3384
|
totalScore: number;
|
|
3385
|
+
targetArtifactType: string;
|
|
2971
3386
|
languageAdherencePassed: boolean;
|
|
2972
3387
|
actionableRepairPrompts: string[];
|
|
3388
|
+
structuredRepairs?: {
|
|
3389
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3390
|
+
targetId: string;
|
|
3391
|
+
severity: "CRITICAL" | "WARNING" | "INFO";
|
|
3392
|
+
rationale: string;
|
|
3393
|
+
instruction: string;
|
|
3394
|
+
}[] | undefined;
|
|
2973
3395
|
}, {
|
|
2974
3396
|
criteria: {
|
|
2975
3397
|
name: string;
|
|
@@ -2978,11 +3400,18 @@ declare const CurriculumQualityReportSchema: z.ZodObject<{
|
|
|
2978
3400
|
feedback: string;
|
|
2979
3401
|
}[];
|
|
2980
3402
|
lessonId: string;
|
|
2981
|
-
targetArtifactType: string;
|
|
2982
3403
|
overallVerdict: "PASS" | "NEEDS_REVISION" | "FAIL";
|
|
2983
3404
|
totalScore: number;
|
|
3405
|
+
targetArtifactType: string;
|
|
2984
3406
|
languageAdherencePassed: boolean;
|
|
2985
3407
|
actionableRepairPrompts?: string[] | undefined;
|
|
3408
|
+
structuredRepairs?: {
|
|
3409
|
+
action: "SPLIT_STEP" | "REVISE_PROVISIONING" | "INSERT_RECAP" | "ADJUST_TIME_BUDGET" | "SUBSTITUTE_FALLBACK" | "REVISE_EXIT_EVIDENCE";
|
|
3410
|
+
targetId: string;
|
|
3411
|
+
rationale: string;
|
|
3412
|
+
instruction: string;
|
|
3413
|
+
severity?: "CRITICAL" | "WARNING" | "INFO" | undefined;
|
|
3414
|
+
}[] | undefined;
|
|
2986
3415
|
}>;
|
|
2987
3416
|
type CurriculumQualityReport = z.infer<typeof CurriculumQualityReportSchema>;
|
|
2988
3417
|
|
|
@@ -3287,8 +3716,8 @@ declare const ProjectGraphSchema: z.ZodObject<{
|
|
|
3287
3716
|
};
|
|
3288
3717
|
evidence?: any;
|
|
3289
3718
|
validation?: any;
|
|
3290
|
-
architecture?: any;
|
|
3291
3719
|
schema_version?: number | undefined;
|
|
3720
|
+
architecture?: any;
|
|
3292
3721
|
product?: {
|
|
3293
3722
|
goals?: {
|
|
3294
3723
|
description: string;
|
|
@@ -5868,7 +6297,6 @@ declare const SelfPacedBundleSchema: z.ZodObject<{
|
|
|
5868
6297
|
title: string;
|
|
5869
6298
|
language: string;
|
|
5870
6299
|
techStack: string[];
|
|
5871
|
-
bundleId: string;
|
|
5872
6300
|
instruction: {
|
|
5873
6301
|
artifactType: "INSTRUCTION";
|
|
5874
6302
|
title: string;
|
|
@@ -5904,6 +6332,7 @@ declare const SelfPacedBundleSchema: z.ZodObject<{
|
|
|
5904
6332
|
materialsAndTools: string[];
|
|
5905
6333
|
verificationChecklist: string[];
|
|
5906
6334
|
};
|
|
6335
|
+
bundleId: string;
|
|
5907
6336
|
selfLab: {
|
|
5908
6337
|
artifactType: "SELF_LAB";
|
|
5909
6338
|
title: string;
|
|
@@ -6121,7 +6550,6 @@ declare const SelfPacedBundleSchema: z.ZodObject<{
|
|
|
6121
6550
|
} | undefined;
|
|
6122
6551
|
}, {
|
|
6123
6552
|
title: string;
|
|
6124
|
-
bundleId: string;
|
|
6125
6553
|
instruction: {
|
|
6126
6554
|
title: string;
|
|
6127
6555
|
language: string;
|
|
@@ -6157,6 +6585,7 @@ declare const SelfPacedBundleSchema: z.ZodObject<{
|
|
|
6157
6585
|
materialsAndTools?: string[] | undefined;
|
|
6158
6586
|
verificationChecklist?: string[] | undefined;
|
|
6159
6587
|
};
|
|
6588
|
+
bundleId: string;
|
|
6160
6589
|
selfLab: {
|
|
6161
6590
|
title: string;
|
|
6162
6591
|
challenges: {
|
|
@@ -8503,6 +8932,7 @@ declare const UnitPlanSchema: z.ZodObject<{
|
|
|
8503
8932
|
product_completion: z.ZodDefault<z.ZodString>;
|
|
8504
8933
|
}, "strip", z.ZodTypeAny, {
|
|
8505
8934
|
name: string;
|
|
8935
|
+
rationale: string;
|
|
8506
8936
|
id: string;
|
|
8507
8937
|
node_ids: string[];
|
|
8508
8938
|
objectives: {
|
|
@@ -8515,11 +8945,11 @@ declare const UnitPlanSchema: z.ZodObject<{
|
|
|
8515
8945
|
};
|
|
8516
8946
|
}[];
|
|
8517
8947
|
total_minutes: number;
|
|
8518
|
-
rationale: string;
|
|
8519
8948
|
phase_ids: string[];
|
|
8520
8949
|
product_completion: string;
|
|
8521
8950
|
}, {
|
|
8522
8951
|
name: string;
|
|
8952
|
+
rationale: string;
|
|
8523
8953
|
id: string;
|
|
8524
8954
|
node_ids: string[];
|
|
8525
8955
|
objectives: {
|
|
@@ -8532,7 +8962,6 @@ declare const UnitPlanSchema: z.ZodObject<{
|
|
|
8532
8962
|
};
|
|
8533
8963
|
}[];
|
|
8534
8964
|
total_minutes: number;
|
|
8535
|
-
rationale: string;
|
|
8536
8965
|
phase_ids?: string[] | undefined;
|
|
8537
8966
|
product_completion?: string | undefined;
|
|
8538
8967
|
}>;
|
|
@@ -8665,12 +9094,12 @@ declare const MasteryGateSchema: z.ZodObject<{
|
|
|
8665
9094
|
focus_minutes: z.ZodDefault<z.ZodNumber>;
|
|
8666
9095
|
action: z.ZodString;
|
|
8667
9096
|
}, "strip", z.ZodTypeAny, {
|
|
9097
|
+
action: string;
|
|
8668
9098
|
trigger: "FAIL_GATE_CRITERIA";
|
|
8669
9099
|
focus_minutes: number;
|
|
8670
|
-
action: string;
|
|
8671
9100
|
}, {
|
|
8672
|
-
trigger: "FAIL_GATE_CRITERIA";
|
|
8673
9101
|
action: string;
|
|
9102
|
+
trigger: "FAIL_GATE_CRITERIA";
|
|
8674
9103
|
focus_minutes?: number | undefined;
|
|
8675
9104
|
}>;
|
|
8676
9105
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8679,9 +9108,9 @@ declare const MasteryGateSchema: z.ZodObject<{
|
|
|
8679
9108
|
exit_criteria: string[];
|
|
8680
9109
|
next_unit_id: string;
|
|
8681
9110
|
remediation: {
|
|
9111
|
+
action: string;
|
|
8682
9112
|
trigger: "FAIL_GATE_CRITERIA";
|
|
8683
9113
|
focus_minutes: number;
|
|
8684
|
-
action: string;
|
|
8685
9114
|
};
|
|
8686
9115
|
}, {
|
|
8687
9116
|
phase_or_unit_id: string;
|
|
@@ -8689,8 +9118,8 @@ declare const MasteryGateSchema: z.ZodObject<{
|
|
|
8689
9118
|
exit_criteria: string[];
|
|
8690
9119
|
next_unit_id: string;
|
|
8691
9120
|
remediation: {
|
|
8692
|
-
trigger: "FAIL_GATE_CRITERIA";
|
|
8693
9121
|
action: string;
|
|
9122
|
+
trigger: "FAIL_GATE_CRITERIA";
|
|
8694
9123
|
focus_minutes?: number | undefined;
|
|
8695
9124
|
};
|
|
8696
9125
|
}>;
|
|
@@ -8705,8 +9134,8 @@ declare const ConceptPrerequisiteEdgeSchema: z.ZodObject<{
|
|
|
8705
9134
|
needs_review: z.ZodDefault<z.ZodBoolean>;
|
|
8706
9135
|
hub: z.ZodDefault<z.ZodBoolean>;
|
|
8707
9136
|
}, "strip", z.ZodTypeAny, {
|
|
8708
|
-
source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
|
|
8709
9137
|
rationale: string;
|
|
9138
|
+
source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
|
|
8710
9139
|
concept_code: string;
|
|
8711
9140
|
requires: string;
|
|
8712
9141
|
confidence: number;
|
|
@@ -8716,8 +9145,8 @@ declare const ConceptPrerequisiteEdgeSchema: z.ZodObject<{
|
|
|
8716
9145
|
}, {
|
|
8717
9146
|
concept_code: string;
|
|
8718
9147
|
requires: string;
|
|
8719
|
-
source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
|
|
8720
9148
|
rationale?: string | undefined;
|
|
9149
|
+
source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
|
|
8721
9150
|
confidence?: number | undefined;
|
|
8722
9151
|
structure_supported?: boolean | undefined;
|
|
8723
9152
|
needs_review?: boolean | undefined;
|
|
@@ -9099,6 +9528,7 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9099
9528
|
product_completion: z.ZodDefault<z.ZodString>;
|
|
9100
9529
|
}, "strip", z.ZodTypeAny, {
|
|
9101
9530
|
name: string;
|
|
9531
|
+
rationale: string;
|
|
9102
9532
|
id: string;
|
|
9103
9533
|
node_ids: string[];
|
|
9104
9534
|
objectives: {
|
|
@@ -9111,11 +9541,11 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9111
9541
|
};
|
|
9112
9542
|
}[];
|
|
9113
9543
|
total_minutes: number;
|
|
9114
|
-
rationale: string;
|
|
9115
9544
|
phase_ids: string[];
|
|
9116
9545
|
product_completion: string;
|
|
9117
9546
|
}, {
|
|
9118
9547
|
name: string;
|
|
9548
|
+
rationale: string;
|
|
9119
9549
|
id: string;
|
|
9120
9550
|
node_ids: string[];
|
|
9121
9551
|
objectives: {
|
|
@@ -9128,7 +9558,6 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9128
9558
|
};
|
|
9129
9559
|
}[];
|
|
9130
9560
|
total_minutes: number;
|
|
9131
|
-
rationale: string;
|
|
9132
9561
|
phase_ids?: string[] | undefined;
|
|
9133
9562
|
product_completion?: string | undefined;
|
|
9134
9563
|
}>, "many">;
|
|
@@ -9343,12 +9772,12 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9343
9772
|
focus_minutes: z.ZodDefault<z.ZodNumber>;
|
|
9344
9773
|
action: z.ZodString;
|
|
9345
9774
|
}, "strip", z.ZodTypeAny, {
|
|
9775
|
+
action: string;
|
|
9346
9776
|
trigger: "FAIL_GATE_CRITERIA";
|
|
9347
9777
|
focus_minutes: number;
|
|
9348
|
-
action: string;
|
|
9349
9778
|
}, {
|
|
9350
|
-
trigger: "FAIL_GATE_CRITERIA";
|
|
9351
9779
|
action: string;
|
|
9780
|
+
trigger: "FAIL_GATE_CRITERIA";
|
|
9352
9781
|
focus_minutes?: number | undefined;
|
|
9353
9782
|
}>;
|
|
9354
9783
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9357,9 +9786,9 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9357
9786
|
exit_criteria: string[];
|
|
9358
9787
|
next_unit_id: string;
|
|
9359
9788
|
remediation: {
|
|
9789
|
+
action: string;
|
|
9360
9790
|
trigger: "FAIL_GATE_CRITERIA";
|
|
9361
9791
|
focus_minutes: number;
|
|
9362
|
-
action: string;
|
|
9363
9792
|
};
|
|
9364
9793
|
}, {
|
|
9365
9794
|
phase_or_unit_id: string;
|
|
@@ -9367,8 +9796,8 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9367
9796
|
exit_criteria: string[];
|
|
9368
9797
|
next_unit_id: string;
|
|
9369
9798
|
remediation: {
|
|
9370
|
-
trigger: "FAIL_GATE_CRITERIA";
|
|
9371
9799
|
action: string;
|
|
9800
|
+
trigger: "FAIL_GATE_CRITERIA";
|
|
9372
9801
|
focus_minutes?: number | undefined;
|
|
9373
9802
|
};
|
|
9374
9803
|
}>, "many">>;
|
|
@@ -9401,8 +9830,8 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9401
9830
|
needs_review: z.ZodDefault<z.ZodBoolean>;
|
|
9402
9831
|
hub: z.ZodDefault<z.ZodBoolean>;
|
|
9403
9832
|
}, "strip", z.ZodTypeAny, {
|
|
9404
|
-
source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
|
|
9405
9833
|
rationale: string;
|
|
9834
|
+
source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
|
|
9406
9835
|
concept_code: string;
|
|
9407
9836
|
requires: string;
|
|
9408
9837
|
confidence: number;
|
|
@@ -9412,8 +9841,8 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9412
9841
|
}, {
|
|
9413
9842
|
concept_code: string;
|
|
9414
9843
|
requires: string;
|
|
9415
|
-
source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
|
|
9416
9844
|
rationale?: string | undefined;
|
|
9845
|
+
source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
|
|
9417
9846
|
confidence?: number | undefined;
|
|
9418
9847
|
structure_supported?: boolean | undefined;
|
|
9419
9848
|
needs_review?: boolean | undefined;
|
|
@@ -9472,13 +9901,13 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9472
9901
|
approved_at?: string | null | undefined;
|
|
9473
9902
|
}>;
|
|
9474
9903
|
}, "strip", z.ZodTypeAny, {
|
|
9904
|
+
schema_version: 1;
|
|
9475
9905
|
source: {
|
|
9476
9906
|
warnings: string[];
|
|
9477
9907
|
graph_type: "curriculum_feed" | "project_graph" | "knowledge_graph" | "hybrid_graph";
|
|
9478
9908
|
feed_schema_version: number | null;
|
|
9479
9909
|
hallucination_count: number;
|
|
9480
9910
|
};
|
|
9481
|
-
schema_version: 1;
|
|
9482
9911
|
constraints: {
|
|
9483
9912
|
age_band: [number, number];
|
|
9484
9913
|
entry_level: "advanced" | "intermediate" | "beginner";
|
|
@@ -9510,6 +9939,7 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9510
9939
|
};
|
|
9511
9940
|
units: {
|
|
9512
9941
|
name: string;
|
|
9942
|
+
rationale: string;
|
|
9513
9943
|
id: string;
|
|
9514
9944
|
node_ids: string[];
|
|
9515
9945
|
objectives: {
|
|
@@ -9522,7 +9952,6 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9522
9952
|
};
|
|
9523
9953
|
}[];
|
|
9524
9954
|
total_minutes: number;
|
|
9525
|
-
rationale: string;
|
|
9526
9955
|
phase_ids: string[];
|
|
9527
9956
|
product_completion: string;
|
|
9528
9957
|
}[];
|
|
@@ -9574,9 +10003,9 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9574
10003
|
exit_criteria: string[];
|
|
9575
10004
|
next_unit_id: string;
|
|
9576
10005
|
remediation: {
|
|
10006
|
+
action: string;
|
|
9577
10007
|
trigger: "FAIL_GATE_CRITERIA";
|
|
9578
10008
|
focus_minutes: number;
|
|
9579
|
-
action: string;
|
|
9580
10009
|
};
|
|
9581
10010
|
}[];
|
|
9582
10011
|
concept_spiral_progression: {
|
|
@@ -9587,8 +10016,8 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9587
10016
|
bloom_cap: "Create" | "Evaluate" | "Remember" | "Understand" | "Apply" | "Analyze";
|
|
9588
10017
|
}[];
|
|
9589
10018
|
concept_prerequisites: {
|
|
9590
|
-
source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
|
|
9591
10019
|
rationale: string;
|
|
10020
|
+
source: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ";
|
|
9592
10021
|
concept_code: string;
|
|
9593
10022
|
requires: string;
|
|
9594
10023
|
confidence: number;
|
|
@@ -9620,13 +10049,13 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9620
10049
|
}[];
|
|
9621
10050
|
} | undefined;
|
|
9622
10051
|
}, {
|
|
10052
|
+
schema_version: 1;
|
|
9623
10053
|
source: {
|
|
9624
10054
|
graph_type: "curriculum_feed" | "project_graph" | "knowledge_graph" | "hybrid_graph";
|
|
9625
10055
|
warnings?: string[] | undefined;
|
|
9626
10056
|
feed_schema_version?: number | null | undefined;
|
|
9627
10057
|
hallucination_count?: number | undefined;
|
|
9628
10058
|
};
|
|
9629
|
-
schema_version: 1;
|
|
9630
10059
|
constraints: {
|
|
9631
10060
|
age_band: [number, number];
|
|
9632
10061
|
entry_level: "advanced" | "intermediate" | "beginner";
|
|
@@ -9658,6 +10087,7 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9658
10087
|
};
|
|
9659
10088
|
units: {
|
|
9660
10089
|
name: string;
|
|
10090
|
+
rationale: string;
|
|
9661
10091
|
id: string;
|
|
9662
10092
|
node_ids: string[];
|
|
9663
10093
|
objectives: {
|
|
@@ -9670,7 +10100,6 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9670
10100
|
};
|
|
9671
10101
|
}[];
|
|
9672
10102
|
total_minutes: number;
|
|
9673
|
-
rationale: string;
|
|
9674
10103
|
phase_ids?: string[] | undefined;
|
|
9675
10104
|
product_completion?: string | undefined;
|
|
9676
10105
|
}[];
|
|
@@ -9745,8 +10174,8 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9745
10174
|
exit_criteria: string[];
|
|
9746
10175
|
next_unit_id: string;
|
|
9747
10176
|
remediation: {
|
|
9748
|
-
trigger: "FAIL_GATE_CRITERIA";
|
|
9749
10177
|
action: string;
|
|
10178
|
+
trigger: "FAIL_GATE_CRITERIA";
|
|
9750
10179
|
focus_minutes?: number | undefined;
|
|
9751
10180
|
};
|
|
9752
10181
|
}[] | undefined;
|
|
@@ -9760,8 +10189,8 @@ declare const CurriculumPlanSchema: z.ZodObject<{
|
|
|
9760
10189
|
concept_prerequisites?: {
|
|
9761
10190
|
concept_code: string;
|
|
9762
10191
|
requires: string;
|
|
9763
|
-
source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
|
|
9764
10192
|
rationale?: string | undefined;
|
|
10193
|
+
source?: "MASTER_TREE" | "INFERRED" | "CONCEPT_LEVEL_PREREQ" | undefined;
|
|
9765
10194
|
confidence?: number | undefined;
|
|
9766
10195
|
structure_supported?: boolean | undefined;
|
|
9767
10196
|
needs_review?: boolean | undefined;
|
|
@@ -9987,9 +10416,9 @@ declare const PlanningGraphSchema: z.ZodObject<{
|
|
|
9987
10416
|
rationale: z.ZodDefault<z.ZodString>;
|
|
9988
10417
|
}, "strip", z.ZodTypeAny, {
|
|
9989
10418
|
name: string;
|
|
10419
|
+
rationale: string;
|
|
9990
10420
|
id: string;
|
|
9991
10421
|
node_ids: string[];
|
|
9992
|
-
rationale: string;
|
|
9993
10422
|
}, {
|
|
9994
10423
|
name: string;
|
|
9995
10424
|
id: string;
|
|
@@ -10051,9 +10480,9 @@ declare const PlanningGraphSchema: z.ZodObject<{
|
|
|
10051
10480
|
}[];
|
|
10052
10481
|
groupings: {
|
|
10053
10482
|
name: string;
|
|
10483
|
+
rationale: string;
|
|
10054
10484
|
id: string;
|
|
10055
10485
|
node_ids: string[];
|
|
10056
|
-
rationale: string;
|
|
10057
10486
|
}[];
|
|
10058
10487
|
phases: {
|
|
10059
10488
|
name: string;
|
|
@@ -13975,8 +14404,8 @@ declare const MilestoneInputSchema: z.ZodObject<{
|
|
|
13975
14404
|
}, "strip", z.ZodTypeAny, {
|
|
13976
14405
|
description: string;
|
|
13977
14406
|
name: string;
|
|
13978
|
-
difficulty: string;
|
|
13979
14407
|
rationale: string | string[];
|
|
14408
|
+
difficulty: string;
|
|
13980
14409
|
concept_code: string;
|
|
13981
14410
|
new_keywords: string[];
|
|
13982
14411
|
prerequisite_keywords: string[];
|
|
@@ -14007,9 +14436,9 @@ declare const MilestoneInputSchema: z.ZodObject<{
|
|
|
14007
14436
|
}, {
|
|
14008
14437
|
name: string;
|
|
14009
14438
|
description?: string | undefined;
|
|
14439
|
+
rationale?: string | string[] | undefined;
|
|
14010
14440
|
id?: string | undefined;
|
|
14011
14441
|
difficulty?: string | undefined;
|
|
14012
|
-
rationale?: string | string[] | undefined;
|
|
14013
14442
|
concept_code?: string | undefined;
|
|
14014
14443
|
new_keywords?: string[] | undefined;
|
|
14015
14444
|
prerequisite_keywords?: string[] | undefined;
|
|
@@ -14127,8 +14556,8 @@ declare const PhaseInputSchema: z.ZodObject<{
|
|
|
14127
14556
|
}, "strip", z.ZodTypeAny, {
|
|
14128
14557
|
description: string;
|
|
14129
14558
|
name: string;
|
|
14130
|
-
difficulty: string;
|
|
14131
14559
|
rationale: string | string[];
|
|
14560
|
+
difficulty: string;
|
|
14132
14561
|
concept_code: string;
|
|
14133
14562
|
new_keywords: string[];
|
|
14134
14563
|
prerequisite_keywords: string[];
|
|
@@ -14159,9 +14588,9 @@ declare const PhaseInputSchema: z.ZodObject<{
|
|
|
14159
14588
|
}, {
|
|
14160
14589
|
name: string;
|
|
14161
14590
|
description?: string | undefined;
|
|
14591
|
+
rationale?: string | string[] | undefined;
|
|
14162
14592
|
id?: string | undefined;
|
|
14163
14593
|
difficulty?: string | undefined;
|
|
14164
|
-
rationale?: string | string[] | undefined;
|
|
14165
14594
|
concept_code?: string | undefined;
|
|
14166
14595
|
new_keywords?: string[] | undefined;
|
|
14167
14596
|
prerequisite_keywords?: string[] | undefined;
|
|
@@ -14195,8 +14624,8 @@ declare const PhaseInputSchema: z.ZodObject<{
|
|
|
14195
14624
|
milestones: {
|
|
14196
14625
|
description: string;
|
|
14197
14626
|
name: string;
|
|
14198
|
-
difficulty: string;
|
|
14199
14627
|
rationale: string | string[];
|
|
14628
|
+
difficulty: string;
|
|
14200
14629
|
concept_code: string;
|
|
14201
14630
|
new_keywords: string[];
|
|
14202
14631
|
prerequisite_keywords: string[];
|
|
@@ -14237,9 +14666,9 @@ declare const PhaseInputSchema: z.ZodObject<{
|
|
|
14237
14666
|
milestones?: {
|
|
14238
14667
|
name: string;
|
|
14239
14668
|
description?: string | undefined;
|
|
14669
|
+
rationale?: string | string[] | undefined;
|
|
14240
14670
|
id?: string | undefined;
|
|
14241
14671
|
difficulty?: string | undefined;
|
|
14242
|
-
rationale?: string | string[] | undefined;
|
|
14243
14672
|
concept_code?: string | undefined;
|
|
14244
14673
|
new_keywords?: string[] | undefined;
|
|
14245
14674
|
prerequisite_keywords?: string[] | undefined;
|
|
@@ -14373,8 +14802,8 @@ declare const RoadmapInputSchema: z.ZodObject<{
|
|
|
14373
14802
|
}, "strip", z.ZodTypeAny, {
|
|
14374
14803
|
description: string;
|
|
14375
14804
|
name: string;
|
|
14376
|
-
difficulty: string;
|
|
14377
14805
|
rationale: string | string[];
|
|
14806
|
+
difficulty: string;
|
|
14378
14807
|
concept_code: string;
|
|
14379
14808
|
new_keywords: string[];
|
|
14380
14809
|
prerequisite_keywords: string[];
|
|
@@ -14405,9 +14834,9 @@ declare const RoadmapInputSchema: z.ZodObject<{
|
|
|
14405
14834
|
}, {
|
|
14406
14835
|
name: string;
|
|
14407
14836
|
description?: string | undefined;
|
|
14837
|
+
rationale?: string | string[] | undefined;
|
|
14408
14838
|
id?: string | undefined;
|
|
14409
14839
|
difficulty?: string | undefined;
|
|
14410
|
-
rationale?: string | string[] | undefined;
|
|
14411
14840
|
concept_code?: string | undefined;
|
|
14412
14841
|
new_keywords?: string[] | undefined;
|
|
14413
14842
|
prerequisite_keywords?: string[] | undefined;
|
|
@@ -14441,8 +14870,8 @@ declare const RoadmapInputSchema: z.ZodObject<{
|
|
|
14441
14870
|
milestones: {
|
|
14442
14871
|
description: string;
|
|
14443
14872
|
name: string;
|
|
14444
|
-
difficulty: string;
|
|
14445
14873
|
rationale: string | string[];
|
|
14874
|
+
difficulty: string;
|
|
14446
14875
|
concept_code: string;
|
|
14447
14876
|
new_keywords: string[];
|
|
14448
14877
|
prerequisite_keywords: string[];
|
|
@@ -14483,9 +14912,9 @@ declare const RoadmapInputSchema: z.ZodObject<{
|
|
|
14483
14912
|
milestones?: {
|
|
14484
14913
|
name: string;
|
|
14485
14914
|
description?: string | undefined;
|
|
14915
|
+
rationale?: string | string[] | undefined;
|
|
14486
14916
|
id?: string | undefined;
|
|
14487
14917
|
difficulty?: string | undefined;
|
|
14488
|
-
rationale?: string | string[] | undefined;
|
|
14489
14918
|
concept_code?: string | undefined;
|
|
14490
14919
|
new_keywords?: string[] | undefined;
|
|
14491
14920
|
prerequisite_keywords?: string[] | undefined;
|
|
@@ -14521,8 +14950,8 @@ declare const RoadmapInputSchema: z.ZodObject<{
|
|
|
14521
14950
|
milestones: {
|
|
14522
14951
|
description: string;
|
|
14523
14952
|
name: string;
|
|
14524
|
-
difficulty: string;
|
|
14525
14953
|
rationale: string | string[];
|
|
14954
|
+
difficulty: string;
|
|
14526
14955
|
concept_code: string;
|
|
14527
14956
|
new_keywords: string[];
|
|
14528
14957
|
prerequisite_keywords: string[];
|
|
@@ -14589,9 +15018,9 @@ declare const RoadmapInputSchema: z.ZodObject<{
|
|
|
14589
15018
|
milestones?: {
|
|
14590
15019
|
name: string;
|
|
14591
15020
|
description?: string | undefined;
|
|
15021
|
+
rationale?: string | string[] | undefined;
|
|
14592
15022
|
id?: string | undefined;
|
|
14593
15023
|
difficulty?: string | undefined;
|
|
14594
|
-
rationale?: string | string[] | undefined;
|
|
14595
15024
|
concept_code?: string | undefined;
|
|
14596
15025
|
new_keywords?: string[] | undefined;
|
|
14597
15026
|
prerequisite_keywords?: string[] | undefined;
|
|
@@ -14632,4 +15061,4 @@ interface ProjectRoadmap {
|
|
|
14632
15061
|
milestones: MilestoneInput[];
|
|
14633
15062
|
}
|
|
14634
15063
|
|
|
14635
|
-
export { type ActiveLearningWorkflow, ActiveLearningWorkflowSchema, type ActivityLab, ActivityLabSchema, type ActivitySeqRow, ActivitySeqRowSchema, ActivityStepSchema, ArtifactContractRowSchema, AssessmentMapRowSchema, type AssessmentObjective, AssessmentObjectiveSchema, type BellRinger, type BellRingerDay, BellRingerDaySchema, type BellRingerInput, BellRingerSchema, type BloomLevel, BloomLevelSchema, type BronzeTier, BronzeTierSchema, type CERConclusion, CERConclusionSchema, CardTierEnum, type ChoiceBoard, type ChoiceBoardInput, ChoiceBoardRubricRowSchema, ChoiceBoardSchema, ChoiceRuleSchema, type ChoiceSquare, ChoiceSquareSchema, type CodeLab, CodeLabSchema, type CodeSnippet, CodeSnippetSchema, type CompetencyRubricRow, CompetencyRubricRowSchema, type ComputationalThinking, ComputationalThinkingSchema, type ConceptPrerequisiteEdge, ConceptPrerequisiteEdgeSchema, type ConceptSpiralEncounter, ConceptSpiralEncounterSchema, type CoreConcept, CoreConceptSchema, type CourseObjective, CourseObjectiveSchema, type CoverageReport, CoverageReportSchema, type CurriculumArtifact, CurriculumArtifactSchema, type CurriculumPlan, CurriculumPlanSchema, type CurriculumQualityReport, CurriculumQualityReportSchema, type DependencyEdge, DependencyEdgeSchema, type DepthAssignment, DepthAssignmentSchema, type DepthLevel, DepthLevelSchema, type DiagnosticQuestion, type DiagnosticQuestionInput, DiagnosticQuestionSchema, type DiagnosticQuiz, type DiagnosticQuizInput, DiagnosticQuizSchema, EDPPhaseEnum, EntryLevelSchema, type ExitTicket, type ExitTicketBugHunt, ExitTicketBugHuntSchema, ExitTicketMetacognitionSchema, ExitTicketQuickItemSchema, ExitTicketRecallPromptSchema, ExitTicketSchema, ExperimentalDesignSchema, type Extension, ExtensionChallengeSchema, ExtensionSchema, FiveEFlowPhaseSchema, FiveEPhaseEnum, type Glossary, type GlossaryInput, GlossaryQuickRefRowSchema, GlossarySchema, type GlossaryTerm, GlossaryTermSchema, type GoldTier, GoldTierSchema, type GraphicOrganizer, type GraphicOrganizerInput, type GraphicOrganizerItem, GraphicOrganizerItemSchema, GraphicOrganizerSchema, type Handout, HandoutSchema, type HandoutSection, HandoutSectionSchema, type InstructionSection, InstructionSectionSchema, type InstructionStep, InstructionStepSchema, JudgeCriterionSchema, type LabTierTask, LabTierTaskSchema, type LearningObjectiveInput, LearningObjectiveInputSchema, type LearningObjectiveRow, LearningObjectiveRowSchema, type LessonFlowPhase, LessonFlowPhaseSchema, type LessonPlan, type LessonPlan5E, LessonPlan5ESchema, type LessonPlanEDP, LessonPlanEDPSchema, LessonPlanSchema, LessonSectionSchema, type MarpSlide, MarpSlideSchema, type MasteryGate, MasteryGateSchema, MentorCheatsheetSchema, type MilestoneInput, MilestoneInputSchema, type Misconception, MisconceptionSchema, NodeKindSchema, OrganizerTypeEnum, type PhaseInput, PhaseInputSchema, type PlanConstraints, PlanConstraintsSchema, type PlannerInput, PlannerInputSchema, type PlanningGraph, PlanningGraphSchema, type PlanningNode, PlanningNodeSchema, type PlanningPhase, type PrerequisiteDecision, type PrerequisiteDecisionEntry, PrerequisiteDecisionEntrySchema, PrerequisiteDecisionSchema, ProductGoalSchema, type ProgressiveHints, ProgressiveHintsSchema, type ProjectGraph, ProjectGraphSchema, type ProjectInstruction, ProjectInstructionSchema, type ProjectProfile, ProjectProfileSchema, type ProjectRoadmap, QualityAuditVerdictSchema, type QuizOption, QuizOptionSchema, ResourceMapRowSchema, type ReviewGame, ReviewGameExportRowSchema, type ReviewGameInput, type ReviewGameQuestion, ReviewGameQuestionSchema, ReviewGameSchema, type RoadmapInput, RoadmapInputSchema, type RotationStation, RotationStationSchema, type Rubric, type RubricCriteria, RubricCriteriaSchema, RubricSchema, type ScaffoldDecision, type ScaffoldDecisionEntry, ScaffoldDecisionEntrySchema, ScaffoldDecisionSchema, type ScienceLab, type ScienceLabInput, ScienceLabSchema, ScoringRubricRowSchema, type SelfLab, SelfLabSchema, type SelfPacedBundle, SelfPacedBundleSchema, type SelfPacedChallenge, SelfPacedChallengeSchema, type SessionPlan, SessionPlanSchema, type SessionZpdStatus, SessionZpdStatusSchema, type SilverTier, SilverTierSchema, type SlideDeck, SlideDeckSchema, StandardizedTermRowSchema, StationRecordRowSchema, type StationRotation, type StationRotationInput, StationRotationSchema, StationTypeEnum, type TaskCard, TaskCardSchema, type TaskCards, type TaskCardsInput, TaskCardsSchema, type TeacherGuide, TeacherGuideSchema, type TeachingScriptPhase, TeachingScriptPhaseSchema, TierLevelEnum, TierObjectiveSchema, type TieredPractice, TieredPracticeSchema, type TranslationPolicy, TranslationPolicySchema, type TroubleshootingEntry, TroubleshootingEntrySchema, type TroubleshootingRow, TroubleshootingRowSchema, type UnitPlan, UnitPlanSchema, UserJourneySchema, type WalkingSkeleton, WalkingSkeletonSchema, type Worksheet, type WorksheetItem, WorksheetItemSchema, WorksheetItemTypeEnum, type WorksheetPart, WorksheetPartSchema, WorksheetSchema, type ZpdVerdict, ZpdVerdictSchema, validateCurriculumPlan };
|
|
15064
|
+
export { type ActionableRepairAction, ActionableRepairActionSchema, type ActionableRepairPrompt, ActionableRepairPromptSchema, type ActiveLearningWorkflow, ActiveLearningWorkflowSchema, type ActivityLab, ActivityLabSchema, type ActivitySeqRow, ActivitySeqRowSchema, ActivityStepSchema, ArtifactContractRowSchema, AssessmentMapRowSchema, type AssessmentObjective, AssessmentObjectiveSchema, type BellRinger, type BellRingerDay, BellRingerDaySchema, type BellRingerInput, BellRingerSchema, type BloomLevel, BloomLevelSchema, type BronzeTier, BronzeTierSchema, type CERConclusion, CERConclusionSchema, CardTierEnum, type ChoiceBoard, type ChoiceBoardInput, ChoiceBoardRubricRowSchema, ChoiceBoardSchema, ChoiceRuleSchema, type ChoiceSquare, ChoiceSquareSchema, type CodeLab, CodeLabSchema, type CodeSnippet, CodeSnippetSchema, type CompetencyRubricRow, CompetencyRubricRowSchema, type ComputationalThinking, ComputationalThinkingSchema, type ConceptPrerequisiteEdge, ConceptPrerequisiteEdgeSchema, type ConceptSpiralEncounter, ConceptSpiralEncounterSchema, type CoreConcept, CoreConceptSchema, type CourseObjective, CourseObjectiveSchema, type CoverageReport, CoverageReportSchema, type CurriculumArtifact, CurriculumArtifactSchema, type CurriculumPlan, CurriculumPlanSchema, type CurriculumQualityReport, CurriculumQualityReportSchema, type DependencyEdge, DependencyEdgeSchema, type DepthAssignment, DepthAssignmentSchema, type DepthLevel, DepthLevelSchema, type DiagnosticQuestion, type DiagnosticQuestionInput, DiagnosticQuestionSchema, type DiagnosticQuiz, type DiagnosticQuizInput, DiagnosticQuizSchema, EDPPhaseEnum, EntryLevelSchema, type ExitTicket, type ExitTicketBugHunt, ExitTicketBugHuntSchema, ExitTicketMetacognitionSchema, ExitTicketQuickItemSchema, ExitTicketRecallPromptSchema, ExitTicketSchema, ExperimentalDesignSchema, type Extension, ExtensionChallengeSchema, ExtensionSchema, FiveEFlowPhaseSchema, FiveEPhaseEnum, type Glossary, type GlossaryInput, GlossaryQuickRefRowSchema, GlossarySchema, type GlossaryTerm, GlossaryTermSchema, type GoldTier, GoldTierSchema, type GraphicOrganizer, type GraphicOrganizerInput, type GraphicOrganizerItem, GraphicOrganizerItemSchema, GraphicOrganizerSchema, type Handout, HandoutSchema, type HandoutSection, HandoutSectionSchema, type InstructionSection, InstructionSectionSchema, type InstructionStep, InstructionStepSchema, type JudgeCriterion, JudgeCriterionSchema, type LabTierTask, LabTierTaskSchema, type LearningObjectiveInput, LearningObjectiveInputSchema, type LearningObjectiveRow, LearningObjectiveRowSchema, type LessonFlowPhase, LessonFlowPhaseSchema, type LessonPlan, type LessonPlan5E, LessonPlan5ESchema, type LessonPlanEDP, LessonPlanEDPSchema, LessonPlanSchema, LessonSectionSchema, type MacroPedagogyPlanAuditReport, MacroPedagogyPlanAuditSchema, type MarpSlide, MarpSlideSchema, type MasteryGate, MasteryGateSchema, MentorCheatsheetSchema, type MilestoneInput, MilestoneInputSchema, type Misconception, MisconceptionSchema, NodeKindSchema, OrganizerTypeEnum, type PhaseInput, PhaseInputSchema, type PlanConstraints, PlanConstraintsSchema, type PlannerInput, PlannerInputSchema, type PlanningGraph, PlanningGraphSchema, type PlanningNode, PlanningNodeSchema, type PlanningPhase, type PrerequisiteDecision, type PrerequisiteDecisionEntry, PrerequisiteDecisionEntrySchema, PrerequisiteDecisionSchema, ProductGoalSchema, type ProgressiveHints, ProgressiveHintsSchema, type ProjectGraph, type ProjectGraphAuditReport, ProjectGraphAuditSchema, ProjectGraphSchema, type ProjectInstruction, ProjectInstructionSchema, type ProjectProfile, ProjectProfileSchema, type ProjectRoadmap, type QualityAuditVerdict, QualityAuditVerdictSchema, type QuizOption, QuizOptionSchema, ResourceMapRowSchema, type ReviewGame, ReviewGameExportRowSchema, type ReviewGameInput, type ReviewGameQuestion, ReviewGameQuestionSchema, ReviewGameSchema, type RoadmapInput, RoadmapInputSchema, type RotationStation, RotationStationSchema, type Rubric, type RubricCriteria, RubricCriteriaSchema, RubricSchema, type ScaffoldDecision, type ScaffoldDecisionEntry, ScaffoldDecisionEntrySchema, ScaffoldDecisionSchema, type ScienceLab, type ScienceLabInput, ScienceLabSchema, ScoringRubricRowSchema, type SelfLab, SelfLabSchema, type SelfPacedBundle, SelfPacedBundleSchema, type SelfPacedChallenge, SelfPacedChallengeSchema, type SessionPlan, SessionPlanSchema, type SessionZpdStatus, SessionZpdStatusSchema, type SilverTier, SilverTierSchema, type SlideDeck, SlideDeckSchema, StandardizedTermRowSchema, StationRecordRowSchema, type StationRotation, type StationRotationInput, StationRotationSchema, StationTypeEnum, type TaskCard, TaskCardSchema, type TaskCards, type TaskCardsInput, TaskCardsSchema, type TeacherGuide, TeacherGuideSchema, type TeachingScriptPhase, TeachingScriptPhaseSchema, TierLevelEnum, TierObjectiveSchema, type TieredPractice, TieredPracticeSchema, type TranslationPolicy, TranslationPolicySchema, type TroubleshootingEntry, TroubleshootingEntrySchema, type TroubleshootingRow, TroubleshootingRowSchema, type UnitPlan, UnitPlanSchema, UserJourneySchema, type WalkingSkeleton, WalkingSkeletonSchema, type Worksheet, type WorksheetItem, WorksheetItemSchema, WorksheetItemTypeEnum, type WorksheetPart, WorksheetPartSchema, WorksheetSchema, type ZpdVerdict, ZpdVerdictSchema, validateCurriculumPlan };
|