generate-fullstack-starter-kit
Generate full-stack project starter kits tailored to specific use cases, with customizable tech stacks, optional features, and research-informed recommendations for efficient development.
Instructions
Generates full-stack project starter kits with custom tech stacks, research-informed recommendations, and setup scripts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_optional_features | No | Optional features to include (e.g., ['Docker', 'CI/CD']) | |
request_recommendation | No | Whether to request recommendations for tech stack components based on research | |
tech_stack_preferences | No | Optional tech stack preferences (e.g., { frontend: 'Vue', backend: 'Python' }) | |
use_case | Yes | The specific use case for the starter kit (e.g., 'E-commerce site', 'Blog platform') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"include_optional_features": {
"description": "Optional features to include (e.g., ['Docker', 'CI/CD'])",
"items": {
"type": "string"
},
"type": "array"
},
"request_recommendation": {
"description": "Whether to request recommendations for tech stack components based on research",
"type": "boolean"
},
"tech_stack_preferences": {
"additionalProperties": {
"anyOf": [
{
"not": {}
},
{
"type": "string"
}
]
},
"description": "Optional tech stack preferences (e.g., { frontend: 'Vue', backend: 'Python' })",
"type": "object"
},
"use_case": {
"description": "The specific use case for the starter kit (e.g., 'E-commerce site', 'Blog platform')",
"minLength": 5,
"type": "string"
}
},
"required": [
"use_case"
],
"type": "object"
}