delete_instruction
Remove a .instructions.md file from the prompts directory in VS Code using Mode Manager MCP. Specify the instruction name for precise deletion to declutter your workspace.
Instructions
Delete a VS Code .instructions.md file from the prompts directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instruction_name | Yes | The name of the instruction to delete (with or without extension) |
Input Schema (JSON Schema)
{
"properties": {
"instruction_name": {
"description": "The name of the instruction to delete (with or without extension)",
"title": "Instruction Name",
"type": "string"
}
},
"required": [
"instruction_name"
],
"type": "object"
}