Skip to content

Commit 27ad3d7

Browse files
committed
fix(doctor): map runtime tool schema health
1 parent 8fa5ecb commit 27ad3d7

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/flows/doctor-health-contributions.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,8 @@ async function runFinalConfigValidationHealth(ctx: DoctorHealthFlowContext): Pro
816816
}
817817
}
818818

819+
async function runRuntimeToolSchemasHealth(): Promise<void> {}
820+
819821
export function resolveDoctorHealthContributions(): DoctorHealthContribution[] {
820822
return [
821823
createDoctorHealthContribution({
@@ -954,6 +956,12 @@ export function resolveDoctorHealthContributions(): DoctorHealthContribution[] {
954956
label: "Tool result cap",
955957
run: runToolResultCapHealth,
956958
}),
959+
createDoctorHealthContribution({
960+
id: "doctor:runtime-tool-schemas",
961+
label: "Runtime tool schemas",
962+
healthCheckIds: ["core/doctor/runtime-tool-schemas"],
963+
run: runRuntimeToolSchemasHealth,
964+
}),
957965
createDoctorHealthContribution({
958966
id: "doctor:systemd-linger",
959967
label: "systemd linger",

0 commit comments

Comments
 (0)