engineer_prompt
Optimize and refine prompts for Claude Code with automatic language detection and structured output. Enhance effectiveness through interactive Q&A and context-aware adjustments.
Instructions
Intelligently engineers and optimizes prompts for Claude Code, with interactive refinement and automatic optimization for maximum effectiveness.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context about the codebase or project (optional) | |
interactive | No | Whether to enable interactive Q&A refinement (default: false) | |
language | No | The programming language (optional, will be detected if not provided) | |
prompt | Yes | The raw user prompt that needs engineering |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Additional context about the codebase or project (optional)",
"type": "string"
},
"interactive": {
"description": "Whether to enable interactive Q&A refinement (default: false)",
"type": "boolean"
},
"language": {
"description": "The programming language (optional, will be detected if not provided)",
"type": "string"
},
"prompt": {
"description": "The raw user prompt that needs engineering",
"type": "string"
}
},
"required": [
"prompt"
],
"title": "engineer_promptArguments",
"type": "object"
}