From 418d605bd06c316f20c2c59a82be6a935fb89a8d Mon Sep 17 00:00:00 2001 From: catlog22 Date: Tue, 24 Feb 2026 00:13:50 +0800 Subject: [PATCH] feat: add test skills to skill hub index --- ccw-skill-hub/skill-hub/index.json | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/ccw-skill-hub/skill-hub/index.json b/ccw-skill-hub/skill-hub/index.json index 0aee9c58..807018f1 100644 --- a/ccw-skill-hub/skill-hub/index.json +++ b/ccw-skill-hub/skill-hub/index.json @@ -1,5 +1,28 @@ { "version": "1.0.0", "updated_at": "2026-02-23T15:30:00Z", - "skills": [] + "skills": [ + { + "id": "code-review-helper", + "name": "Code Review Helper", + "description": "Assists with code review by analyzing patterns and suggesting improvements", + "version": "1.2.0", + "author": "CCW Team", + "category": "Code Quality", + "tags": ["review", "quality", "analysis", "best-practices"], + "downloadUrl": "https://raw.githubusercontent.com/catlog22/skill-hub/main/skills/code-review-helper/skill.tar.gz", + "readmeUrl": "https://raw.githubusercontent.com/catlog22/skill-hub/main/skills/code-review-helper/README.md" + }, + { + "id": "test-skill", + "name": "Test Skill", + "description": "A test skill to verify the Skill Hub functionality", + "version": "1.0.0", + "author": "CCW Team", + "category": "Development", + "tags": ["test", "demo", "utility"], + "downloadUrl": "https://raw.githubusercontent.com/catlog22/skill-hub/main/skills/test-skill/skill.tar.gz", + "readmeUrl": "https://raw.githubusercontent.com/catlog22/skill-hub/main/skills/test-skill/README.md" + } + ] }