update_instruction
Modify a VS Code .instructions.md file by updating its description or content using the specified instruction name. Simplifies instruction management in Mode Manager MCP.
Instructions
Update an existing VS Code .instructions.md file with new description or content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
description | No | ||
instruction_name | Yes | The name of the instruction to update (with or without extension) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Content"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"instruction_name": {
"description": "The name of the instruction to update (with or without extension)",
"title": "Instruction Name",
"type": "string"
}
},
"required": [
"instruction_name"
],
"type": "object"
}