Adding vscode tasks

This commit is contained in:
Aaron Powell
2025-12-18 10:50:33 +11:00
parent 48cf3ac6c9
commit 16f3220990

38
.vscode/tasks.json vendored
View File

@@ -41,9 +41,33 @@
"${input:tags}"
],
"problemMatcher": [],
"group": "build",
"group": "none",
"detail": "Creates a new collection manifest template.",
"dependsOn": "npm install"
},
{
"label": "create-skill",
"type": "shell",
"command": "npm run skill:create",
"args": [
"--name",
"${input:skillName}",
"--description",
"${input:skillDescription}"
],
"problemMatcher": [],
"group": "none",
"detail": "Creates a new skill template.",
"dependsOn": "npm install"
},
{
"label": "validate-skills",
"type": "shell",
"command": "npm run skill:validate",
"problemMatcher": [],
"group": "build",
"detail": "Validates all skill manifest files.",
"dependsOn": "npm install"
}
],
"inputs": [
@@ -58,6 +82,18 @@
"description": "Comma separated list of tags",
"default": "tag1,tag2",
"type": "promptString"
},
{
"id": "skillName",
"description": "Skill name (PascalCase)",
"default": "MySkill",
"type": "promptString"
},
{
"id": "skillDescription",
"description": "Brief description of the skill",
"default": "A brief description of my skill.",
"type": "promptString"
}
]
}