generate
Create individual task files in the tasks/ directory from tasks.json. Specify the project root, optional output directory, and tag context to organize task management effectively.
Instructions
Generates individual task files in tasks/ directory based on tasks.json
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | No | Absolute path to the tasks file | |
output | No | Output directory (default: same directory as tasks file) | |
projectRoot | Yes | The directory of the project. Must be an absolute path. | |
tag | No | Tag context to operate on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file": {
"description": "Absolute path to the tasks file",
"type": "string"
},
"output": {
"description": "Output directory (default: same directory as tasks file)",
"type": "string"
},
"projectRoot": {
"description": "The directory of the project. Must be an absolute path.",
"type": "string"
},
"tag": {
"description": "Tag context to operate on",
"type": "string"
}
},
"required": [
"projectRoot"
],
"type": "object"
}