copilot-swe-agent[bot] 4476bf37cb Complete Collections feature implementation with validation, tooling, and documentation
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
2025-09-09 01:37:15 +00:00

42 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "generate-readme",
"type": "shell",
"command": "node update-readme.js",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Generates the README.md file using update-readme.js script."
},
{
"label": "validate-collections",
"type": "shell",
"command": "node validate-collections.js",
"problemMatcher": [],
"group": "build",
"detail": "Validates all collection manifest files."
},
{
"label": "create-collection",
"type": "shell",
"command": "${workspaceFolder}/create-collection.js",
"args": ["${input:collectionId}"],
"problemMatcher": [],
"group": "build",
"detail": "Creates a new collection manifest template."
}
],
"inputs": [
{
"id": "collectionId",
"description": "Collection ID (lowercase, hyphen-separated)",
"default": "my-collection",
"type": "promptString"
}
]
}