init_setting
Initialize AI configuration by writing recommended settings to .cursor/settings.json file for enhanced development workflow.
Instructions
【初始化配置】在 .cursor/settings.json 中写入推荐的 AI 配置
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | No | 项目根目录的完整路径(默认使用当前工作区路径) |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "项目根目录的完整路径(默认使用当前工作区路径)",
"type": "string"
}
},
"required": [],
"type": "object"
}