get_active_tabs
Retrieve details of currently open tabs in VS Code, including file content if specified, to provide context for AI agent operations within a project.
Instructions
Retrieves information about currently open tabs in VS Code to provide context for the AI agent.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| includeContent | No | Whether to include the file content of each tab (may be large) | |
| targetProjectPath | Yes | Path to the project folder we are working in | 
Input Schema (JSON Schema)
{
  "properties": {
    "includeContent": {
      "default": false,
      "description": "Whether to include the file content of each tab (may be large)",
      "type": "boolean"
    },
    "targetProjectPath": {
      "description": "Path to the project folder we are working in",
      "type": "string"
    }
  },
  "required": [
    "targetProjectPath"
  ],
  "type": "object"
}