From 0b63783d95e679e9e5be19623ffca6f237adcb68 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sat, 13 Jun 2026 11:06:09 -0700 Subject: [PATCH] fix(doctor): assign memory_verbs_usage check to the SKILL category set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new memory_verbs_usage doctor check (Cathedral 1, E4) was added without a category, tripping the doctor-categories drift guard (every check name must belong to exactly one category set). It's an agent-capability adoption signal, a sibling of retrieval_reflex_health — assigned to SKILL_CHECK_NAMES. Cathedral 1 ship-review fix (#cathedral-1) Co-Authored-By: Claude Fable 5 --- src/core/doctor-categories.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/doctor-categories.ts b/src/core/doctor-categories.ts index e8adebb71..bd910fd0a 100644 --- a/src/core/doctor-categories.ts +++ b/src/core/doctor-categories.ts @@ -115,6 +115,7 @@ export const BRAIN_CHECK_NAMES: ReadonlySet = new Set([ * skill-flavored name) live under 'brain'. */ export const SKILL_CHECK_NAMES: ReadonlySet = new Set([ + 'memory_verbs_usage', 'resolver_health', 'retrieval_reflex_health', 'skill_brain_first',