normalize-prompt
Normalize and restructure raw prompts for clarity and consistency. Adjust formatting, tighten language, and preflight prompts for optimal use in code or general contexts.
Instructions
Alias of cleaner. Keywords: normalize, restructure, clarify, tighten, format, preflight. Same input/output schema as 'cleaner'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | No | Retouching mode; default 'general'. Use 'code' only for code-related prompts. | |
prompt | Yes | Raw user prompt | |
temperature | No | Sampling temperature (0-2); default 0.2 |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"description": "Retouching mode; default 'general'. Use 'code' only for code-related prompts.",
"enum": [
"code",
"general"
],
"type": "string"
},
"prompt": {
"description": "Raw user prompt",
"type": "string"
},
"temperature": {
"description": "Sampling temperature (0-2); default 0.2",
"type": "number"
}
},
"required": [
"prompt"
],
"type": "object"
}