apply_prompt_fix_linter
Analyzes and fixes linter errors by generating actionable prompts with optional specific instructions, enabling efficient error resolution in Cursor IDE.
Instructions
Provides a prompt for analyzing and fixing linter errors
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue | Yes | A description of the linter errors to be analyzed and fixed | |
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": {
"issue": {
"description": "A description of the linter errors to be analyzed and fixed",
"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": [
"issue"
],
"type": "object"
}