create_instruction
Generate a VS Code .instructions.md file with a specified name, description, and markdown content to define and manage coding instructions within Mode Manager MCP.
Instructions
Create a new VS Code .instructions.md file with the specified description and content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The main content/instructions in markdown format | |
description | Yes | A brief description of what this instruction does | |
instruction_name | Yes | The name for the new instruction (with or without extension) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The main content/instructions in markdown format",
"title": "Content",
"type": "string"
},
"description": {
"description": "A brief description of what this instruction does",
"title": "Description",
"type": "string"
},
"instruction_name": {
"description": "The name for the new instruction (with or without extension)",
"title": "Instruction Name",
"type": "string"
}
},
"required": [
"instruction_name",
"description",
"content"
],
"type": "object"
}