Awesome Copilot collection (#360)

* Adding a collection for the meta prompts to help discover items in the awesome copilot repo

* Forgot to run validation locally

* YAML schema validation set and updating readme
This commit is contained in:
Aaron Powell
2025-10-29 11:56:47 +11:00
committed by GitHub
parent 704a299571
commit 22cf265019
9 changed files with 136 additions and 7 deletions

View File

@@ -13,5 +13,8 @@
"*.chatmode.md": "markdown",
"*.instructions.md": "markdown",
"*.prompt.md": "markdown"
},
"yaml.schemas": {
"./.schemas/collection.schema.json": "*.collection.yml"
}
}

17
.vscode/tasks.json vendored
View File

@@ -1,6 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "npm install",
"type": "shell",
"command": "npm ci",
"problemMatcher": [],
"group": "build",
"detail": "Installs all npm dependencies."
},
{
"label": "generate-readme",
"type": "shell",
@@ -10,7 +18,8 @@
"kind": "build",
"isDefault": true
},
"detail": "Generates the README.md file using update-readme.js script."
"detail": "Generates the README.md file using update-readme.js script.",
"dependsOn": "npm install"
},
{
"label": "validate-collections",
@@ -18,7 +27,8 @@
"command": "node ${workspaceFolder}/eng/validate-collections.js",
"problemMatcher": [],
"group": "build",
"detail": "Validates all collection manifest files."
"detail": "Validates all collection manifest files.",
"dependsOn": "npm install"
},
{
"label": "create-collection",
@@ -33,7 +43,8 @@
],
"problemMatcher": [],
"group": "build",
"detail": "Creates a new collection manifest template."
"detail": "Creates a new collection manifest template.",
"dependsOn": "npm install"
}
],
"inputs": [