add_feature
Enhance project workflows by integrating new features into PRDs, analyzing their impact, and converting them into actionable tasks with full lifecycle management in GitHub Projects.
Instructions
Add a new feature to an existing PRD or project, analyze its impact, and expand it into actionable tasks with complete lifecycle management
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoApprove | Yes | ||
businessJustification | No | ||
createLifecycle | Yes | ||
description | Yes | ||
expandToTasks | Yes | ||
featureIdea | Yes | ||
requestedBy | Yes | ||
targetPRD | No | ||
targetProject | No | ||
targetUsers | No |
Input Schema (JSON Schema)
{
"properties": {
"autoApprove": {
"type": "string"
},
"businessJustification": {
"type": "string"
},
"createLifecycle": {
"type": "string"
},
"description": {
"type": "string"
},
"expandToTasks": {
"type": "string"
},
"featureIdea": {
"type": "string"
},
"requestedBy": {
"type": "string"
},
"targetPRD": {
"type": "string"
},
"targetProject": {
"type": "string"
},
"targetUsers": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"featureIdea",
"description",
"requestedBy",
"autoApprove",
"expandToTasks",
"createLifecycle"
],
"type": "object"
}