mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-23 11:55:12 +00:00
Adding vscode tasks
This commit is contained in:
38
.vscode/tasks.json
vendored
38
.vscode/tasks.json
vendored
@@ -41,9 +41,33 @@
|
|||||||
"${input:tags}"
|
"${input:tags}"
|
||||||
],
|
],
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"group": "build",
|
"group": "none",
|
||||||
"detail": "Creates a new collection manifest template.",
|
"detail": "Creates a new collection manifest template.",
|
||||||
"dependsOn": "npm install"
|
"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": [
|
"inputs": [
|
||||||
@@ -58,6 +82,18 @@
|
|||||||
"description": "Comma separated list of tags",
|
"description": "Comma separated list of tags",
|
||||||
"default": "tag1,tag2",
|
"default": "tag1,tag2",
|
||||||
"type": "promptString"
|
"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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user