create_chatmode
Generate a VS Code .chatmode.md file by defining its filename, description, content, and tools. Simplifies chatmode creation for managing conversations and instructions within the Mode Manager MCP server.
Instructions
Create a new VS Code .chatmode.md file with the specified description, content, and tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The main content/instructions for the chatmode in markdown format | |
description | Yes | A brief description of what this chatmode does | |
filename | Yes | The filename for the new chatmode (with or without extension) | |
tools | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The main content/instructions for the chatmode in markdown format",
"title": "Content",
"type": "string"
},
"description": {
"description": "A brief description of what this chatmode does",
"title": "Description",
"type": "string"
},
"filename": {
"description": "The filename for the new chatmode (with or without extension)",
"title": "Filename",
"type": "string"
},
"tools": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Tools"
}
},
"required": [
"filename",
"description",
"content"
],
"type": "object"
}