redesign skills library (#8868)

Signed-off-by: morgmart <98432065+morgmart@users.noreply.github.com>
This commit is contained in:
morgmart
2026-04-27 23:58:17 -07:00
committed by GitHub
parent 96fa25bce8
commit b35eaf4bf9
33 changed files with 2879 additions and 767 deletions
+11 -1
View File
@@ -75,18 +75,28 @@ export const MOCK_PROJECTS = [
];
export const MOCK_SKILLS = [
{
name: "layout",
description: "Improves layout, spacing, and visual hierarchy",
instructions:
"When asked to improve a UI layout, tighten spacing, strengthen hierarchy, and refine composition.",
path: "/mock/.agents/skills/layout/SKILL.md",
global: true,
},
{
name: "code-review",
description: "Reviews code for quality and best practices",
instructions:
"When asked to review code, analyze the diff and provide feedback on code quality, potential bugs, and best practices.",
path: "/mock/.agents/skills/code-review/SKILL.md",
global: true,
},
{
name: "test-writer",
description: "Generates unit tests for given code",
instructions:
"When asked to write tests, generate comprehensive unit tests covering edge cases, happy paths, and error scenarios.",
path: "/mock/.agents/skills/test-writer/SKILL.md",
path: "/tmp/alpha/.goose/skills/test-writer/SKILL.md",
global: false,
},
];