generate-prd
Automate the creation of detailed product requirements documents (PRDs) from product descriptions. Ideal for streamlining project planning and development workflows.
Instructions
Creates comprehensive product requirements documents based on a product description and research.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productDescription | Yes | Description of the product to create a PRD for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productDescription": {
"description": "Description of the product to create a PRD for",
"minLength": 10,
"type": "string"
}
},
"required": [
"productDescription"
],
"type": "object"
}