apply_prompt_proceed
Generate structured prompts to proceed with tasks or projects in Cursor IDE, integrating specific instructions and versioned templates for efficient task management.
Instructions
Provides a prompt template for proceeding with a task or project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
specific_instructions | No | Optional specific instructions to include in the prompt | |
task | Yes | A description of the task or project to proceed with | |
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": {
"specific_instructions": {
"description": "Optional specific instructions to include in the prompt",
"type": "string"
},
"task": {
"description": "A description of the task or project to proceed with",
"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": [
"task"
],
"type": "object"
}