generate_prd
Generate product requirement documents (PRDs) for software features using a structured workflow. Input a feature ID to clarify specifications, streamline development, and ensure consistent progress tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featureId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId"
],
"type": "object"
}