response-language
Set or retrieve the response language for your project using specific parameters, ensuring compatibility with AI-driven development workflows in Cursor AI and code editors via Task Master.
Instructions
Get or set the response language for the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | The new response language to set. like "中文" "English" or "español". | |
projectRoot | Yes | The root directory for the project. ALWAYS SET THIS TO THE PROJECT ROOT DIRECTORY. IF NOT SET, THE TOOL WILL NOT WORK. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"description": "The new response language to set. like \"中文\" \"English\" or \"español\".",
"type": "string"
},
"projectRoot": {
"description": "The root directory for the project. ALWAYS SET THIS TO THE PROJECT ROOT DIRECTORY. IF NOT SET, THE TOOL WILL NOT WORK.",
"type": "string"
}
},
"required": [
"projectRoot",
"language"
],
"type": "object"
}