open_project
Open a project folder in VS Code as soon as a new session starts with the AI Agent, ensuring the active working directory is visible and ready for use.
Instructions
Call this tool as soon as a new session begins with the AI Agent to ensure we are set up and ready to go. open_project opens a project folder in VS Code. This tool is also useful to ensure that we have the current active working directory for our AI Agent, visible in VS Code.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| newWindow | No | Whether to open the project in a new window | |
| projectPath | Yes | Path to the project folder to open in VS Code |
Input Schema (JSON Schema)
{
"properties": {
"newWindow": {
"default": true,
"description": "Whether to open the project in a new window",
"type": "boolean"
},
"projectPath": {
"description": "Path to the project folder to open in VS Code",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}