generate-rules
Automate the creation of project-specific development rules tailored to product descriptions, user stories, and predefined categories using AI-powered tools for streamlined software development workflows.
Instructions
Creates project-specific development rules based on product description, user stories, and research.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productDescription | Yes | Description of the product being developed | |
ruleCategories | No | Optional categories of rules to generate (e.g., 'Code Style', 'Security') | |
userStories | No | Optional user stories to inform the rules |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productDescription": {
"description": "Description of the product being developed",
"minLength": 10,
"type": "string"
},
"ruleCategories": {
"description": "Optional categories of rules to generate (e.g., 'Code Style', 'Security')",
"items": {
"type": "string"
},
"type": "array"
},
"userStories": {
"description": "Optional user stories to inform the rules",
"type": "string"
}
},
"required": [
"productDescription"
],
"type": "object"
}