generate_spec
Create detailed specification documents using OpenAI's O3 model with customizable prompts, context, and output formats like markdown or structured text.
Instructions
Generate a specification document using OpenAI O3 model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context or requirements | |
format | No | Output format for the specification | markdown |
prompt | Yes | Description of what specification to generate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"context": {
"description": "Additional context or requirements",
"type": "string"
},
"format": {
"default": "markdown",
"description": "Output format for the specification",
"enum": [
"markdown",
"structured"
],
"type": "string"
},
"prompt": {
"description": "Description of what specification to generate",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}