apply_prompt_change
Generates structured prompts to manage and implement change requests in Cursor IDE, enabling efficient handling of modifications with optional version control and specific instructions.
Instructions
Provides a prompt for systematically handling change requests
Input Schema
Name | Required | Description | Default |
---|---|---|---|
change_request | Yes | Description of the change request to implement | |
specific_instructions | No | Optional specific instructions to include in the prompt | |
version | No | The version of the prompt template to use (e.g., '1.0.0', '1.1.0', or 'latest') |
Input Schema (JSON Schema)
{
"properties": {
"change_request": {
"description": "Description of the change request to implement",
"type": "string"
},
"specific_instructions": {
"description": "Optional specific instructions to include in the prompt",
"type": "string"
},
"version": {
"description": "The version of the prompt template to use (e.g., '1.0.0', '1.1.0', or 'latest')",
"type": "string"
}
},
"required": [
"change_request"
],
"type": "object"
}