From 03cb605a4fa05800fc908d998d3cfc45c321a068 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Thu, 18 Dec 2025 11:02:21 +1100 Subject: [PATCH] supporting skills in collections --- .schemas/collection.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.schemas/collection.schema.json b/.schemas/collection.schema.json index 838cdb14..22b0428b 100644 --- a/.schemas/collection.schema.json +++ b/.schemas/collection.schema.json @@ -50,13 +50,13 @@ "path": { "type": "string", "description": "Relative path from repository root to the item file", - "pattern": "^(prompts|instructions|agents)/[^/]+\\.(prompt|instructions|agent)\\.md$", + "pattern": "^(?:skills/[^/]+/SKILL\\.md|(prompts|instructions|agents)/[^/]+\\.(prompt|instructions|agent)\\.md)$", "minLength": 1 }, "kind": { "type": "string", "description": "Type of the item", - "enum": ["prompt", "instruction", "agent"] + "enum": ["prompt", "instruction", "agent", "skill"] }, "usage": { "type": "string",