diff --git a/skills/memory-schema/SKILL.md b/skills/memory-schema/SKILL.md index a47f326e..61af57b7 100644 --- a/skills/memory-schema/SKILL.md +++ b/skills/memory-schema/SKILL.md @@ -47,14 +47,14 @@ Use `(enum)` with a list of allowed values: ```yaml schema: - status(enum): [active, blocked, done, abandoned], current state + status(enum, current state): [active, blocked, done, abandoned] ``` Optional enum: ```yaml schema: - priority?(enum): [low, medium, high, critical], task priority + priority?(enum, task priority): [low, medium, high, critical] ``` ### Arrays @@ -100,7 +100,7 @@ schema: attendees?(array): Person, who attended decisions?(array): string, decisions made action_items?(array): string, follow-up tasks - status?(enum): [scheduled, completed, cancelled], meeting state + status?(enum, meeting state): [scheduled, completed, cancelled] settings: validation: warn --- diff --git a/skills/memory-tasks/SKILL.md b/skills/memory-tasks/SKILL.md index 3f44ed9d..ef4ad0ad 100644 --- a/skills/memory-tasks/SKILL.md +++ b/skills/memory-tasks/SKILL.md @@ -26,7 +26,7 @@ entity: Task version: 1 schema: description: string, what needs to be done - status?(enum): [active, blocked, done, abandoned], current state + status?(enum, current state): [active, blocked, done, abandoned] assigned_to?: string, who is working on this steps?(array): string, ordered steps to complete current_step?: integer, which step number we're on (1-indexed)