create_ide_configs
Generate IDE-specific configurations for Cursor, VS Code, and IntelliJ to streamline project setup and enhance coding efficiency. Customize with auto-loaded context, debugging setups, and tailored rules.
Instructions
Create IDE-specific configurations for Cursor, VS Code, and IntelliJ
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisId | No | Analysis ID from analyze_codebase_deeply | |
autoLoadContext | No | Enable automatic context loading | |
customRules | No | Custom rules to add | |
ide | Yes | Which IDE configurations to create | |
includeDebugConfigs | No | Include debugging configurations | |
projectPath | Yes | Path to the project directory |
Input Schema (JSON Schema)
{
"properties": {
"analysisId": {
"description": "Analysis ID from analyze_codebase_deeply",
"type": "string"
},
"autoLoadContext": {
"description": "Enable automatic context loading",
"type": "boolean"
},
"customRules": {
"description": "Custom rules to add",
"items": {
"type": "string"
},
"type": "array"
},
"ide": {
"description": "Which IDE configurations to create",
"enum": [
"cursor",
"vscode",
"intellij",
"all"
],
"type": "string"
},
"includeDebugConfigs": {
"description": "Include debugging configurations",
"type": "boolean"
},
"projectPath": {
"description": "Path to the project directory",
"type": "string"
}
},
"required": [
"projectPath",
"ide"
],
"type": "object"
}