initialize_ide_rules
Set up IDE-specific rules for your project by creating necessary files and directories. This tool ensures AI assistants understand project conventions. Uses current working directory if no path is specified.
Instructions
Initialize IDE rules for a project.
This tool sets up IDE-specific rules for a project, creating the necessary
files and directories for AI assistants to understand project conventions.
Note: If project_path is omitted, not a string, or invalid, the current working
directory will be used automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ide | No | The IDE to initialize rules for (cursor, windsurf-next, windsurf, cline, roo, copilot) | cursor |
project_path | No | Path to the project. If not provided or invalid, the current working directory will be used automatically |
Input Schema (JSON Schema)
{
"properties": {
"ide": {
"default": "cursor",
"description": "The IDE to initialize rules for (cursor, windsurf-next, windsurf, cline, roo, copilot)",
"title": "Ide",
"type": "string"
},
"project_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Path to the project. If not provided or invalid, the current working directory will be used automatically",
"title": "Project Path"
}
},
"title": "initialize_ide_rulesArguments",
"type": "object"
}