initialize_ide
Set up IDE project structure by creating required directories and configuration files for seamless IDE integration. Automatically uses the current working directory if project path is not specified.
Instructions
Initialize IDE project structure with appropriate directories and config files.
This tool sets up the necessary directories and configuration files for IDE
integration, including .ai-templates directory and IDE-specific rules.
Note: If project_path is omitted, not a string, invalid, or the directory doesn't exist,
the current working directory will be used automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ide_type | No | The type of IDE to initialize (cursor, windsurf-next, windsurf, cline, roo, copilot) | cursor |
project_path | No | Path to the project. If not provided, invalid, or directory doesn't exist, the current working directory will be used automatically |
Input Schema (JSON Schema)
{
"properties": {
"ide_type": {
"default": "cursor",
"description": "The type of IDE to initialize (cursor, windsurf-next, windsurf, cline, roo, copilot)",
"title": "Ide Type",
"type": "string"
},
"project_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Path to the project. If not provided, invalid, or directory doesn't exist, the current working directory will be used automatically",
"title": "Project Path"
}
},
"title": "initialize_ideArguments",
"type": "object"
}