download
raw
193 kB
{
"name": "copilot-chat",
"displayName": "GitHub Copilot Chat",
"description": "AI chat features powered by Copilot",
"version": "0.37.9",
"build": "1",
"internalAIKey": "1058ec22-3c95-4951-8443-f26c1f325911",
"completionsCoreVersion": "1.378.1799",
"internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
"ariaKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
"buildType": "prod",
"publisher": "GitHub",
"homepage": "https://github.com/features/copilot?editor=vscode",
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-copilot-chat"
},
"bugs": {
"url": "https://github.com/microsoft/vscode/issues"
},
"qna": "https://github.com/github-community/community/discussions/categories/copilot",
"icon": "assets/copilot.png",
"pricing": "Trial",
"engines": {
"vscode": "^1.109.0-20260124",
"npm": ">=9.0.0",
"node": ">=22.14.0"
},
"categories": [
"AI",
"Chat",
"Programming Languages",
"Machine Learning"
],
"keywords": [
"ai",
"openai",
"codex",
"pilot",
"snippets",
"documentation",
"autocomplete",
"intellisense",
"refactor",
"javascript",
"python",
"typescript",
"php",
"go",
"golang",
"ruby",
"c++",
"c#",
"java",
"kotlin",
"co-pilot"
],
"badges": [
{
"url": "https://img.shields.io/badge/GitHub%20Copilot-Subscription%20Required-orange",
"href": "https://github.com/github-copilot/signup?editor=vscode",
"description": "%github.copilot.badge.signUp%"
},
{
"url": "https://img.shields.io/github/stars/github/copilot-docs?style=social",
"href": "https://github.com/github/copilot-docs",
"description": "%github.copilot.badge.star%"
},
{
"url": "https://img.shields.io/youtube/channel/views/UC7c3Kb6jYCRj4JOHHZTxKsQ?style=social",
"href": "https://www.youtube.com/@GitHub/search?query=copilot",
"description": "%github.copilot.badge.youtube%"
},
{
"url": "https://img.shields.io/twitter/follow/github?style=social",
"href": "https://twitter.com/github",
"description": "%github.copilot.badge.twitter%"
}
],
"activationEvents": [
"onStartupFinished",
"onLanguageModelChat:copilot",
"onUri",
"onFileSystem:ccreq",
"onFileSystem:ccsettings",
"onCustomAgentProvider"
],
"main": "./dist/extension",
"l10n": "./l10n",
"enabledApiProposals": [
"chatHooks@6",
"extensionsAny",
"newSymbolNamesProvider",
"interactive",
"codeActionAI",
"activeComment",
"commentReveal",
"contribCommentThreadAdditionalMenu",
"contribCommentsViewThreadMenus",
"contribChatEditorInlineGutterMenu",
"documentFiltersExclusive",
"embeddings",
"findTextInFiles",
"findTextInFiles2",
"languageModelToolSupportsModel@1",
"findFiles2@2",
"textSearchProvider",
"terminalDataWriteEvent",
"terminalExecuteCommandEvent",
"terminalSelection",
"terminalQuickFixProvider",
"mappedEditsProvider",
"aiRelatedInformation",
"aiSettingsSearch",
"chatParticipantAdditions",
"defaultChatParticipant@4",
"contribSourceControlInputBoxMenu",
"authLearnMore",
"testObserver",
"aiTextSearchProvider@2",
"chatParticipantPrivate@13",
"chatProvider@4",
"contribDebugCreateConfiguration",
"chatReferenceDiagnostic",
"textSearchProvider2",
"chatReferenceBinaryData",
"languageModelSystem",
"languageModelCapabilities",
"inlineCompletionsAdditions",
"chatStatusItem",
"taskProblemMatcherStatus",
"contribLanguageModelToolSets",
"textDocumentChangeReason",
"resolvers",
"taskExecutionTerminal",
"dataChannels",
"languageModelThinkingPart",
"chatSessionsProvider@3",
"devDeviceId",
"contribEditorContentMenu",
"chatPromptFiles",
"mcpServerDefinitions",
"tabInputMultiDiff",
"workspaceTrust"
],
"contributes": {
"languageModelTools": [
{
"name": "copilot_searchCodebase",
"toolReferenceName": "codebase",
"displayName": "%copilot.tools.searchCodebase.name%",
"icon": "$(folder)",
"userDescription": "%copilot.codebase.tool.description%",
"modelDescription": "Run a natural language search for relevant code or documentation comments from the user's current workspace. Returns relevant code snippets from the user's current workspace if it is large, or the full contents of the workspace if it is small.",
"tags": [
"codesearch",
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The query to search the codebase for. Should contain all relevant context. Should ideally be text that might appear in the codebase, such as function names, variable names, or comments."
}
},
"required": [
"query"
]
}
},
{
"name": "search_subagent",
"toolReferenceName": "searchSubagent",
"displayName": "%copilot.tools.searchSubagent.name%",
"icon": "$(search)",
"userDescription": "%copilot.tools.searchSubagent.description%",
"modelDescription": "Launch an iterative search-focused subagent that orchestrates semantic_search, grep_search, file_search and read_file tool calls to explore and gather relevant workspace code for a natural language query.\n CALL THIS FOR ANY TASK THAT REQUIRES CODEBASE EXPLORATION!\n\nRemember:\n1. Perform tool calls in parallel whenever possible\n2. Avoid redundant calls -- don't repeat identical searches.\n3. Stop once you have high-confidence, non-duplicative snippets covering the query scope.\n\nReturns: A list of relevant files/snippet locations in the workspace.\n\nInput fields:\n- query: Natural language description of what to search for.\n- description: Short user-visible invocation message. \n- details: 2-3 sentences detailing the objective of the search agent.",
"when": "config.github.copilot.chat.searchSubagent.enabled",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Natural language description of what to search for."
},
"description": {
"type": "string",
"description": "A short (3-5 word) description of the task."
},
"details": {
"type": "string",
"description": "A more detailed description of the objective for the search subagent. This helps the sub-agent remain on task and understand its purpose."
}
},
"required": [
"query",
"description",
"details"
]
}
},
{
"name": "copilot_searchWorkspaceSymbols",
"toolReferenceName": "symbols",
"displayName": "%copilot.tools.searchWorkspaceSymbols.name%",
"icon": "$(symbol)",
"userDescription": "%copilot.workspaceSymbols.tool.description%",
"modelDescription": "Search the user's workspace for code symbols using language services. Use this tool when the user is looking for a specific symbol in their workspace.",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"symbolName": {
"type": "string",
"description": "The symbol to search for, such as a function name, class name, or variable name."
}
},
"required": [
"symbolName"
]
}
},
{
"name": "copilot_listCodeUsages",
"toolReferenceName": "usages",
"legacyToolReferenceFullNames": [
"usages"
],
"displayName": "%copilot.tools.listCodeUsages.name%",
"icon": "$(references)",
"userDescription": "%copilot.listCodeUsages.tool.description%",
"modelDescription": "Request to list all usages (references, definitions, implementations etc) of a function, class, method, variable etc. Use this tool when \n1. Looking for a sample implementation of an interface or class\n2. Checking how a function is used throughout the codebase.\n3. Including and updating all usages when changing a function, method, or constructor",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"symbolName": {
"type": "string",
"description": "The name of the symbol, such as a function name, class name, method name, variable name, etc."
},
"filePaths": {
"type": "array",
"description": "One or more file paths which likely contain the definition of the symbol. For instance the file which declares a class or function. This is optional but will speed up the invocation of this tool and improve the quality of its output.",
"items": {
"type": "string"
}
}
},
"required": [
"symbolName"
]
}
},
{
"name": "copilot_getVSCodeAPI",
"toolReferenceName": "vscodeAPI",
"displayName": "%copilot.tools.getVSCodeAPI.name%",
"icon": "$(references)",
"userDescription": "%copilot.vscode.tool.description%",
"modelDescription": "Get comprehensive VS Code API documentation and references for extension development. This tool provides authoritative documentation for VS Code's extensive API surface, including proposed APIs, contribution points, and best practices. Use this tool for understanding complex VS Code API interactions.\n\nWhen to use this tool:\n- User asks about specific VS Code APIs, interfaces, or extension capabilities\n- Need documentation for VS Code extension contribution points (commands, views, settings, etc.)\n- Questions about proposed APIs and their usage patterns\n- Understanding VS Code extension lifecycle, activation events, and packaging\n- Best practices for VS Code extension development architecture\n- API examples and code patterns for extension features\n- Troubleshooting extension-specific issues or API limitations\n\nWhen NOT to use this tool:\n- Creating simple standalone files or scripts unrelated to VS Code extensions\n- General programming questions not specific to VS Code extension development\n- Questions about using VS Code as an editor (user-facing features)\n- Non-extension related development tasks\n- File creation or editing that doesn't involve VS Code extension APIs\n\nCRITICAL usage guidelines:\n1. Always include specific API names, interfaces, or concepts in your query\n2. Mention the extension feature you're trying to implement\n3. Include context about proposed vs stable APIs when relevant\n4. Reference specific contribution points when asking about extension manifest\n5. Be specific about the VS Code version or API version when known\n\nScope: This tool is for EXTENSION DEVELOPMENT ONLY - building tools that extend VS Code itself, not for general file creation or non-extension programming tasks.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The query to search vscode documentation for. Should contain all relevant context."
}
},
"required": [
"query"
]
},
"tags": []
},
{
"name": "copilot_findFiles",
"toolReferenceName": "fileSearch",
"displayName": "%copilot.tools.findFiles.name%",
"userDescription": "%copilot.tools.findFiles.userDescription%",
"modelDescription": "Search for files in the workspace by glob pattern. This only returns the paths of matching files. Use this tool when you know the exact filename pattern of the files you're searching for. Glob patterns match from the root of the workspace folder. Examples:\n- **/*.{js,ts} to match all js/ts files in the workspace.\n- src/** to match all files under the top-level src folder.\n- **/foo/**/*.js to match all js files under any foo folder in the workspace.",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search for files with names or paths matching this glob pattern."
},
"maxResults": {
"type": "number",
"description": "The maximum number of results to return. Do not use this unless necessary, it can slow things down. By default, only some matches are returned. If you use this and don't see what you're looking for, you can try again with a more specific query or a larger maxResults."
}
},
"required": [
"query"
]
}
},
{
"name": "copilot_findTextInFiles",
"toolReferenceName": "textSearch",
"displayName": "%copilot.tools.findTextInFiles.name%",
"userDescription": "%copilot.tools.findTextInFiles.userDescription%",
"modelDescription": "Do a fast text search in the workspace. Use this tool when you want to search with an exact string or regex. If you are not sure what words will appear in the workspace, prefer using regex patterns with alternation (|) or character classes to search for multiple potential words at once instead of making separate searches. For example, use 'function|method|procedure' to look for all of those words at once. Use includePattern to search within files matching a specific pattern, or in a specific file, using a relative path. Use 'includeIgnoredFiles' to include files normally ignored by .gitignore, other ignore files, and `files.exclude` and `search.exclude` settings. Warning: using this may cause the search to be slower, only set it when you want to search in ignored folders like node_modules or build outputs. Use this tool when you want to see an overview of a particular file, instead of using read_file many times to look for code within a file.",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The pattern to search for in files in the workspace. Use regex with alternation (e.g., 'word1|word2|word3') or character classes to find multiple potential words in a single search. Be sure to set the isRegexp property properly to declare whether it's a regex or plain text pattern. Is case-insensitive."
},
"isRegexp": {
"type": "boolean",
"description": "Whether the pattern is a regex."
},
"includePattern": {
"type": "string",
"description": "Search files matching this glob pattern. Will be applied to the relative path of files within the workspace. To search recursively inside a folder, use a proper glob pattern like \"src/folder/**\". Do not use | in includePattern."
},
"maxResults": {
"type": "number",
"description": "The maximum number of results to return. Do not use this unless necessary, it can slow things down. By default, only some matches are returned. If you use this and don't see what you're looking for, you can try again with a more specific query or a larger maxResults."
},
"includeIgnoredFiles": {
"type": "boolean",
"description": "Whether to include files that would normally be ignored according to .gitignore, other ignore files and `files.exclude` and `search.exclude` settings. Warning: using this may cause the search to be slower. Only set it when you want to search in ignored folders like node_modules or build outputs."
}
},
"required": [
"query",
"isRegexp"
]
}
},
{
"name": "copilot_applyPatch",
"displayName": "%copilot.tools.applyPatch.name%",
"toolReferenceName": "applyPatch",
"userDescription": "%copilot.tools.applyPatch.description%",
"modelDescription": "Edit text files. Do not use this tool to edit Jupyter notebooks. `apply_patch` allows you to execute a diff/patch against a text file, but the format of the diff specification is unique to this task, so pay careful attention to these instructions. To use the `apply_patch` command, you should pass a message of the following structure as \"input\":\n\n*** Begin Patch\n[YOUR_PATCH]\n*** End Patch\n\nWhere [YOUR_PATCH] is the actual content of your patch, specified in the following V4A diff format.\n\n*** [ACTION] File: [/absolute/path/to/file] -> ACTION can be one of Add, Update, or Delete.\nAn example of a message that you might pass as \"input\" to this function, in order to apply a patch, is shown below.\n\n*** Begin Patch\n*** Update File: /Users/someone/pygorithm/searching/binary_search.py\n@@class BaseClass\n@@ def search():\n- pass\n+ raise NotImplementedError()\n\n@@class Subclass\n@@ def search():\n- pass\n+ raise NotImplementedError()\n\n*** End Patch\nDo not use line numbers in this diff format.",
"inputSchema": {
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "The edit patch to apply."
},
"explanation": {
"type": "string",
"description": "A short description of what the tool call is aiming to achieve."
}
},
"required": [
"input",
"explanation"
]
}
},
{
"name": "copilot_readFile",
"toolReferenceName": "readFile",
"legacyToolReferenceFullNames": [
"search/readFile"
],
"displayName": "%copilot.tools.readFile.name%",
"userDescription": "%copilot.tools.readFile.userDescription%",
"modelDescription": "Read the contents of a file.\n\nYou must specify the line range you're interested in. Line numbers are 1-indexed. If the file contents returned are insufficient for your task, you may call this tool again to retrieve more content. Prefer reading larger ranges over doing many small reads.",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"description": "The absolute path of the file to read.",
"type": "string"
},
"startLine": {
"type": "number",
"description": "The line number to start reading from, 1-based."
},
"endLine": {
"type": "number",
"description": "The inclusive line number to end reading at, 1-based."
}
},
"required": [
"filePath",
"startLine",
"endLine"
]
}
},
{
"name": "copilot_listDirectory",
"toolReferenceName": "listDirectory",
"displayName": "%copilot.tools.listDirectory.name%",
"userDescription": "%copilot.tools.listDirectory.userDescription%",
"modelDescription": "List the contents of a directory. Result will have the name of the child. If the name ends in /, it's a folder, otherwise a file",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The absolute path to the directory to list."
}
},
"required": [
"path"
]
}
},
{
"name": "copilot_getErrors",
"displayName": "%copilot.tools.getErrors.name%",
"toolReferenceName": "problems",
"legacyToolReferenceFullNames": [
"problems"
],
"icon": "$(error)",
"userDescription": "%copilot.tools.errors.description%",
"modelDescription": "Get any compile or lint errors in a specific file or across all files. If the user mentions errors or problems in a file, they may be referring to these. Use the tool to see the same errors that the user is seeing. If the user asks you to analyze all errors, or does not specify a file, use this tool to gather errors for all files. Also use this tool after editing a file to validate the change.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"filePaths": {
"description": "The absolute paths to the files or folders to check for errors. Omit 'filePaths' when retrieving all errors.",
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
{
"name": "copilot_readProjectStructure",
"displayName": "%copilot.tools.readProjectStructure.name%",
"modelDescription": "Get a file tree representation of the workspace.",
"tags": []
},
{
"name": "copilot_getChangedFiles",
"displayName": "%copilot.tools.getChangedFiles.name%",
"toolReferenceName": "changes",
"legacyToolReferenceFullNames": [
"changes"
],
"icon": "$(diff)",
"userDescription": "%copilot.tools.changes.description%",
"modelDescription": "Get git diffs of current file changes in a git repository. Don't forget that you can use run_in_terminal to run git commands in a terminal as well.",
"tags": [
"vscode_codesearch"
],
"inputSchema": {
"type": "object",
"properties": {
"repositoryPath": {
"type": "string",
"description": "The absolute path to the git repository to look for changes in. If not provided, the active git repository will be used."
},
"sourceControlState": {
"type": "array",
"items": {
"type": "string",
"enum": [
"staged",
"unstaged",
"merge-conflicts"
]
},
"description": "The kinds of git state to filter by. Allowed values are: 'staged', 'unstaged', and 'merge-conflicts'. If not provided, all states will be included."
}
}
}
},
{
"name": "copilot_testFailure",
"toolReferenceName": "testFailure",
"legacyToolReferenceFullNames": [
"testFailure"
],
"displayName": "%copilot.tools.testFailure.name%",
"icon": "$(beaker)",
"userDescription": "%copilot.testFailure.tool.description%",
"modelDescription": "Includes test failure information in the prompt.",
"inputSchema": {},
"tags": [
"vscode_editing_with_tests",
"enable_other_tool_copilot_readFile",
"enable_other_tool_copilot_listDirectory",
"enable_other_tool_copilot_findFiles",
"enable_other_tool_copilot_runTests"
]
},
{
"name": "copilot_memory",
"toolReferenceName": "memory",
"displayName": "%copilot.tools.memory.name%",
"userDescription": "%copilot.tools.memory.description%",
"modelDescription": "Store a fact about the codebase in memory, so that it can be used in future code generation or review tasks. The fact should be a clear and concise statement about the codebase conventions, structure, logic, or usage. It may be based on the code itself, or on information provided by the user.",
"canBeReferencedInPrompt": true,
"when": "config.github.copilot.chat.copilotMemory.enabled",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "The topic to which this memory relates. 1-2 words. Examples: naming conventions, testing practices, documentation, logging, authentication, sanitization, error handling."
},
"fact": {
"type": "string",
"description": "A clear and short description of a fact about the codebase or a convention used in the codebase. Must be less than 200 characters. Examples: Use JWT for authentication. Follow PEP 257 docstring conventions. Use single quotes for strings in Python. Use Winston for logging."
},
"citations": {
"type": "string",
"description": "The source of this fact, such as a file and line number in the codebase (e.g., path/file.go:123). If the convention is not explicitly stated in the codebase, you can point at several examples that illustrate it, selecting the most diverse set of examples you can find (e.g. from multiple files or contexts). If the fact is based on user input, the citations should be User input: followed by the contents of the input."
},
"reason": {
"type": "string",
"description": "A clear and detailed explanation of the reason behind storing this fact. Must be at least 2-3 sentences long, and include which future tasks this fact will be useful for and why it is important to remember this fact."
},
"category": {
"type": "string",
"description": "The type of memory being stored. This can be bootstrap_and_build (info about how to bootstrap and build the project), user_preferences (preferences of the user, such as coding style, tabs vs. spaces, favorite libraries, etc.), general (file independent facts), or file_specific (information about a specific file in the codebase)."
}
},
"required": [
"subject",
"fact",
"citations",
"reason",
"category"
]
}
},
{
"name": "copilot_createNewWorkspace",
"displayName": "%github.copilot.tools.createNewWorkspace.name%",
"toolReferenceName": "newWorkspace",
"legacyToolReferenceFullNames": [
"new/newWorkspace"
],
"icon": "$(new-folder)",
"userDescription": "%github.copilot.tools.createNewWorkspace.userDescription%",
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
"modelDescription": "Get comprehensive setup steps to help the user create complete project structures in a VS Code workspace. This tool is designed for full project initialization and scaffolding, not for creating individual files.\n\nWhen to use this tool:\n- User wants to create a new complete project from scratch\n- Setting up entire project frameworks (TypeScript projects, React apps, Node.js servers, etc.)\n- Initializing Model Context Protocol (MCP) servers with full structure\n- Creating VS Code extensions with proper scaffolding\n- Setting up Next.js, Vite, or other framework-based projects\n- User asks for \"new project\", \"create a workspace\", \"set up a [framework] project\"\n- Need to establish complete development environment with dependencies, config files, and folder structure\n\nWhen NOT to use this tool:\n- Creating single files or small code snippets\n- Adding individual files to existing projects\n- Making modifications to existing codebases\n- User asks to \"create a file\" or \"add a component\"\n- Simple code examples or demonstrations\n- Debugging or fixing existing code\n\nThis tool provides complete project setup including:\n- Folder structure creation\n- Package.json and dependency management\n- Configuration files (tsconfig, eslint, etc.)\n- Initial boilerplate code\n- Development environment setup\n- Build and run instructions\n\nUse other file creation tools for individual files within existing projects.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The query to use to generate the new workspace. This should be a clear and concise description of the workspace the user wants to create."
}
},
"required": [
"query"
]
},
"tags": [
"enable_other_tool_install_extension",
"enable_other_tool_get_project_setup_info"
]
},
{
"name": "copilot_getProjectSetupInfo",
"displayName": "%github.copilot.tools.getProjectSetupInfo.name%",
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
"toolReferenceName": "getProjectSetupInfo",
"legacyToolReferenceFullNames": [
"new/getProjectSetupInfo"
],
"modelDescription": "Do not call this tool without first calling the tool to create a workspace. This tool provides a project setup information for a Visual Studio Code workspace based on a project type and programming language.",
"inputSchema": {
"type": "object",
"properties": {
"projectType": {
"type": "string",
"description": "The type of project to create. Supported values are: 'python-script', 'python-project', 'mcp-server', 'model-context-protocol-server', 'vscode-extension', 'next-js', 'vite' and 'other'"
}
},
"required": [
"projectType"
]
},
"tags": []
},
{
"name": "copilot_installExtension",
"displayName": "Install Extension in VS Code",
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
"toolReferenceName": "installExtension",
"legacyToolReferenceFullNames": [
"new/installExtension"
],
"modelDescription": "Install an extension in VS Code. Use this tool to install an extension in Visual Studio Code as part of a new workspace creation process only.",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the extension to install. This should be in the format <publisher>.<extension>."
},
"name": {
"type": "string",
"description": "The name of the extension to install. This should be a clear and concise description of the extension."
}
},
"required": [
"id",
"name"
]
},
"tags": []
},
{
"name": "copilot_runVscodeCommand",
"displayName": "Run VS Code Command",
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
"toolReferenceName": "runCommand",
"legacyToolReferenceFullNames": [
"new/runVscodeCommand"
],
"modelDescription": "Run a command in VS Code. Use this tool to run a command in Visual Studio Code as part of a new workspace creation process only.",
"inputSchema": {
"type": "object",
"properties": {
"commandId": {
"type": "string",
"description": "The ID of the command to execute. This should be in the format <command>."
},
"name": {
"type": "string",
"description": "The name of the command to execute. This should be a clear and concise description of the command."
},
"args": {
"type": "array",
"description": "The arguments to pass to the command. This should be an array of strings.",
"items": {
"type": "string"
}
}
},
"required": [
"commandId",
"name"
]
},
"tags": []
},
{
"name": "copilot_createNewJupyterNotebook",
"displayName": "Create New Jupyter Notebook",
"icon": "$(notebook)",
"toolReferenceName": "createJupyterNotebook",
"legacyToolReferenceFullNames": [
"newJupyterNotebook"
],
"modelDescription": "Generates a new Jupyter Notebook (.ipynb) in VS Code. Jupyter Notebooks are interactive documents commonly used for data exploration, analysis, visualization, and combining code with narrative text. Prefer creating plain Python files or similar unless a user explicitly requests creating a new Jupyter Notebook or already has a Jupyter Notebook opened or exists in the workspace.",
"userDescription": "%copilot.tools.newJupyterNotebook.description%",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The query to use to generate the jupyter notebook. This should be a clear and concise description of the notebook the user wants to create."
}
},
"required": [
"query"
]
},
"tags": []
},
{
"name": "copilot_insertEdit",
"toolReferenceName": "insertEdit",
"displayName": "%copilot.tools.insertEdit.name%",
"modelDescription": "Insert new code into an existing file in the workspace. Use this tool once per file that needs to be modified, even if there are multiple changes for a file. Generate the \"explanation\" property first.\nThe system is very smart and can understand how to apply your edits to the files, you just need to provide minimal hints.\nAvoid repeating existing code, instead use comments to represent regions of unchanged code. Be as concise as possible. For example:\n// ...existing code...\n{ changed code }\n// ...existing code...\n{ changed code }\n// ...existing code...\n\nHere is an example of how you should use format an edit to an existing Person class:\nclass Person {\n\t// ...existing code...\n\tage: number;\n\t// ...existing code...\n\tgetAge() {\n\treturn this.age;\n\t}\n}",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"explanation": {
"type": "string",
"description": "A short explanation of the edit being made."
},
"filePath": {
"type": "string",
"description": "An absolute path to the file to edit."
},
"code": {
"type": "string",
"description": "The code change to apply to the file.\nThe system is very smart and can understand how to apply your edits to the files, you just need to provide minimal hints.\nAvoid repeating existing code, instead use comments to represent regions of unchanged code. Be as concise as possible. For example:\n// ...existing code...\n{ changed code }\n// ...existing code...\n{ changed code }\n// ...existing code...\n\nHere is an example of how you should use format an edit to an existing Person class:\nclass Person {\n\t// ...existing code...\n\tage: number;\n\t// ...existing code...\n\tgetAge() {\n\t\treturn this.age;\n\t}\n}"
}
},
"required": [
"explanation",
"filePath",
"code"
]
}
},
{
"name": "copilot_createFile",
"toolReferenceName": "createFile",
"legacyToolReferenceFullNames": [
"createFile"
],
"displayName": "%copilot.tools.createFile.name%",
"userDescription": "%copilot.tools.createFile.description%",
"modelDescription": "This is a tool for creating a new file in the workspace. The file will be created with the specified content. The directory will be created if it does not already exist. Never use this tool to edit a file that already exists.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "The absolute path to the file to create."
},
"content": {
"type": "string",
"description": "The content to write to the file."
}
},
"required": [
"filePath",
"content"
]
}
},
{
"name": "copilot_createDirectory",
"toolReferenceName": "createDirectory",
"legacyToolReferenceFullNames": [
"createDirectory"
],
"displayName": "%copilot.tools.createDirectory.name%",
"userDescription": "%copilot.tools.createDirectory.description%",
"modelDescription": "Create a new directory structure in the workspace. Will recursively create all directories in the path, like mkdir -p. You do not need to use this tool before using create_file, that tool will automatically create the needed directories.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"dirPath": {
"type": "string",
"description": "The absolute path to the directory to create."
}
},
"required": [
"dirPath"
]
}
},
{
"name": "copilot_openSimpleBrowser",
"displayName": "%copilot.tools.openSimpleBrowser.name%",
"modelDescription": "Preview a website or open a URL in the editor's Simple Browser. Useful for quickly viewing locally hosted websites, demos, or resources without leaving the coding environment.",
"userDescription": "%copilot.tools.openSimpleBrowser.description%",
"toolReferenceName": "openSimpleBrowser",
"legacyToolReferenceFullNames": [
"openSimpleBrowser"
],
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The website URL to preview or open in the Simple Browser inside the editor. Must be either an http or https URL"
}
},
"required": [
"url"
]
}
},
{
"name": "copilot_replaceString",
"toolReferenceName": "replaceString",
"displayName": "%copilot.tools.replaceString.name%",
"modelDescription": "This is a tool for making edits in an existing file in the workspace. For moving or renaming files, use run in terminal tool with the 'mv' command instead. For larger edits, split them into smaller edits and call the edit tool multiple times to ensure accuracy. Before editing, always ensure you have the context to understand the file's contents and context. To edit a file, provide: 1) filePath (absolute path), 2) oldString (MUST be the exact literal text to replace including all whitespace, indentation, newlines, and surrounding code etc), and 3) newString (MUST be the exact literal text to replace \\`oldString\\` with (also including all whitespace, indentation, newlines, and surrounding code etc.). Ensure the resulting code is correct and idiomatic.). Each use of this tool replaces exactly ONE occurrence of oldString.\n\nCRITICAL for \\`oldString\\`: Must uniquely identify the single instance to change. Include at least 3 lines of context BEFORE and AFTER the target text, matching whitespace and indentation precisely. If this string matches multiple locations, or does not match exactly, the tool will fail. Never use 'Lines 123-456 omitted' from summarized documents or ...existing code... comments in the oldString or newString.",
"when": "!config.github.copilot.chat.disableReplaceTool",
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "An absolute path to the file to edit."
},
"oldString": {
"type": "string",
"description": "The exact literal text to replace, preferably unescaped. For single replacements (default), include at least 3 lines of context BEFORE and AFTER the target text, matching whitespace and indentation precisely. For multiple replacements, specify expected_replacements parameter. If this string is not the exact literal text (i.e. you escaped it) or does not match exactly, the tool will fail."
},
"newString": {
"type": "string",
"description": "The exact literal text to replace `old_string` with, preferably unescaped. Provide the EXACT text. Ensure the resulting code is correct and idiomatic."
}
},
"required": [
"filePath",
"oldString",
"newString"
]
}
},
{
"name": "copilot_multiReplaceString",
"toolReferenceName": "multiReplaceString",
"displayName": "%copilot.tools.multiReplaceString.name%",
"modelDescription": "This tool allows you to apply multiple replace_string_in_file operations in a single call, which is more efficient than calling replace_string_in_file multiple times. It takes an array of replacement operations and applies them sequentially. Each replacement operation has the same parameters as replace_string_in_file: filePath, oldString, newString, and explanation. This tool is ideal when you need to make multiple edits across different files or multiple edits in the same file. The tool will provide a summary of successful and failed operations.",
"when": "!config.github.copilot.chat.disableReplaceTool",
"inputSchema": {
"type": "object",
"properties": {
"explanation": {
"type": "string",
"description": "A brief explanation of what the multi-replace operation will accomplish."
},
"replacements": {
"type": "array",
"description": "An array of replacement operations to apply sequentially.",
"items": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "An absolute path to the file to edit."
},
"oldString": {
"type": "string",
"description": "The exact literal text to replace, preferably unescaped. Include at least 3 lines of context BEFORE and AFTER the target text, matching whitespace and indentation precisely. If this string is not the exact literal text or does not match exactly, this replacement will fail."
},
"newString": {
"type": "string",
"description": "The exact literal text to replace `oldString` with, preferably unescaped. Provide the EXACT text. Ensure the resulting code is correct and idiomatic."
}
},
"required": [
"filePath",
"oldString",
"newString"
]
},
"minItems": 1
}
},
"required": [
"explanation",
"replacements"
]
}
},
{
"name": "copilot_editNotebook",
"toolReferenceName": "editNotebook",
"icon": "$(pencil)",
"displayName": "%copilot.tools.editNotebook.name%",
"userDescription": "%copilot.tools.editNotebook.userDescription%",
"modelDescription": "This is a tool for editing an existing Notebook file in the workspace. Generate the \"explanation\" property first.\nThe system is very smart and can understand how to apply your edits to the notebooks.\nWhen updating the content of an existing cell, ensure newCode preserves whitespace and indentation exactly and does NOT include any code markers such as (...existing code...).",
"tags": [
"enable_other_tool_copilot_getNotebookSummary"
],
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "An absolute path to the notebook file to edit, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1."
},
"cellId": {
"type": "string",
"description": "Id of the cell that needs to be deleted or edited. Use the value `TOP`, `BOTTOM` when inserting a cell at the top or bottom of the notebook, else provide the id of the cell after which a new cell is to be inserted. Remember, if a cellId is provided and editType=insert, then a cell will be inserted after the cell with the provided cellId."
},
"newCode": {
"anyOf": [
{
"type": "string",
"description": "The code for the new or existing cell to be edited. Code should not be wrapped within <VSCode.Cell> tags. Do NOT include code markers such as (...existing code...) to indicate existing code."
},
{
"type": "array",
"items": {
"type": "string",
"description": "The code for the new or existing cell to be edited. Code should not be wrapped within <VSCode.Cell> tags"
}
}
]
},
"language": {
"type": "string",
"description": "The language of the cell. `markdown`, `python`, `javascript`, `julia`, etc."
},
"editType": {
"type": "string",
"enum": [
"insert",
"delete",
"edit"
],
"description": "The operation peformed on the cell, whether `insert`, `delete` or `edit`.\nUse the `editType` field to specify the operation: `insert` to add a new cell, `edit` to modify an existing cell's content, and `delete` to remove a cell."
}
},
"required": [
"filePath",
"editType",
"cellId"
]
}
},
{
"name": "copilot_runNotebookCell",
"displayName": "%copilot.tools.runNotebookCell.name%",
"toolReferenceName": "runNotebookCell",
"legacyToolReferenceFullNames": [
"runNotebooks/runCell"
],
"icon": "$(play)",
"modelDescription": "This is a tool for running a code cell in a notebook file directly in the notebook editor. The output from the execution will be returned. Code cells should be run as they are added or edited when working through a problem to bring the kernel state up to date and ensure the code executes successfully. Code cells are ready to run and don't require any pre-processing. If asked to run the first cell in a notebook, you should run the first code cell since markdown cells cannot be executed. NOTE: Avoid executing Markdown cells or providing Markdown cell IDs, as Markdown cells cannot be executed.",
"userDescription": "%copilot.tools.runNotebookCell.description%",
"tags": [
"enable_other_tool_copilot_getNotebookSummary"
],
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "An absolute path to the notebook file with the cell to run, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1.ipynb"
},
"reason": {
"type": "string",
"description": "An optional explanation of why the cell is being run. This will be shown to the user before the tool is run and is not necessary if it's self-explanatory."
},
"cellId": {
"type": "string",
"description": "The ID for the code cell to execute. Avoid providing markdown cell IDs as nothing will be executed."
},
"continueOnError": {
"type": "boolean",
"description": "Whether or not execution should continue for remaining cells if an error is encountered. Default to false unless instructed otherwise."
}
},
"required": [
"filePath",
"cellId"
]
}
},
{
"name": "copilot_getNotebookSummary",
"toolReferenceName": "getNotebookSummary",
"legacyToolReferenceFullNames": [
"runNotebooks/getNotebookSummary"
],
"displayName": "Get the structure of a notebook",
"modelDescription": "This is a tool returns the list of the Notebook cells along with the id, cell types, line ranges, language, execution information and output mime types for each cell. This is useful to get Cell Ids when executing a notebook or determine what cells have been executed and what order, or what cells have outputs. If required to read contents of a cell use this to determine the line range of a cells, and then use read_file tool to read a specific line range. Requery this tool if the contents of the notebook change.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "An absolute path to the notebook file with the cell to run, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1.ipynb"
}
},
"required": [
"filePath"
]
}
},
{
"name": "copilot_readNotebookCellOutput",
"displayName": "%copilot.tools.getNotebookCellOutput.name%",
"toolReferenceName": "readNotebookCellOutput",
"legacyToolReferenceFullNames": [
"runNotebooks/readNotebookCellOutput"
],
"icon": "$(notebook-render-output)",
"modelDescription": "This tool will retrieve the output for a notebook cell from its most recent execution or restored from disk. The cell may have output even when it has not been run in the current kernel session. This tool has a higher token limit for output length than the runNotebookCell tool.",
"userDescription": "%copilot.tools.getNotebookCellOutput.description%",
"when": "userHasOpenedNotebook",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "An absolute path to the notebook file with the cell to run, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1.ipynb"
},
"cellId": {
"type": "string",
"description": "The ID of the cell for which output should be retrieved."
}
},
"required": [
"filePath",
"cellId"
]
}
},
{
"name": "copilot_fetchWebPage",
"displayName": "%copilot.tools.fetchWebPage.name%",
"toolReferenceName": "fetch",
"legacyToolReferenceFullNames": [
"fetch"
],
"when": "!isWeb",
"icon": "$(globe)",
"userDescription": "%copilot.tools.fetchWebPage.description%",
"modelDescription": "Fetches the main content from a web page. This tool is useful for summarizing or analyzing the content of a webpage. You should use this tool when you think the user is looking for information from a specific webpage.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of URLs to fetch content from."
},
"query": {
"type": "string",
"description": "The query to search for in the web page's content. This should be a clear and concise description of the content you want to find."
}
},
"required": [
"urls",
"query"
]
}
},
{
"name": "copilot_findTestFiles",
"displayName": "%copilot.tools.findTestFiles.name%",
"icon": "$(beaker)",
"canBeReferencedInPrompt": false,
"toolReferenceName": "findTestFiles",
"userDescription": "%copilot.tools.findTestFiles.description%",
"modelDescription": "For a source code file, find the file that contains the tests. For a test file find the file that contains the code under test.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"filePaths": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"filePaths"
]
}
},
{
"name": "copilot_getDocInfo",
"displayName": "%copilot.tools.getDocInfo.name%",
"icon": "$(beaker)",
"canBeReferencedInPrompt": false,
"toolReferenceName": "docInfo",
"userDescription": "%copilot.tools.getDocInfo.description%",
"modelDescription": "Find information about how to document it a symbol like a class or function. This tool is useful for generating documentation comments for code symbols. You should use this tool when you think the user is looking for information about how to document a specific code symbol.",
"tags": [],
"inputSchema": {
"type": "object",
"properties": {
"filePaths": {
"type": "array",
"items": {
"type": "string"
},
"description": "The file paths for which documentation information is needed."
}
},
"required": [
"filePaths"
]
}
},
{
"name": "copilot_getSearchResults",
"toolReferenceName": "searchResults",
"displayName": "%github.copilot.tools.searchResults.name%",
"icon": "$(search)",
"userDescription": "%github.copilot.tools.searchResults.description%",
"modelDescription": "The results from the search view"
},
{
"name": "copilot_githubRepo",
"toolReferenceName": "githubRepo",
"legacyToolReferenceFullNames": [
"githubRepo"
],
"displayName": "%github.copilot.tools.githubRepo.name%",
"modelDescription": "Searches a GitHub repository for relevant source code snippets. Only use this tool if the user is very clearly asking for code snippets from a specific GitHub repository. Do not use this tool for Github repos that the user has open in their workspace.",
"userDescription": "%github.copilot.tools.githubRepo.userDescription%",
"icon": "$(repo)",
"when": "!config.github.copilot.chat.githubMcpServer.enabled",
"inputSchema": {
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "The name of the Github repository to search for code in. Should must be formatted as '<owner>/<repo>'."
},
"query": {
"type": "string",
"description": "The query to search for repo. Should contain all relevant context."
}
},
"required": [
"repo",
"query"
]
}
},
{
"name": "copilot_toolReplay",
"modelDescription": "Replays a tool call from a previous chat session.",
"displayName": "tool replay",
"when": "false",
"inputSchema": {
"type": "object",
"properties": {
"toolCallId": {
"type": "string",
"description": "the id of the tool original tool call"
},
"toolName": {
"type": "string",
"description": "the name of the tool being replayed"
},
"toolCallArgs": {
"type": "object",
"description": "the arguments of the tool call"
}
}
}
},
{
"name": "copilot_askQuestions",
"toolReferenceName": "askQuestions",
"displayName": "%copilot.tools.askQuestions.name%",
"userDescription": "%copilot.tools.askQuestions.description%",
"modelDescription": "Ask the user questions to clarify intent, validate assumptions, or choose between implementation approaches. Prefer proposing a sensible default so users can confirm quickly.\n\nOnly use this tool when the user's answer provides information you cannot determine or reasonably assume yourself. This tool is for gathering information, not for reporting status or problems. If a question has an obvious best answer, take that action instead of asking.\n\nWhen to use:\n- Clarify ambiguous requirements before proceeding\n- Get user preferences on implementation choices\n- Confirm decisions that meaningfully affect outcome\n\nWhen NOT to use:\n- The answer is determinable from code or context\n- Asking for permission to continue or abort\n- Confirming something you can reasonably decide yourself\n- Reporting a problem (instead, attempt to resolve it)\n\nQuestion guidelines:\n- NEVER use `recommended` for quizzes or polls. Recommended options are PRE-SELECTED and visible to users, which would reveal answers\n- Batch related questions into a single call (max 4 questions, 2-6 options each; omit options for free text input)\n- Provide brief context explaining what is being decided and why\n- Only mark an option as `recommended` to suggest YOUR preferred implementation choice\n- Keep options mutually exclusive for single-select; use `multiSelect: true` only when choices are additive and phrase the question accordingly\n\nAfter receiving answers:\n- Incorporate decisions and continue without re-asking unless requirements change\n\nAn \"Other\" option is automatically shown to users—do not add your own.",
"icon": "$(question)",
"when": "config.github.copilot.chat.askQuestions.enabled",
"inputSchema": {
"type": "object",
"properties": {
"questions": {
"type": "array",
"description": "Array of 1-4 questions to ask the user",
"minItems": 1,
"maxItems": 4,
"items": {
"type": "object",
"properties": {
"header": {
"type": "string",
"description": "A short label (max 12 chars) displayed as a quick pick header, also used as the unique identifier for the question",
"maxLength": 12
},
"question": {
"type": "string",
"description": "The complete question text to display"
},
"multiSelect": {
"type": "boolean",
"description": "Allow multiple selections",
"default": false
},
"options": {
"type": "array",
"description": "0-6 options for the user to choose from. If empty or omitted, shows a free text input instead.",
"minItems": 0,
"maxItems": 6,
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "Option label text"
},
"description": {
"type": "string",
"description": "Optional description for the option"
},
"recommended": {
"type": "boolean",
"description": "Mark this option as recommended"
}
},
"required": [
"label"
]
}
},
"allowFreeformInput": {
"type": "boolean",
"description": "When true, allows user to enter free-form text in addition to selecting options. Use when the user's opinion or custom input would be valuable.",
"default": false
}
},
"required": [
"header",
"question"
]
}
}
},
"required": [
"questions"
]
}
},
{
"name": "copilot_switchAgent",
"toolReferenceName": "switchAgent",
"displayName": "%copilot.tools.switchAgent.name%",
"userDescription": "%copilot.tools.switchAgent.description%",
"modelDescription": "Switch to the Plan agent before exploring the codebase and refining implementation of a feature. The Plan agent provides specialized tools to explore the codebase, understand system architecture, and iterate with the user through clarifying questions and context gathering.\n\nPLAN AGENT BEHAVIOR:\nThe Plan agent is a specialized assistant designed for research, exploration, and planning. It:\n- Has access to powerful codebase exploration tools (search, read files, list directories, find symbols)\n- Can ask clarifying questions to understand requirements better\n- Proposes implementation approaches and validates them with the user\n- Gathers comprehensive context before suggesting changes\n- Handles complex, multi-file refactoring and architectural decisions\n- Summarizes findings and creates detailed plans for implementation\n\nEXAMPLES OF WHEN TO SWITCH TO PLAN:\n- \"I want to refactor the data flow in this component\" → Plan can explore the component dependencies\n- \"How should I integrate this new feature?\" → Plan can investigate the architecture and propose approaches\n- \"Find all usages of this pattern and suggest a better way\" → Plan can search comprehensively and report findings\n- \"I need to migrate from X to Y\" → Plan can understand current structure and propose migration strategy\n\nUSE THIS TOOL IMMEDIATELY AND PROACTIVELY BEFORE ANY OTHER TOOL CALLS OR CODE EXPLORATION WHEN:\n- The user's request is ambiguous, underspecified, or could be interpreted multiple ways\n- You need to explore the codebase, gather context, or understand the architecture - CODE EXPLORATION IS THE PLAN AGENT'S PRIMARY RESPONSIBILITY\n- The task involves multiple files, complex refactoring, or architectural decisions\n- You want to propose an approach and validate it with the user before implementing\n- The user explicitly asks for a plan or wants to discuss the approach first\n- You're uncertain whether you have sufficient context to confidently implement the complete change\n\nCRITICAL: If you are about to call any code exploration tools (readFile, findTextInFiles, searchCodebase, listDirectory, etc.), STOP immediately and switch to the Plan agent first. Code exploration, context gathering, and architectural understanding belong to the Plan agent, not the inline editor.\n\nYou should ONLY skip using this tool when:\n- The task is completely straightforward with explicit, detailed implementation instructions\n- You already have complete and specific context about exactly what needs to change and where\n- The user has explicitly instructed you to skip planning and just make the change",
"when": "config.github.copilot.chat.switchAgent.enabled",
"icon": "$(arrow-swap)",
"inputSchema": {
"type": "object",
"properties": {
"agentName": {
"type": "string",
"description": "The name of the agent to switch to. Currently only 'Plan' is supported.",
"enum": [
"Plan"
]
}
},
"required": [
"agentName"
]
}
},
{
"name": "copilot_editFiles",
"modelDescription": "This is a placeholder tool, do not use",
"userDescription": "Edit files",
"icon": "$(pencil)",
"displayName": "Edit Files",
"toolReferenceName": "editFiles",
"legacyToolReferenceFullNames": [
"editFiles"
]
}
],
"languageModelToolSets": [
{
"name": "edit",
"description": "%copilot.toolSet.editing.description%",
"icon": "$(pencil)",
"tools": [
"createDirectory",
"createFile",
"createJupyterNotebook",
"editFiles",
"editNotebook"
]
},
{
"name": "execute",
"description": "",
"tools": [
"runNotebookCell",
"testFailure"
]
},
{
"name": "read",
"description": "%copilot.toolSet.read.description%",
"icon": "$(eye)",
"tools": [
"getNotebookSummary",
"problems",
"readFile",
"readNotebookCellOutput"
]
},
{
"name": "search",
"description": "%copilot.toolSet.search.description%",
"icon": "$(search)",
"tools": [
"changes",
"codebase",
"fileSearch",
"listDirectory",
"searchResults",
"textSearch",
"usages",
"searchSubagent"
]
},
{
"name": "vscode",
"description": "",
"tools": [
"getProjectSetupInfo",
"installExtension",
"newWorkspace",
"openSimpleBrowser",
"runCommand",
"askQuestions",
"switchAgent",
"vscodeAPI"
]
},
{
"name": "web",
"description": "%copilot.toolSet.web.description%",
"icon": "$(globe)",
"tools": [
"fetch",
"githubRepo"
]
}
],
"chatParticipants": [
{
"id": "github.copilot.default",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.description%",
"isDefault": true,
"locations": [
"panel"
],
"modes": [
"ask"
],
"disambiguation": [
{
"category": "generate_code_sample",
"description": "The user wants to generate code snippets without referencing the contents of the current workspace. This category does not include generating entire projects.",
"examples": [
"Write an example of computing a SHA256 hash."
]
},
{
"category": "add_feature_to_file",
"description": "The user wants to change code in a file that is provided in their request, without referencing the contents of the current workspace. This category does not include generating entire projects.",
"examples": [
"Add a refresh button to the table widget."
]
},
{
"category": "question_about_specific_files",
"description": "The user has a question about a specific file or code snippet that they have provided as part of their query, and the question does not require additional workspace context to answer.",
"examples": [
"What does this file do?"
]
}
]
},
{
"id": "github.copilot.editingSession",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.edits.description%",
"isDefault": true,
"locations": [
"panel"
],
"modes": [
"edit"
],
"when": "!config.chat.edits2.enabled"
},
{
"id": "github.copilot.editingSessionEditor",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.edits.description%",
"isDefault": true,
"locations": [
"editor"
],
"commands": [
{
"name": "generate",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.generate.description%",
"disambiguation": [
{
"category": "generate",
"description": "Generate new code",
"examples": [
"Add a function that returns the sum of two numbers"
]
}
]
},
{
"name": "edit",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.edit.inline.description%",
"disambiguation": [
{
"category": "edit",
"description": "Make changes to existing code",
"examples": [
"Change this method to use async/await"
]
}
]
},
{
"name": "doc",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.doc.description%",
"disambiguation": [
{
"category": "doc",
"description": "Add documentation comment for this symbol",
"examples": [
"Add jsdoc to this method"
]
}
]
},
{
"name": "fix",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.fix.description%",
"disambiguation": [
{
"category": "fix",
"description": "Propose a fix for the problems in the selected code",
"examples": [
"There is a problem in this code. Rewrite the code to show it with the bug fixed."
]
}
]
},
{
"name": "tests",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.tests.description%",
"disambiguation": [
{
"category": "tests",
"description": "Generate unit tests for the selected code. The user does not want to fix their existing tests.",
"examples": [
"Write a set of detailed unit test functions for the code above."
]
}
]
}
]
},
{
"id": "github.copilot.editingSession2",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.edits.description%",
"isDefault": true,
"locations": [
"panel"
],
"modes": [
"edit"
],
"when": "config.chat.edits2.enabled"
},
{
"id": "github.copilot.editsAgent",
"name": "agent",
"fullName": "GitHub Copilot",
"description": "%copilot.agent.description%",
"locations": [
"panel"
],
"modes": [
"agent"
],
"isEngine": true,
"isDefault": true,
"isAgent": true,
"when": "config.chat.agent.enabled",
"commands": [
{
"name": "error",
"description": "Make a model request which will result in an error",
"when": "github.copilot.chat.debug"
}
]
},
{
"id": "github.copilot.notebook",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.description%",
"isDefault": true,
"locations": [
"notebook"
],
"when": "!config.inlineChat.notebookAgent",
"commands": [
{
"name": "fix",
"description": "%copilot.workspace.fix.description%"
},
{
"name": "explain",
"description": "%copilot.workspace.explain.description%"
}
]
},
{
"id": "github.copilot.notebookEditorAgent",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.description%",
"isDefault": true,
"locations": [
"notebook"
],
"when": "config.inlineChat.notebookAgent",
"commands": [
{
"name": "fix",
"description": "%copilot.workspace.fix.description%"
},
{
"name": "explain",
"description": "%copilot.workspace.explain.description%"
}
]
},
{
"id": "github.copilot.workspace",
"name": "workspace",
"fullName": "Workspace",
"description": "%copilot.workspace.description%",
"when": "!github.copilot.interactiveSession.disabled",
"sampleRequest": "%copilot.workspace.sampleRequest%",
"locations": [
"panel"
],
"disambiguation": [
{
"category": "workspace_project_questions",
"description": "The user wants to learn about or update the code or files in their current workspace. Questions in this category may be about understanding what the whole workspace does or locating the implementation of some code. This does not include generating or updating tests.",
"examples": [
"What does this project do?"
]
},
{
"category": "find_code_in_workspace",
"description": "The user wants to locate the implementation of some functionality in their current workspace.",
"examples": [
"Where is the tree widget implemented?"
]
},
{
"category": "generate_with_workspace_context",
"description": "The user wants to generate code based on multiple files in the workspace and did not specify which files to reference.",
"examples": [
"Create a README for this project."
]
}
],
"commands": [
{
"name": "explain",
"description": "%copilot.workspace.explain.description%"
},
{
"name": "review",
"description": "%copilot.workspace.review.description%",
"when": "github.copilot.advanced.review.intent"
},
{
"name": "tests",
"description": "%copilot.workspace.tests.description%",
"disambiguation": [
{
"category": "create_tests",
"description": "The user wants to generate unit tests.",
"examples": [
"Generate tests for my selection using pytest."
]
}
]
},
{
"name": "fix",
"description": "%copilot.workspace.fix.description%",
"sampleRequest": "%copilot.workspace.fix.sampleRequest%"
},
{
"name": "new",
"description": "%copilot.workspace.new.description%",
"sampleRequest": "%copilot.workspace.new.sampleRequest%",
"isSticky": true,
"disambiguation": [
{
"category": "create_new_workspace_or_extension",
"description": "The user wants to create a complete Visual Studio Code workspace from scratch, such as a new application or a Visual Studio Code extension. Use this category only if the question relates to generating or creating new workspaces in Visual Studio Code. Do not use this category for updating existing code or generating sample code snippets",
"examples": [
"Scaffold a Node server.",
"Create a sample project which uses the fileSystemProvider API.",
"react application"
]
}
]
},
{
"name": "newNotebook",
"description": "%copilot.workspace.newNotebook.description%",
"sampleRequest": "%copilot.workspace.newNotebook.sampleRequest%",
"disambiguation": [
{
"category": "create_jupyter_notebook",
"description": "The user wants to create a new Jupyter notebook in Visual Studio Code.",
"examples": [
"Create a notebook to analyze this CSV file."
]
}
]
},
{
"name": "semanticSearch",
"description": "%copilot.workspace.semanticSearch.description%",
"sampleRequest": "%copilot.workspace.semanticSearch.sampleRequest%",
"when": "config.github.copilot.semanticSearch.enabled"
},
{
"name": "setupTests",
"description": "%copilot.vscode.setupTests.description%",
"sampleRequest": "%copilot.vscode.setupTests.sampleRequest%",
"when": "config.github.copilot.chat.setupTests.enabled",
"disambiguation": [
{
"category": "set_up_tests",
"description": "The user wants to configure project test setup, framework, or test runner. The user does not want to fix their existing tests.",
"examples": [
"Set up tests for this project."
]
}
]
}
]
},
{
"id": "github.copilot.vscode",
"name": "vscode",
"fullName": "VS Code",
"description": "%copilot.vscode.description%",
"when": "!github.copilot.interactiveSession.disabled",
"sampleRequest": "%copilot.vscode.sampleRequest%",
"locations": [
"panel"
],
"disambiguation": [
{
"category": "vscode_configuration_questions",
"description": "The user wants to learn about, use, or configure the Visual Studio Code. Use this category if the users question is specifically about commands, settings, keybindings, extensions and other features available in Visual Studio Code. Do not use this category to answer questions about generating code or creating new projects including Visual Studio Code extensions.",
"examples": [
"Switch to light mode.",
"Keyboard shortcut to toggle terminal visibility.",
"Settings to enable minimap.",
"Whats new in the latest release?"
]
},
{
"category": "configure_python_environment",
"description": "The user wants to set up their Python environment.",
"examples": [
"Create a virtual environment for my project."
]
}
],
"commands": [
{
"name": "search",
"description": "%copilot.vscode.search.description%",
"sampleRequest": "%copilot.vscode.search.sampleRequest%"
}
]
},
{
"id": "github.copilot.terminal",
"name": "terminal",
"fullName": "Terminal",
"description": "%copilot.terminal.description%",
"when": "!github.copilot.interactiveSession.disabled",
"sampleRequest": "%copilot.terminal.sampleRequest%",
"isDefault": true,
"locations": [
"terminal"
],
"commands": [
{
"name": "explain",
"description": "%copilot.terminal.explain.description%",
"sampleRequest": "%copilot.terminal.explain.sampleRequest%"
}
]
},
{
"id": "github.copilot.terminalPanel",
"name": "terminal",
"fullName": "Terminal",
"description": "%copilot.terminalPanel.description%",
"when": "!github.copilot.interactiveSession.disabled",
"sampleRequest": "%copilot.terminal.sampleRequest%",
"locations": [
"panel"
],
"commands": [
{
"name": "explain",
"description": "%copilot.terminal.explain.description%",
"sampleRequest": "%copilot.terminal.explain.sampleRequest%",
"disambiguation": [
{
"category": "terminal_state_questions",
"description": "The user wants to learn about specific state such as the selection, command, or failed command in the integrated terminal in Visual Studio Code.",
"examples": [
"Why did the latest terminal command fail?"
]
}
]
}
]
},
{
"id": "github.copilot.chatReplay",
"name": "chatReplay",
"fullName": "Chat Replay",
"when": "debugType == 'vscode-chat-replay'",
"locations": [
"panel"
]
}
],
"languageModelChatProviders": [
{
"vendor": "copilot",
"displayName": "Copilot"
},
{
"vendor": "anthropic",
"displayName": "Anthropic",
"configuration": {
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for Anthropic",
"title": "API Key"
}
},
"required": [
"apiKey"
]
}
},
{
"vendor": "xai",
"displayName": "xAI",
"configuration": {
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for xAI",
"title": "API Key"
}
},
"required": [
"apiKey"
]
}
},
{
"vendor": "gemini",
"displayName": "Google",
"configuration": {
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for Google Gemini",
"title": "API Key"
}
},
"required": [
"apiKey"
]
}
},
{
"vendor": "openrouter",
"displayName": "OpenRouter",
"configuration": {
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for OpenRouter",
"title": "API Key"
}
},
"required": [
"apiKey"
]
}
},
{
"vendor": "openai",
"displayName": "OpenAI",
"configuration": {
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for OpenAI",
"title": "API Key"
}
},
"required": [
"apiKey"
]
}
},
{
"vendor": "ollama",
"displayName": "Ollama",
"configuration": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The endpoint URL for the Ollama server",
"default": "http://localhost:11434",
"title": "URL"
}
},
"required": [
"url"
]
}
},
{
"vendor": "customoai",
"when": "productQualityType != 'stable'",
"displayName": "OpenAI Compatible",
"configuration": {
"type": "object",
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for the models",
"title": "API Key"
},
"models": {
"type": "array",
"defaultSnippets": [
{
"label": "New Model",
"description": "Add a new custom model configuration",
"body": [
{
"id": "$1",
"name": "$2",
"url": "$3",
"toolCalling": "^${4|true,false|}",
"vision": "^${5|true,false|}",
"maxInputTokens": "^${6:128000}",
"maxOutputTokens": "^${7:16000}"
}
]
}
],
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the model"
},
"name": {
"type": "string",
"description": "Display name of the custom OpenAI model"
},
"url": {
"type": "string",
"markdownDescription": "URL endpoint for the custom OpenAI-compatible model.\n\n**Important:** Base URLs default to Chat Completions API. Explicit API paths including `/responses` or `/chat/completions` are respected."
},
"toolCalling": {
"type": "boolean",
"description": "Whether the model supports tool calling"
},
"vision": {
"type": "boolean",
"description": "Whether the model supports vision capabilities"
},
"maxInputTokens": {
"type": "number",
"description": "Maximum number of input tokens supported by the model"
},
"maxOutputTokens": {
"type": "number",
"description": "Maximum number of output tokens supported by the model"
},
"editTools": {
"type": "array",
"description": "List of edit tools supported by the model. If this is not configured, the editor will try multiple edit tools and pick the best one.\n\n- 'find-replace': Find and replace text in a document.\n- 'multi-find-replace': Find and replace text in a document.\n- 'apply-patch': A file-oriented diff format used by some OpenAI models\n- 'code-rewrite': A general but slower editing tool that allows the model to rewrite and code snippet and provide only the replacement to the editor.",
"items": {
"type": "string",
"enum": [
"find-replace",
"multi-find-replace",
"apply-patch",
"code-rewrite"
]
}
},
"thinking": {
"type": "boolean",
"default": false,
"description": "Whether the model supports thinking capabilities"
},
"zeroDataRetentionEnabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Whether Zero Data Retention (ZDR) is enabled for this endpoint. When `true`, `previous_response_id` will not be sent in requests via Responses API."
},
"requestHeaders": {
"type": "object",
"description": "Additional HTTP headers to include with requests to this model. These reserved headers are not allowed and ignored if present: forbidden request headers (https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_request_header), forwarding headers ('forwarded', 'x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto'), and others ('api-key', 'authorization', 'content-type', 'openai-intent', 'x-github-api-version', 'x-initiator', 'x-interaction-id', 'x-interaction-type', 'x-onbehalf-extension-id', 'x-request-id', 'x-vscode-user-agent-library-version'). Pattern-based forbidden headers ('proxy-*', 'sec-*', 'x-http-method*' with forbidden methods) are also blocked.",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"id",
"name",
"url",
"toolCalling",
"vision",
"maxInputTokens",
"maxOutputTokens"
]
}
}
}
}
},
{
"vendor": "azure",
"displayName": "Azure",
"configuration": {
"type": "object",
"properties": {
"apiKey": {
"type": "string",
"secret": true,
"description": "API key for the models. If not set then Entra ID (Azure AD) authentication with your Microsoft account credentials will be used.",
"title": "API Key"
},
"models": {
"type": "array",
"defaultSnippets": [
{
"label": "New Model",
"description": "Add a new custom model configuration",
"body": [
{
"id": "$1",
"name": "$2",
"url": "$3",
"toolCalling": "^${4|true,false|}",
"vision": "^${5|true,false|}",
"maxInputTokens": "^${6:128000}",
"maxOutputTokens": "^${7:16000}"
}
]
}
],
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the model"
},
"name": {
"type": "string",
"description": "Display name of the custom OpenAI model"
},
"url": {
"type": "string",
"markdownDescription": "URL endpoint for the custom OpenAI-compatible model.\n\n**Important:** Base URLs default to Chat Completions API. Explicit API paths including `/responses` or `/chat/completions` are respected."
},
"toolCalling": {
"type": "boolean",
"description": "Whether the model supports tool calling"
},
"vision": {
"type": "boolean",
"description": "Whether the model supports vision capabilities"
},
"maxInputTokens": {
"type": "number",
"description": "Maximum number of input tokens supported by the model"
},
"maxOutputTokens": {
"type": "number",
"description": "Maximum number of output tokens supported by the model"
},
"thinking": {
"type": "boolean",
"default": false,
"description": "Whether the model supports thinking capabilities"
},
"zeroDataRetentionEnabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Whether Zero Data Retention (ZDR) is enabled for this endpoint. When `true`, `previous_response_id` will not be sent in requests via Responses API."
},
"requestHeaders": {
"type": "object",
"description": "Additional HTTP headers to include with requests to this model. These reserved headers are not allowed and ignored if present: forbidden request headers (https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_request_header), forwarding headers ('forwarded', 'x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto'), and others ('api-key', 'authorization', 'content-type', 'openai-intent', 'x-github-api-version', 'x-initiator', 'x-interaction-id', 'x-interaction-type', 'x-onbehalf-extension-id', 'x-request-id', 'x-vscode-user-agent-library-version'). Pattern-based forbidden headers ('proxy-*', 'sec-*', 'x-http-method*' with forbidden methods) are also blocked.",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"id",
"name",
"url",
"toolCalling",
"vision",
"maxInputTokens",
"maxOutputTokens"
]
}
}
}
}
}
],
"interactiveSession": [
{
"label": "GitHub Copilot",
"id": "copilot",
"icon": "",
"when": "!github.copilot.interactiveSession.disabled"
}
],
"mcpServerDefinitionProviders": [
{
"id": "github",
"label": "GitHub"
}
],
"viewsWelcome": [
{
"view": "debug",
"when": "github.copilot-chat.activated",
"contents": "%github.copilot.viewsWelcome.debug%"
}
],
"chatViewsWelcome": [
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.individual.expired%",
"when": "github.copilot.interactiveSession.individual.expired"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.enterprise%",
"when": "github.copilot.interactiveSession.enterprise.disabled"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.offline%",
"when": "github.copilot.offline"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.invalidToken%",
"when": "github.copilot.interactiveSession.invalidToken"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.rateLimited%",
"when": "github.copilot.interactiveSession.rateLimited"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.gitHubLoginFailed%",
"when": "github.copilot.interactiveSession.gitHubLoginFailed"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.contactSupport%",
"when": "github.copilot.interactiveSession.contactSupport"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.chatDisabled%",
"when": "github.copilot.interactiveSession.chatDisabled"
},
{
"icon": "$(chat-sparkle)",
"title": "%copilot.title%",
"content": "%github.copilot.viewsWelcome.switchToReleaseChannel%",
"when": "github.copilot.interactiveSession.switchToReleaseChannel"
}
],
"commands": [
{
"command": "github.copilot.chat.triggerPermissiveSignIn",
"title": "%github.copilot.command.triggerPermissiveSignIn%"
},
{
"command": "copilot.claude.agents",
"title": "Manage Agents",
"category": "Claude Agent"
},
{
"command": "copilot.claude.hooks",
"title": "Configure Hooks",
"category": "Claude Agent"
},
{
"command": "copilot.claude.memory",
"title": "Open Memory Files",
"category": "Claude Agent"
},
{
"command": "github.copilot.cli.sessions.delete",
"title": "%github.copilot.command.deleteAgentSession%",
"icon": "$(close)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.cli.sessions.resumeInTerminal",
"title": "%github.copilot.command.cli.sessions.resumeInTerminal%",
"icon": "$(terminal)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.cli.sessions.rename",
"title": "%github.copilot.command.cli.sessions.rename%",
"icon": "$(edit)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.cli.sessions.openRepository",
"title": "%github.copilot.command.cli.sessions.openRepository%",
"icon": "$(folder-opened)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.cli.sessions.openWorktreeInNewWindow",
"title": "%github.copilot.command.cli.sessions.openWorktreeInNewWindow%",
"icon": "$(folder-opened)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.cli.sessions.openWorktreeInTerminal",
"title": "%github.copilot.command.cli.sessions.openWorktreeInTerminal%",
"icon": "$(terminal)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.cli.newSession",
"title": "%github.copilot.command.cli.newSession%",
"icon": "$(terminal)",
"category": "Chat"
},
{
"command": "github.copilot.cli.newSessionToSide",
"title": "%github.copilot.command.cli.newSessionToSide%",
"icon": "$(terminal)",
"category": "Chat"
},
{
"command": "github.copilot.chat.replay",
"title": "Start Chat Replay",
"icon": "$(debug-line-by-line)",
"enablement": "resourceFilename === 'benchRun.chatReplay.json' && !inDebugMode"
},
{
"command": "github.copilot.chat.replay.enableWorkspaceEditTracing",
"title": "%github.copilot.command.enableEditTracing%",
"category": "Developer",
"enablement": "!github.copilot.chat.replay.workspaceEditTracing"
},
{
"command": "github.copilot.chat.replay.disableWorkspaceEditTracing",
"title": "%github.copilot.command.disableEditTracing%",
"category": "Developer",
"enablement": "github.copilot.chat.replay.workspaceEditTracing"
},
{
"command": "github.copilot.chat.explain",
"title": "%github.copilot.command.explainThis%",
"enablement": "!github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.explain.palette",
"title": "%github.copilot.command.explainThis%",
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"category": "Chat"
},
{
"command": "github.copilot.chat.review",
"title": "%github.copilot.command.reviewAndComment%",
"enablement": "config.github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.apply",
"title": "%github.copilot.command.applyReviewSuggestion%",
"icon": "$(sparkle)",
"enablement": "commentThread =~ /hasSuggestion/",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.applyAndNext",
"title": "%github.copilot.command.applyReviewSuggestionAndNext%",
"icon": "$(sparkle)",
"enablement": "commentThread =~ /hasSuggestion/",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.discard",
"title": "%github.copilot.command.discardReviewSuggestion%",
"icon": "$(close)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.discardAndNext",
"title": "%github.copilot.command.discardReviewSuggestionAndNext%",
"icon": "$(close)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.discardAll",
"title": "%github.copilot.command.discardAllReviewSuggestion%",
"icon": "$(close-all)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.stagedChanges",
"title": "%github.copilot.command.reviewStagedChanges%",
"icon": "$(code-review)",
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.unstagedChanges",
"title": "%github.copilot.command.reviewUnstagedChanges%",
"icon": "$(code-review)",
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.changes",
"title": "%github.copilot.command.reviewChanges%",
"icon": "$(code-review)",
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.stagedFileChange",
"title": "%github.copilot.command.reviewFileChange%",
"icon": "$(code-review)",
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.unstagedFileChange",
"title": "%github.copilot.command.reviewFileChange%",
"icon": "$(code-review)",
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.previous",
"title": "%github.copilot.command.gotoPreviousReviewSuggestion%",
"icon": "$(arrow-up)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.next",
"title": "%github.copilot.command.gotoNextReviewSuggestion%",
"icon": "$(arrow-down)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.continueInInlineChat",
"title": "%github.copilot.command.continueReviewInInlineChat%",
"icon": "$(comment-discussion)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.continueInChat",
"title": "%github.copilot.command.continueReviewInChat%",
"icon": "$(comment-discussion)",
"category": "Chat"
},
{
"command": "github.copilot.chat.review.markHelpful",
"title": "%github.copilot.command.helpfulReviewSuggestion%",
"icon": "$(thumbsup)",
"enablement": "!(commentThread =~ /markedAsHelpful/)",
"category": "Chat"
},
{
"command": "github.copilot.chat.openUserPreferences",
"title": "%github.copilot.command.openUserPreferences%",
"category": "Chat",
"enablement": "config.github.copilot.chat.enableUserPreferences"
},
{
"command": "github.copilot.chat.review.markUnhelpful",
"title": "%github.copilot.command.unhelpfulReviewSuggestion%",
"icon": "$(thumbsdown)",
"enablement": "!(commentThread =~ /markedAsUnhelpful/)",
"category": "Chat"
},
{
"command": "github.copilot.chat.generate",
"title": "%github.copilot.command.generateThis%",
"icon": "$(sparkle)",
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"category": "Chat"
},
{
"command": "github.copilot.chat.generateDocs",
"title": "%github.copilot.command.generateDocs%",
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"category": "Chat"
},
{
"command": "github.copilot.chat.generateTests",
"title": "%github.copilot.command.generateTests%",
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"category": "Chat"
},
{
"command": "github.copilot.chat.fix",
"title": "%github.copilot.command.fixThis%",
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"category": "Chat"
},
{
"command": "github.copilot.interactiveSession.feedback",
"title": "%github.copilot.command.sendChatFeedback%",
"enablement": "github.copilot-chat.activated && !github.copilot.interactiveSession.disabled",
"icon": "$(feedback)",
"category": "Chat"
},
{
"command": "github.copilot.debug.workbenchState",
"title": "%github.copilot.command.logWorkbenchState%",
"category": "Developer"
},
{
"command": "github.copilot.debug.showChatLogView",
"title": "%github.copilot.command.showChatLogView%",
"category": "Developer"
},
{
"command": "github.copilot.debug.showOutputChannel",
"title": "%github.copilot.command.showOutputChannel%",
"category": "Developer"
},
{
"command": "github.copilot.debug.showContextInspectorView",
"title": "%github.copilot.command.showContextInspectorView%",
"icon": "$(inspect)",
"category": "Developer"
},
{
"command": "github.copilot.debug.validateNesRename",
"title": "%github.copilot.command.validateNesRename%",
"category": "Developer"
},
{
"command": "github.copilot.debug.resetVirtualToolGroups",
"title": "%github.copilot.command.resetVirtualToolGroups%",
"icon": "$(inspect)",
"category": "Developer"
},
{
"command": "github.copilot.terminal.explainTerminalLastCommand",
"title": "%github.copilot.command.explainTerminalLastCommand%",
"category": "Chat"
},
{
"command": "github.copilot.git.generateCommitMessage",
"title": "%github.copilot.git.generateCommitMessage%",
"icon": "$(sparkle)",
"enablement": "!github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.git.resolveMergeConflicts",
"title": "%github.copilot.git.resolveMergeConflicts%",
"icon": "$(chat-sparkle)",
"enablement": "!github.copilot.interactiveSession.disabled",
"category": "Chat"
},
{
"command": "github.copilot.devcontainer.generateDevContainerConfig",
"title": "%github.copilot.devcontainer.generateDevContainerConfig%",
"category": "Chat"
},
{
"command": "github.copilot.tests.fixTestFailure",
"icon": "$(sparkle)",
"title": "%github.copilot.command.fixTestFailure%",
"category": "Chat"
},
{
"command": "github.copilot.tests.fixTestFailure.fromInline",
"icon": "$(sparkle)",
"title": "%github.copilot.command.fixTestFailure%"
},
{
"command": "github.copilot.chat.attachFile",
"title": "%github.copilot.chat.attachFile%",
"category": "Chat"
},
{
"command": "github.copilot.chat.attachSelection",
"title": "%github.copilot.chat.attachSelection%",
"icon": "$(comment-discussion)",
"category": "Chat"
},
{
"command": "github.copilot.debug.collectDiagnostics",
"title": "%github.copilot.command.collectDiagnostics%",
"category": "Developer"
},
{
"command": "github.copilot.debug.inlineEdit.clearCache",
"title": "%github.copilot.command.inlineEdit.clearCache%",
"category": "Developer"
},
{
"command": "github.copilot.debug.inlineEdit.reportNotebookNESIssue",
"title": "%github.copilot.command.inlineEdit.reportNotebookNESIssue%",
"enablement": "config.github.copilot.chat.advanced.notebook.alternativeNESFormat.enabled || github.copilot.chat.enableEnhancedNotebookNES",
"category": "Developer"
},
{
"command": "github.copilot.debug.generateSTest",
"title": "%github.copilot.command.generateSTest%",
"enablement": "github.copilot.debugReportFeedback",
"category": "Developer"
},
{
"command": "github.copilot.open.walkthrough",
"title": "%github.copilot.command.openWalkthrough%",
"category": "Chat"
},
{
"command": "github.copilot.debug.generateInlineEditTests",
"title": "Generate Inline Edit Tests",
"category": "Chat",
"enablement": "resourceScheme == 'ccreq'"
},
{
"command": "github.copilot.buildLocalWorkspaceIndex",
"title": "%github.copilot.command.buildLocalWorkspaceIndex%",
"category": "Chat",
"enablement": "github.copilot-chat.activated"
},
{
"command": "github.copilot.buildRemoteWorkspaceIndex",
"title": "%github.copilot.command.buildRemoteWorkspaceIndex%",
"category": "Chat",
"enablement": "github.copilot-chat.activated"
},
{
"command": "github.copilot.deleteExternalIngestWorkspaceIndex",
"title": "%github.copilot.command.deleteExternalIngestWorkspaceIndex%",
"category": "Developer",
"enablement": "github.copilot-chat.activated"
},
{
"command": "github.copilot.report",
"title": "Report Issue",
"category": "Chat"
},
{
"command": "github.copilot.chat.rerunWithCopilotDebug",
"title": "%github.copilot.command.rerunWithCopilotDebug%",
"category": "Chat"
},
{
"command": "github.copilot.chat.startCopilotDebugCommand",
"title": "Start Copilot Debug"
},
{
"command": "github.copilot.chat.clearTemporalContext",
"title": "Clear Temporal Context",
"category": "Developer"
},
{
"command": "github.copilot.search.markHelpful",
"title": "Helpful",
"icon": "$(thumbsup)",
"enablement": "!github.copilot.search.feedback.sent"
},
{
"command": "github.copilot.search.markUnhelpful",
"title": "Unhelpful",
"icon": "$(thumbsdown)",
"enablement": "!github.copilot.search.feedback.sent"
},
{
"command": "github.copilot.search.feedback",
"title": "Feedback",
"icon": "$(feedback)",
"enablement": "!github.copilot.search.feedback.sent"
},
{
"command": "github.copilot.chat.debug.showElements",
"title": "Show Rendered Elements"
},
{
"command": "github.copilot.chat.debug.hideElements",
"title": "Hide Rendered Elements"
},
{
"command": "github.copilot.chat.debug.showTools",
"title": "Show Tools"
},
{
"command": "github.copilot.chat.debug.hideTools",
"title": "Hide Tools"
},
{
"command": "github.copilot.chat.debug.showNesRequests",
"title": "Show NES Requests"
},
{
"command": "github.copilot.chat.debug.hideNesRequests",
"title": "Hide NES Requests"
},
{
"command": "github.copilot.chat.debug.showGhostRequests",
"title": "Show Ghost Requests"
},
{
"command": "github.copilot.chat.debug.hideGhostRequests",
"title": "Hide Ghost Requests"
},
{
"command": "github.copilot.chat.debug.showRawRequestBody",
"title": "Show Raw Request Body"
},
{
"command": "github.copilot.chat.debug.exportLogItem",
"title": "Export as...",
"icon": "$(export)"
},
{
"command": "github.copilot.chat.debug.exportPromptArchive",
"title": "Export All as Archive...",
"icon": "$(archive)"
},
{
"command": "github.copilot.chat.debug.exportPromptLogsAsJson",
"title": "Export All as JSON...",
"icon": "$(export)"
},
{
"command": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
"title": "Export All Prompt Logs as JSON...",
"icon": "$(export)"
},
{
"command": "github.copilot.nes.captureExpected.start",
"title": "Record Expected Edit (NES)",
"category": "Copilot"
},
{
"command": "github.copilot.nes.captureExpected.confirm",
"title": "Confirm and Save Expected Edit Capture",
"category": "Copilot"
},
{
"command": "github.copilot.nes.captureExpected.abort",
"title": "Cancel Expected Edit Capture",
"category": "Copilot"
},
{
"command": "github.copilot.nes.captureExpected.submit",
"title": "Submit NES Captures",
"category": "Copilot"
},
{
"command": "github.copilot.chat.showAsChatSession",
"title": "Show as chat session",
"icon": "$(chat-sparkle)"
},
{
"command": "github.copilot.debug.collectWorkspaceIndexDiagnostics",
"title": "%github.copilot.command.collectWorkspaceIndexDiagnostics%",
"category": "Developer"
},
{
"command": "github.copilot.chat.mcp.setup.check",
"title": "MCP Check: is supported"
},
{
"command": "github.copilot.chat.mcp.setup.validatePackage",
"title": "MCP Check: validate package"
},
{
"command": "github.copilot.chat.mcp.setup.flow",
"title": "MCP Check: do prompts"
},
{
"command": "github.copilot.chat.generateAltText",
"title": "Generate/Refine Alt Text"
},
{
"command": "github.copilot.chat.notebook.enableFollowCellExecution",
"title": "Enable Follow Cell Execution from Chat",
"shortTitle": "Follow",
"icon": "$(pinned)"
},
{
"command": "github.copilot.chat.notebook.disableFollowCellExecution",
"title": "Disable Follow Cell Execution from Chat",
"shortTitle": "Unfollow",
"icon": "$(pinned-dirty)"
},
{
"command": "github.copilot.cloud.resetWorkspaceConfirmations",
"title": "%github.copilot.command.resetCloudAgentWorkspaceConfirmations%"
},
{
"command": "github.copilot.cloud.sessions.openInBrowser",
"title": "%github.copilot.command.openCopilotAgentSessionsInBrowser%",
"icon": "$(link-external)"
},
{
"command": "github.copilot.cloud.sessions.proxy.closeChatSessionPullRequest",
"title": "%github.copilot.command.closeChatSessionPullRequest.title%"
},
{
"command": "github.copilot.cloud.sessions.installPRExtension",
"title": "%github.copilot.command.installPRExtension.title%",
"icon": "$(extensions)"
},
{
"command": "github.copilot.chat.openSuggestionsPanel",
"title": "Open Completions Panel",
"enablement": "github.copilot.extensionUnification.activated && !isWeb",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.toggleStatusMenu",
"title": "Open Status Menu",
"enablement": "github.copilot.extensionUnification.activated",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.completions.disable",
"title": "Disable Inline Suggestions",
"enablement": "github.copilot.extensionUnification.activated && github.copilot.activated && config.editor.inlineSuggest.enabled && github.copilot.completions.enabled",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.completions.enable",
"title": "Enable Inline Suggestions",
"enablement": "github.copilot.extensionUnification.activated && github.copilot.activated && !(config.editor.inlineSuggest.enabled && github.copilot.completions.enabled)",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.completions.toggle",
"title": "Toggle (Enable/Disable) Inline Suggestions",
"enablement": "github.copilot.extensionUnification.activated && github.copilot.activated",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.openModelPicker",
"title": "Change Completions Model",
"category": "GitHub Copilot",
"enablement": "github.copilot.extensionUnification.activated && !isWeb"
},
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges",
"title": "%github.copilot.command.applyCopilotCLIAgentSessionChanges%",
"enablement": "!chatSessionRequestInProgress",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply",
"title": "%github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply%",
"enablement": "!chatSessionRequestInProgress",
"icon": "$(git-stash-pop)",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.copilotCLI.addFileReference",
"title": "%github.copilot.command.chat.copilotCLI.addFileReference%",
"enablement": "github.copilot.chat.copilotCLI.hasSession",
"category": "Copilot CLI"
},
{
"command": "github.copilot.chat.copilotCLI.addSelection",
"title": "%github.copilot.command.chat.copilotCLI.addSelection%",
"enablement": "github.copilot.chat.copilotCLI.hasSession",
"category": "Copilot CLI"
},
{
"command": "github.copilot.chat.copilotCLI.acceptDiff",
"title": "%github.copilot.command.chat.copilotCLI.acceptDiff%",
"enablement": "github.copilot.chat.copilotCLI.hasActiveDiff",
"icon": "$(check)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.chat.copilotCLI.rejectDiff",
"title": "%github.copilot.command.chat.copilotCLI.rejectDiff%",
"enablement": "github.copilot.chat.copilotCLI.hasActiveDiff",
"icon": "$(close)",
"category": "Copilot CLI"
},
{
"command": "github.copilot.chat.checkoutPullRequestReroute",
"title": "%github.copilot.command.checkoutPullRequestReroute.title%",
"icon": "$(git-pull-request)",
"category": "GitHub Pull Request"
},
{
"command": "github.copilot.chat.cloudSessions.openRepository",
"title": "%github.copilot.command.cloudSessions.openRepository.title%",
"icon": "$(repo)",
"category": "GitHub Copilot"
},
{
"command": "github.copilot.chat.cloudSessions.clearCaches",
"title": "%github.copilot.command.cloudSessions.clearCaches.title%",
"category": "GitHub Copilot"
}
],
"configuration": [
{
"title": "GitHub Copilot Chat",
"id": "stable",
"properties": {
"github.copilot.chat.backgroundAgent.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.backgroundAgent.enabled%"
},
"github.copilot.chat.cloudAgent.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.cloudAgent.enabled%"
},
"github.copilot.chat.codeGeneration.useInstructionFiles": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.codeGeneration.useInstructionFiles%"
},
"github.copilot.editor.enableCodeActions": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.enableCodeActions%"
},
"github.copilot.renameSuggestions.triggerAutomatically": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.renameSuggestions.triggerAutomatically%"
},
"github.copilot.chat.localeOverride": {
"type": "string",
"enum": [
"auto",
"en",
"fr",
"it",
"de",
"es",
"ru",
"zh-CN",
"zh-TW",
"ja",
"ko",
"cs",
"pt-br",
"tr",
"pl"
],
"enumDescriptions": [
"Use VS Code's configured display language",
"English",
"français",
"italiano",
"Deutsch",
"español",
"русский",
"中文(简体)",
"中文(繁體)",
"日本語",
"한국어",
"čeština",
"português",
"Türkçe",
"polski"
],
"default": "auto",
"markdownDescription": "%github.copilot.config.localeOverride%"
},
"github.copilot.chat.terminalChatLocation": {
"type": "string",
"default": "chatView",
"markdownDescription": "%github.copilot.config.terminalChatLocation%",
"markdownEnumDescriptions": [
"%github.copilot.config.terminalChatLocation.chatView%",
"%github.copilot.config.terminalChatLocation.quickChat%",
"%github.copilot.config.terminalChatLocation.terminal%"
],
"enum": [
"chatView",
"quickChat",
"terminal"
]
},
"github.copilot.chat.scopeSelection": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.scopeSelection%"
},
"github.copilot.chat.useProjectTemplates": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.useProjectTemplates%"
},
"github.copilot.nextEditSuggestions.enabled": {
"type": "boolean",
"default": true,
"tags": [
"nextEditSuggestions",
"onExp"
],
"markdownDescription": "%github.copilot.nextEditSuggestions.enabled%",
"scope": "language-overridable"
},
"github.copilot.nextEditSuggestions.extendedRange": {
"type": "boolean",
"default": false,
"tags": [
"nextEditSuggestions",
"onExp"
],
"markdownDescription": "%github.copilot.nextEditSuggestions.extendedRange%"
},
"github.copilot.nextEditSuggestions.fixes": {
"type": "boolean",
"default": true,
"tags": [
"nextEditSuggestions",
"onExp"
],
"markdownDescription": "%github.copilot.nextEditSuggestions.fixes%",
"scope": "language-overridable"
},
"github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges": {
"type": "boolean",
"default": true,
"tags": [
"nextEditSuggestions",
"onExp"
],
"markdownDescription": "%github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges%",
"scope": "language-overridable"
},
"github.copilot.chat.agent.autoFix": {
"type": "boolean",
"default": false,
"description": "%github.copilot.config.autoFix%",
"tags": [
"onExp"
]
},
"github.copilot.chat.customInstructionsInSystemMessage": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.customInstructionsInSystemMessage%"
},
"github.copilot.chat.organizationCustomAgents.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.organizationCustomAgents.enabled%"
},
"github.copilot.chat.organizationInstructions.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.organizationInstructions.enabled%"
},
"github.copilot.chat.agent.currentEditorContext.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.agent.currentEditorContext.enabled%"
},
"github.copilot.enable": {
"type": "object",
"scope": "window",
"default": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"additionalProperties": {
"type": "boolean"
},
"markdownDescription": "Enable or disable auto triggering of Copilot completions for specified [languages](https://code.visualstudio.com/docs/languages/identifiers). You can still trigger suggestions manually using `Alt + \\`"
},
"github.copilot.selectedCompletionModel": {
"type": "string",
"default": "",
"markdownDescription": "The currently selected completion model ID. To select from a list of available models, use the __\"Change Completions Model\"__ command or open the model picker (from the Copilot menu in the VS Code title bar, select __\"Configure Code Completions\"__ then __\"Change Completions Model\"__. The value must be a valid model ID. An empty value indicates that the default model will be used."
}
}
},
{
"id": "preview",
"properties": {
"github.copilot.chat.reviewAgent.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.reviewAgent.enabled%",
"tags": [
"preview"
]
},
"github.copilot.chat.reviewSelection.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.reviewSelection.enabled%",
"tags": [
"preview"
]
},
"github.copilot.chat.reviewSelection.instructions": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"markdownDescription": "%github.copilot.config.reviewSelection.instruction.file%",
"properties": {
"file": {
"type": "string",
"examples": [
".copilot-review-instructions.md"
]
},
"language": {
"type": "string"
}
},
"examples": [
{
"file": ".copilot-review-instructions.md"
}
],
"required": [
"file"
]
},
{
"type": "object",
"markdownDescription": "%github.copilot.config.reviewSelection.instruction.text%",
"properties": {
"text": {
"type": "string",
"examples": [
"Use underscore for field names."
]
},
"language": {
"type": "string"
}
},
"required": [
"text"
],
"examples": [
{
"text": "Use underscore for field names."
},
{
"text": "Resolve all TODO tasks."
}
]
}
]
},
"default": [],
"markdownDescription": "%github.copilot.config.reviewSelection.instructions%",
"examples": [
[
{
"file": ".copilot-review-instructions.md"
},
{
"text": "Resolve all TODO tasks."
}
]
],
"tags": [
"preview"
]
},
"github.copilot.chat.copilotDebugCommand.enabled": {
"type": "boolean",
"default": true,
"tags": [
"preview"
],
"description": "%github.copilot.chat.copilotDebugCommand.enabled%"
},
"github.copilot.chat.codesearch.enabled": {
"type": "boolean",
"default": false,
"tags": [
"preview"
],
"markdownDescription": "%github.copilot.config.codesearch.enabled%"
},
"github.copilot.chat.claudeAgent.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.claudeAgent.enabled%",
"tags": [
"preview"
]
},
"github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.claudeAgent.allowDangerouslySkipPermissions%",
"tags": [
"preview"
]
},
"github.copilot.chat.copilotMemory.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.copilotMemory.enabled%",
"tags": [
"preview"
]
},
"github.copilot.chat.anthropic.useMessagesApi": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.useMessagesApi%",
"tags": [
"preview",
"onExp"
]
},
"github.copilot.chat.anthropic.thinking.budgetTokens": {
"type": "number",
"markdownDescription": "%github.copilot.config.anthropic.thinking.budgetTokens%",
"minimum": 0,
"maximum": 32000,
"default": 16000,
"tags": [
"preview",
"onExp"
]
}
}
},
{
"id": "experimental",
"properties": {
"github.copilot.chat.githubMcpServer.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.githubMcpServer.enabled%",
"tags": [
"experimental"
]
},
"github.copilot.chat.githubMcpServer.toolsets": {
"type": "array",
"default": [
"default"
],
"markdownDescription": "%github.copilot.config.githubMcpServer.toolsets%",
"items": {
"type": "string"
},
"tags": [
"experimental"
]
},
"github.copilot.chat.githubMcpServer.readonly": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.githubMcpServer.readonly%",
"tags": [
"experimental"
]
},
"github.copilot.chat.githubMcpServer.lockdown": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.githubMcpServer.lockdown%",
"tags": [
"experimental"
]
},
"github.copilot.chat.askQuestions.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.askQuestions.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"github.copilot.chat.switchAgent.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.switchAgent.enabled%",
"tags": [
"experimental"
]
},
"github.copilot.chat.imageUpload.enabled": {
"type": "boolean",
"default": true,
"tags": [
"experimental",
"onExp"
],
"markdownDescription": "%github.copilot.config.imageUpload.enabled%"
},
"github.copilot.chat.codeGeneration.instructions": {
"markdownDeprecationMessage": "%github.copilot.config.codeGeneration.instructions.deprecated%",
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"markdownDescription": "%github.copilot.config.codeGeneration.instruction.file%",
"properties": {
"file": {
"type": "string",
"examples": [
".copilot-codeGeneration-instructions.md"
]
},
"language": {
"type": "string"
}
},
"examples": [
{
"file": ".copilot-codeGeneration-instructions.md"
}
],
"required": [
"file"
]
},
{
"type": "object",
"markdownDescription": "%github.copilot.config.codeGeneration.instruction.text%",
"properties": {
"text": {
"type": "string",
"examples": [
"Use underscore for field names."
]
},
"language": {
"type": "string"
}
},
"required": [
"text"
],
"examples": [
{
"text": "Use underscore for field names."
},
{
"text": "Always add a comment: 'Generated by Copilot'."
}
]
}
]
},
"default": [],
"markdownDescription": "%github.copilot.config.codeGeneration.instructions%",
"examples": [
[
{
"file": ".copilot-codeGeneration-instructions.md"
},
{
"text": "Always add a comment: 'Generated by Copilot'."
}
]
],
"tags": [
"experimental"
]
},
"github.copilot.chat.testGeneration.instructions": {
"markdownDeprecationMessage": "%github.copilot.config.testGeneration.instructions.deprecated%",
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"markdownDescription": "%github.copilot.config.experimental.testGeneration.instruction.file%",
"properties": {
"file": {
"type": "string",
"examples": [
".copilot-test-instructions.md"
]
},
"language": {
"type": "string"
}
},
"examples": [
{
"file": ".copilot-test-instructions.md"
}
],
"required": [
"file"
]
},
{
"type": "object",
"markdownDescription": "%github.copilot.config.experimental.testGeneration.instruction.text%",
"properties": {
"text": {
"type": "string",
"examples": [
"Use suite and test instead of describe and it."
]
},
"language": {
"type": "string"
}
},
"required": [
"text"
],
"examples": [
{
"text": "Always try uniting related tests in a suite."
}
]
}
]
},
"default": [],
"markdownDescription": "%github.copilot.config.testGeneration.instructions%",
"examples": [
[
{
"file": ".copilot-test-instructions.md"
},
{
"text": "Always try uniting related tests in a suite."
}
]
],
"tags": [
"experimental"
]
},
"github.copilot.chat.commitMessageGeneration.instructions": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"markdownDescription": "%github.copilot.config.commitMessageGeneration.instruction.file%",
"properties": {
"file": {
"type": "string",
"examples": [
".copilot-commit-message-instructions.md"
]
}
},
"examples": [
{
"file": ".copilot-commit-message-instructions.md"
}
],
"required": [
"file"
]
},
{
"type": "object",
"markdownDescription": "%github.copilot.config.commitMessageGeneration.instruction.text%",
"properties": {
"text": {
"type": "string",
"examples": [
"Use conventional commit message format."
]
}
},
"required": [
"text"
],
"examples": [
{
"text": "Use conventional commit message format."
}
]
}
]
},
"default": [],
"markdownDescription": "%github.copilot.config.commitMessageGeneration.instructions%",
"examples": [
[
{
"file": ".copilot-commit-message-instructions.md"
},
{
"text": "Use conventional commit message format."
}
]
],
"tags": [
"experimental"
]
},
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"markdownDescription": "%github.copilot.config.pullRequestDescriptionGeneration.instruction.file%",
"properties": {
"file": {
"type": "string",
"examples": [
".copilot-pull-request-description-instructions.md"
]
}
},
"examples": [
{
"file": ".copilot-pull-request-description-instructions.md"
}
],
"required": [
"file"
]
},
{
"type": "object",
"markdownDescription": "%github.copilot.config.pullRequestDescriptionGeneration.instruction.text%",
"properties": {
"text": {
"type": "string",
"examples": [
"Include every commit message in the pull request description."
]
}
},
"required": [
"text"
],
"examples": [
{
"text": "Include every commit message in the pull request description."
}
]
}
]
},
"default": [],
"markdownDescription": "%github.copilot.config.pullRequestDescriptionGeneration.instructions%",
"examples": [
[
{
"file": ".copilot-pull-request-description-instructions.md"
},
{
"text": "Use conventional commit message format."
}
]
],
"tags": [
"experimental"
]
},
"github.copilot.chat.generateTests.codeLens": {
"type": "boolean",
"default": false,
"description": "%github.copilot.config.generateTests.codeLens%",
"tags": [
"experimental"
]
},
"github.copilot.chat.setupTests.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.setupTests.enabled%",
"tags": [
"experimental"
]
},
"github.copilot.chat.languageContext.typescript.enabled": {
"type": "boolean",
"default": false,
"scope": "resource",
"tags": [
"experimental",
"onExP"
],
"markdownDescription": "%github.copilot.chat.languageContext.typescript.enabled%"
},
"github.copilot.chat.languageContext.typescript.items": {
"type": "string",
"enum": [
"minimal",
"double",
"fillHalf",
"fill"
],
"default": "double",
"scope": "resource",
"tags": [
"experimental",
"onExP"
],
"markdownDescription": "%github.copilot.chat.languageContext.typescript.items%"
},
"github.copilot.chat.languageContext.typescript.includeDocumentation": {
"type": "boolean",
"default": false,
"scope": "resource",
"tags": [
"experimental",
"onExP"
],
"markdownDescription": "%github.copilot.chat.languageContext.typescript.includeDocumentation%"
},
"github.copilot.chat.languageContext.typescript.cacheTimeout": {
"type": "number",
"default": 500,
"scope": "resource",
"tags": [
"experimental",
"onExP"
],
"markdownDescription": "%github.copilot.chat.languageContext.typescript.cacheTimeout%"
},
"github.copilot.chat.languageContext.fix.typescript.enabled": {
"type": "boolean",
"default": false,
"scope": "resource",
"tags": [
"experimental",
"onExP"
],
"markdownDescription": "%github.copilot.chat.languageContext.fix.typescript.enabled%"
},
"github.copilot.chat.languageContext.inline.typescript.enabled": {
"type": "boolean",
"default": false,
"scope": "resource",
"tags": [
"experimental",
"onExP"
],
"markdownDescription": "%github.copilot.chat.languageContext.inline.typescript.enabled%"
},
"github.copilot.chat.newWorkspaceCreation.enabled": {
"type": "boolean",
"default": true,
"tags": [
"experimental"
],
"description": "%github.copilot.config.newWorkspaceCreation.enabled%"
},
"github.copilot.chat.newWorkspace.useContext7": {
"type": "boolean",
"default": false,
"tags": [
"experimental"
],
"markdownDescription": "%github.copilot.config.newWorkspace.useContext7%"
},
"github.copilot.chat.notebook.followCellExecution.enabled": {
"type": "boolean",
"default": false,
"tags": [
"experimental"
],
"description": "%github.copilot.config.notebook.followCellExecution%"
},
"github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled": {
"type": "boolean",
"default": false,
"tags": [
"experimental",
"onExp"
],
"description": "%github.copilot.config.notebook.enhancedNextEditSuggestions%"
},
"github.copilot.chat.summarizeAgentConversationHistory.enabled": {
"type": "boolean",
"default": true,
"tags": [
"experimental"
],
"description": "%github.copilot.config.summarizeAgentConversationHistory.enabled%"
},
"github.copilot.chat.virtualTools.threshold": {
"type": "number",
"minimum": 0,
"maximum": 128,
"default": 128,
"tags": [
"experimental"
],
"markdownDescription": "%github.copilot.config.virtualTools.threshold%"
},
"github.copilot.chat.alternateGptPrompt.enabled": {
"type": "boolean",
"default": false,
"tags": [
"experimental"
],
"description": "%github.copilot.config.alternateGptPrompt.enabled%"
},
"github.copilot.chat.alternateGeminiModelFPrompt.enabled": {
"type": "boolean",
"default": false,
"tags": [
"experimental",
"onExp"
],
"description": "%github.copilot.config.alternateGeminiModelFPrompt.enabled%"
},
"github.copilot.chat.anthropic.contextEditing.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.anthropic.contextEditing.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"github.copilot.chat.anthropic.toolSearchTool.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.anthropic.toolSearchTool.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"github.copilot.chat.responsesApiReasoningEffort": {
"type": "string",
"default": "default",
"markdownDescription": "%github.copilot.config.responsesApiReasoningEffort%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"low",
"medium",
"high",
"default"
]
},
"github.copilot.chat.responsesApiReasoningSummary": {
"type": "string",
"default": "detailed",
"markdownDescription": "%github.copilot.config.responsesApiReasoningSummary%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"off",
"detailed"
]
},
"github.copilot.chat.updated53CodexPrompt.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.updated53CodexPrompt.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"github.copilot.chat.anthropic.tools.websearch.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.anthropic.tools.websearch.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"github.copilot.chat.anthropic.tools.websearch.maxUses": {
"type": "number",
"default": 5,
"markdownDescription": "%github.copilot.config.anthropic.tools.websearch.maxUses%",
"minimum": 1,
"maximum": 20,
"tags": [
"experimental"
]
},
"github.copilot.chat.anthropic.tools.websearch.allowedDomains": {
"type": "array",
"default": [],
"markdownDescription": "%github.copilot.config.anthropic.tools.websearch.allowedDomains%",
"items": {
"type": "string"
},
"tags": [
"experimental"
]
},
"github.copilot.chat.anthropic.tools.websearch.blockedDomains": {
"type": "array",
"default": [],
"markdownDescription": "%github.copilot.config.anthropic.tools.websearch.blockedDomains%",
"items": {
"type": "string"
},
"tags": [
"experimental"
]
},
"github.copilot.chat.anthropic.tools.websearch.userLocation": {
"type": [
"object",
"null"
],
"default": null,
"markdownDescription": "%github.copilot.config.anthropic.tools.websearch.userLocation%",
"properties": {
"city": {
"type": "string",
"description": "City name (e.g., 'San Francisco')"
},
"region": {
"type": "string",
"description": "State or region (e.g., 'California')"
},
"country": {
"type": "string",
"description": "ISO country code (e.g., 'US')"
},
"timezone": {
"type": "string",
"description": "IANA timezone identifier (e.g., 'America/Los_Angeles')"
}
},
"tags": [
"experimental"
]
},
"github.copilot.chat.completionsFetcher": {
"type": [
"string",
"null"
],
"markdownDescription": "%github.copilot.config.completionsFetcher%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"electron-fetch",
"node-fetch"
]
},
"github.copilot.chat.nesFetcher": {
"type": [
"string",
"null"
],
"markdownDescription": "%github.copilot.config.nesFetcher%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"electron-fetch",
"node-fetch"
]
},
"github.copilot.chat.planAgent.additionalTools": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"scope": "resource",
"markdownDescription": "%github.copilot.config.planAgent.additionalTools%",
"tags": [
"experimental"
]
},
"github.copilot.chat.planAgent.model": {
"type": "string",
"default": "",
"scope": "resource",
"markdownDescription": "%github.copilot.config.planAgent.model%",
"tags": [
"experimental"
]
},
"github.copilot.chat.implementAgent.model": {
"type": "string",
"default": "",
"scope": "resource",
"markdownDescription": "%github.copilot.config.implementAgent.model%",
"tags": [
"experimental"
]
}
}
},
{
"id": "advanced",
"properties": {
"github.copilot.chat.anthropic.contextEditing.config": {
"type": "object",
"default": null,
"markdownDescription": "%github.copilot.config.anthropic.contextEditing.config%",
"tags": [
"advanced",
"experimental"
],
"properties": {
"triggerType": {
"type": "string",
"enum": [
"input_tokens",
"tool_uses"
],
"description": "Type of trigger for context editing"
},
"triggerValue": {
"type": "number",
"description": "Threshold value for the trigger (default: 80000 tokens)"
},
"keepCount": {
"type": "number",
"description": "Number of recent tool uses to keep (default: 3)"
},
"clearAtLeastTokens": {
"type": "number",
"description": "Minimum tokens to clear per edit (default: 10000)"
},
"excludeTools": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tool names to exclude from clearing"
},
"clearInputs": {
"type": "boolean",
"description": "Whether to clear tool inputs (default: true)"
},
"thinkingKeepTurns": {
"type": "number",
"description": "Number of thinking turns to keep (default: 1)"
}
}
},
"github.copilot.chat.debug.overrideChatEngine": {
"type": [
"string",
"null"
],
"markdownDescription": "%github.copilot.config.debug.overrideChatEngine%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.edits.gemini3MultiReplaceString": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable the modern `multi_replace_string_in_file` edit tool when generating edits with Gemini 3 models.",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.projectLabels.expanded": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.projectLabels.expanded%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.projectLabels.chat": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.projectLabels.chat%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.projectLabels.inline": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.projectLabels.inline%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.workspace.maxLocalIndexSize": {
"type": "number",
"default": 100000,
"markdownDescription": "%github.copilot.config.workspace.maxLocalIndexSize%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.workspace.enableFullWorkspace": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.workspace.enableFullWorkspace%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.workspace.enableCodeSearch": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.workspace.enableCodeSearch%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.workspace.enableEmbeddingsSearch": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.workspace.enableEmbeddingsSearch%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.workspace.preferredEmbeddingsModel": {
"type": "string",
"default": "",
"markdownDescription": "%github.copilot.config.workspace.preferredEmbeddingsModel%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.workspace.prototypeAdoCodeSearchEndpointOverride": {
"type": "string",
"default": "",
"markdownDescription": "%github.copilot.config.workspace.prototypeAdoCodeSearchEndpointOverride%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.feedback.onChange": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.feedback.onChange%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.review.intent": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.review.intent%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.notebook.summaryExperimentEnabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.notebook.summaryExperimentEnabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.notebook.variableFilteringEnabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.notebook.variableFilteringEnabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.notebook.alternativeFormat": {
"type": "string",
"default": "xml",
"enum": [
"xml",
"markdown"
],
"markdownDescription": "%github.copilot.config.notebook.alternativeFormat%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.notebook.alternativeNESFormat.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.notebook.alternativeNESFormat.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.debugTerminalCommandPatterns": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"markdownDescription": "%github.copilot.config.debugTerminalCommandPatterns%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.localWorkspaceRecording.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.localWorkspaceRecording.enabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.editRecording.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.editRecording.enabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.inlineChat.selectionRatioThreshold": {
"type": "number",
"default": 0,
"markdownDescription": "%github.copilot.config.inlineChat.selectionRatioThreshold%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.debug.requestLogger.maxEntries": {
"type": "number",
"default": 100,
"markdownDescription": "%github.copilot.config.debug.requestLogger.maxEntries%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.inlineEdits.diagnosticsContextProvider.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.inlineEdits.diagnosticsContextProvider.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.inlineEdits.chatSessionContextProvider.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.inlineEdits.chatSessionContextProvider.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.codesearch.agent.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.codesearch.agent.enabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.agent.temperature": {
"type": [
"number",
"null"
],
"markdownDescription": "%github.copilot.config.agent.temperature%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.agent.omitFileAttachmentContents": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.agent.omitFileAttachmentContents%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.agent.largeToolResultsToDisk.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.agent.largeToolResultsToDisk.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.agent.largeToolResultsToDisk.thresholdBytes": {
"type": "number",
"default": 8192,
"markdownDescription": "%github.copilot.config.agent.largeToolResultsToDisk.thresholdBytes%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.instantApply.shortContextModelName": {
"type": "string",
"default": "gpt-4o-instant-apply-full-ft-v66-short",
"markdownDescription": "%github.copilot.config.instantApply.shortContextModelName%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.instantApply.shortContextLimit": {
"type": "number",
"default": 8000,
"markdownDescription": "%github.copilot.config.instantApply.shortContextLimit%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.enableUserPreferences": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.enableUserPreferences%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.summarizeAgentConversationHistoryThreshold": {
"type": [
"number",
"null"
],
"markdownDescription": "%github.copilot.config.summarizeAgentConversationHistoryThreshold%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.agentHistorySummarizationMode": {
"type": [
"string",
"null"
],
"markdownDescription": "%github.copilot.config.agentHistorySummarizationMode%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.agentHistorySummarizationWithPromptCache": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.agentHistorySummarizationWithPromptCache%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.agentHistorySummarizationForceGpt41": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.agentHistorySummarizationForceGpt41%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.useResponsesApiTruncation": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.useResponsesApiTruncation%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.omitBaseAgentInstructions": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.omitBaseAgentInstructions%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.promptFileContextProvider.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.promptFileContextProvider.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.tools.defaultToolsGrouped": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.tools.defaultToolsGrouped%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.gpt5AlternativePatch": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.gpt5AlternativePatch%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.inlineEdits.triggerOnEditorChangeAfterSeconds": {
"type": [
"number",
"null"
],
"markdownDescription": "%github.copilot.config.inlineEdits.triggerOnEditorChangeAfterSeconds%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.inlineEdits.nextCursorPrediction.displayLine": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.inlineEdits.nextCursorPrediction.displayLine%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.inlineEdits.nextCursorPrediction.currentFileMaxTokens": {
"type": "number",
"default": 2000,
"markdownDescription": "%github.copilot.config.inlineEdits.nextCursorPrediction.currentFileMaxTokens%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.inlineEdits.renameSymbolSuggestions": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.inlineEdits.renameSymbolSuggestions%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.nextEditSuggestions.preferredModel": {
"type": "string",
"default": "none",
"markdownDescription": "%github.copilot.config.nextEditSuggestions.preferredModel%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.cli.customAgents.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.cli.customAgents.enabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.cli.mcp.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.cli.mcp.enabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.agentCustomizationSkill.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.agentCustomizationSkill.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.searchSubagent.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.searchSubagent.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.searchSubagent.model": {
"type": "string",
"default": "",
"markdownDescription": "%github.copilot.config.searchSubagent.model%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.searchSubagent.toolCallLimit": {
"type": "number",
"default": 4,
"markdownDescription": "%github.copilot.config.searchSubagent.toolCallLimit%",
"tags": [
"advanced",
"experimental",
"onExp"
]
}
}
}
],
"submenus": [
{
"id": "copilot/reviewComment/additionalActions/applyAndNext",
"label": "%github.copilot.submenu.reviewComment.applyAndNext.label%"
},
{
"id": "copilot/reviewComment/additionalActions/discardAndNext",
"label": "%github.copilot.submenu.reviewComment.discardAndNext.label%"
},
{
"id": "copilot/reviewComment/additionalActions/discard",
"label": "%github.copilot.submenu.reviewComment.discard.label%"
},
{
"id": "github.copilot.chat.debug.filter",
"label": "Filter",
"icon": "$(filter)"
},
{
"id": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
"label": "Export All Logs as JSON",
"icon": "$(file-export)"
}
],
"menus": {
"editor/title": [
{
"command": "github.copilot.debug.generateInlineEditTests",
"when": "resourceScheme == 'ccreq'"
},
{
"command": "github.copilot.chat.notebook.enableFollowCellExecution",
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && !github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && !config.notebook.globalToolbar",
"group": "navigation@10"
},
{
"command": "github.copilot.chat.notebook.disableFollowCellExecution",
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && !config.notebook.globalToolbar",
"group": "navigation@10"
},
{
"command": "github.copilot.chat.replay",
"group": "navigation@9",
"when": "resourceFilename === 'benchRun.chatReplay.json'"
},
{
"command": "github.copilot.chat.showAsChatSession",
"group": "navigation@9",
"when": "resourceFilename === 'benchRun.chatReplay.json' || resourceFilename === 'chat-export-logs.json'"
},
{
"command": "github.copilot.chat.copilotCLI.acceptDiff",
"group": "navigation@1",
"when": "github.copilot.chat.copilotCLI.hasActiveDiff"
},
{
"command": "github.copilot.chat.copilotCLI.rejectDiff",
"group": "navigation@2",
"when": "github.copilot.chat.copilotCLI.hasActiveDiff"
}
],
"editor/title/context": [
{
"command": "github.copilot.chat.copilotCLI.addFileReference",
"group": "copilot",
"when": "github.copilot.chat.copilotCLI.hasSession && !inOutput && resourceScheme != 'vscode-webview' && resourceScheme != 'webview-panel'"
}
],
"explorer/context": [
{
"command": "github.copilot.chat.showAsChatSession",
"when": "resourceFilename === 'benchRun.chatReplay.json' || resourceFilename === 'chat-export-logs.json'",
"group": "2_copilot@1"
},
{
"command": "github.copilot.chat.copilotCLI.addFileReference",
"group": "copilot",
"when": "github.copilot.chat.copilotCLI.hasSession && !explorerResourceIsFolder"
}
],
"editor/context": [
{
"command": "github.copilot.chat.explain",
"when": "!github.copilot.interactiveSession.disabled",
"group": "1_chat@4"
},
{
"command": "github.copilot.chat.copilotCLI.addFileReference",
"group": "copilot",
"when": "github.copilot.chat.copilotCLI.hasSession && !inOutput && resourceScheme != 'vscode-webview' && resourceScheme != 'webview-panel'"
},
{
"command": "github.copilot.chat.copilotCLI.addSelection",
"group": "copilot",
"when": "github.copilot.chat.copilotCLI.hasSession && editorHasSelection && !inOutput && resourceScheme != 'vscode-webview' && resourceScheme != 'webview-panel'"
}
],
"editor/context/chat": [
{
"command": "github.copilot.chat.fix",
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"group": "copilotAction@1"
},
{
"command": "github.copilot.chat.review",
"when": "config.github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled && resourceScheme != 'vscode-chat-code-block'",
"group": "copilotAction@2"
},
{
"command": "github.copilot.chat.generateDocs",
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"group": "copilotGenerate@1"
},
{
"command": "github.copilot.chat.generateTests",
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
"group": "copilotGenerate@2"
}
],
"chat/editor/inlineGutter": [
{
"command": "github.copilot.chat.explain",
"when": "!github.copilot.interactiveSession.disabled && editor.hasSelection",
"group": "2_chat@2"
},
{
"command": "github.copilot.chat.review",
"when": "!github.copilot.interactiveSession.disabled && editor.hasSelection && config.github.copilot.chat.reviewSelection.enabled",
"group": "2_chat@3"
}
],
"chat/input/editing/sessionToolbar": [
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply",
"when": "chatSessionType == copilotcli && workbenchState != empty",
"group": "navigation@0"
},
{
"command": "github.copilot.chat.checkoutPullRequestReroute",
"when": "chatSessionType == copilot-cloud-agent && !github.vscode-pull-request-github.activated && gitOpenRepositoryCount != 0",
"group": "navigation@0"
}
],
"chat/newSession": [
{
"command": "github.copilot.cli.newSession",
"group": "4_recommendations@0"
}
],
"testing/item/result": [
{
"command": "github.copilot.tests.fixTestFailure.fromInline",
"when": "testResultState == failed && !testResultOutdated",
"group": "inline@2"
}
],
"testing/item/context": [
{
"command": "github.copilot.tests.fixTestFailure.fromInline",
"when": "testResultState == failed && !testResultOutdated",
"group": "inline@2"
}
],
"commandPalette": [
{
"command": "github.copilot.chat.triggerPermissiveSignIn",
"when": "false"
},
{
"command": "github.copilot.interactiveSession.feedback",
"when": "github.copilot-chat.activated && !github.copilot.interactiveSession.disabled"
},
{
"command": "github.copilot.debug.workbenchState",
"when": "true"
},
{
"command": "github.copilot.chat.rerunWithCopilotDebug",
"when": "false"
},
{
"command": "github.copilot.chat.startCopilotDebugCommand",
"when": "false"
},
{
"command": "github.copilot.git.generateCommitMessage",
"when": "false"
},
{
"command": "github.copilot.git.resolveMergeConflicts",
"when": "false"
},
{
"command": "github.copilot.chat.explain",
"when": "false"
},
{
"command": "github.copilot.chat.review",
"when": "!github.copilot.interactiveSession.disabled"
},
{
"command": "github.copilot.chat.review.apply",
"when": "false"
},
{
"command": "github.copilot.chat.review.applyAndNext",
"when": "false"
},
{
"command": "github.copilot.chat.review.discard",
"when": "false"
},
{
"command": "github.copilot.chat.review.discardAndNext",
"when": "false"
},
{
"command": "github.copilot.chat.review.discardAll",
"when": "false"
},
{
"command": "github.copilot.chat.review.stagedChanges",
"when": "false"
},
{
"command": "github.copilot.chat.review.unstagedChanges",
"when": "false"
},
{
"command": "github.copilot.chat.review.changes",
"when": "false"
},
{
"command": "github.copilot.chat.review.stagedFileChange",
"when": "false"
},
{
"command": "github.copilot.chat.review.unstagedFileChange",
"when": "false"
},
{
"command": "github.copilot.chat.review.previous",
"when": "false"
},
{
"command": "github.copilot.chat.review.next",
"when": "false"
},
{
"command": "github.copilot.chat.review.continueInInlineChat",
"when": "false"
},
{
"command": "github.copilot.chat.review.continueInChat",
"when": "false"
},
{
"command": "github.copilot.chat.review.markHelpful",
"when": "false"
},
{
"command": "github.copilot.chat.review.markUnhelpful",
"when": "false"
},
{
"command": "github.copilot.devcontainer.generateDevContainerConfig",
"when": "false"
},
{
"command": "github.copilot.tests.fixTestFailure",
"when": "false"
},
{
"command": "github.copilot.tests.fixTestFailure.fromInline",
"when": "false"
},
{
"command": "github.copilot.search.markHelpful",
"when": "false"
},
{
"command": "github.copilot.search.markUnhelpful",
"when": "false"
},
{
"command": "github.copilot.search.feedback",
"when": "false"
},
{
"command": "github.copilot.chat.debug.showElements",
"when": "false"
},
{
"command": "github.copilot.chat.debug.hideElements",
"when": "false"
},
{
"command": "github.copilot.chat.debug.showTools",
"when": "false"
},
{
"command": "github.copilot.chat.debug.hideTools",
"when": "false"
},
{
"command": "github.copilot.chat.debug.showNesRequests",
"when": "false"
},
{
"command": "github.copilot.chat.debug.hideNesRequests",
"when": "false"
},
{
"command": "github.copilot.chat.debug.showGhostRequests",
"when": "false"
},
{
"command": "github.copilot.chat.debug.hideGhostRequests",
"when": "false"
},
{
"command": "github.copilot.chat.debug.exportLogItem",
"when": "false"
},
{
"command": "github.copilot.chat.debug.exportPromptArchive",
"when": "false"
},
{
"command": "github.copilot.chat.debug.exportPromptLogsAsJson",
"when": "false"
},
{
"command": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
"when": "false"
},
{
"command": "github.copilot.chat.mcp.setup.check",
"when": "false"
},
{
"command": "github.copilot.chat.mcp.setup.validatePackage",
"when": "false"
},
{
"command": "github.copilot.chat.mcp.setup.flow",
"when": "false"
},
{
"command": "github.copilot.chat.debug.showRawRequestBody",
"when": "false"
},
{
"command": "github.copilot.debug.showOutputChannel",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.delete",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.resumeInTerminal",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.rename",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.openRepository",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.openWorktreeInNewWindow",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.openWorktreeInTerminal",
"when": "false"
},
{
"command": "github.copilot.cloud.sessions.openInBrowser",
"when": "false"
},
{
"command": "github.copilot.cloud.sessions.proxy.closeChatSessionPullRequest",
"when": "false"
},
{
"command": "github.copilot.cloud.sessions.installPRExtension",
"when": "false"
},
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges",
"when": "false"
},
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply",
"when": "false"
},
{
"command": "github.copilot.chat.showAsChatSession",
"when": "false"
},
{
"command": "github.copilot.chat.checkoutPullRequestReroute",
"when": "false"
},
{
"command": "github.copilot.chat.cloudSessions.openRepository",
"when": "false"
},
{
"command": "github.copilot.nes.captureExpected.start",
"when": "github.copilot.inlineEditsEnabled"
},
{
"command": "github.copilot.nes.captureExpected.submit",
"when": "github.copilot.inlineEditsEnabled"
}
],
"view/title": [
{
"submenu": "github.copilot.chat.debug.filter",
"when": "view == copilot-chat",
"group": "navigation"
},
{
"command": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
"when": "view == copilot-chat",
"group": "export@1"
},
{
"command": "github.copilot.debug.showOutputChannel",
"when": "view == copilot-chat",
"group": "3_show@1"
},
{
"command": "github.copilot.debug.showChatLogView",
"when": "view == workbench.panel.chat.view.copilot",
"group": "3_show"
}
],
"view/item/context": [
{
"command": "github.copilot.chat.debug.showRawRequestBody",
"when": "view == copilot-chat && viewItem == request",
"group": "export@0"
},
{
"command": "github.copilot.chat.debug.exportLogItem",
"when": "view == copilot-chat && (viewItem == toolcall || viewItem == request)",
"group": "export@1"
},
{
"command": "github.copilot.chat.debug.exportPromptArchive",
"when": "view == copilot-chat && viewItem == chatprompt",
"group": "export@2"
},
{
"command": "github.copilot.chat.debug.exportPromptLogsAsJson",
"when": "view == copilot-chat && viewItem == chatprompt",
"group": "export@3"
}
],
"searchPanel/aiResults/commands": [
{
"command": "github.copilot.search.markHelpful",
"group": "inline@0",
"when": "aiResultsTitle && aiResultsRequested"
},
{
"command": "github.copilot.search.markUnhelpful",
"group": "inline@1",
"when": "aiResultsTitle && aiResultsRequested"
},
{
"command": "github.copilot.search.feedback",
"group": "inline@2",
"when": "aiResultsTitle && aiResultsRequested && github.copilot.debugReportFeedback"
}
],
"comments/comment/title": [
{
"command": "github.copilot.chat.review.markHelpful",
"group": "inline@0",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.markUnhelpful",
"group": "inline@1",
"when": "commentController == github-copilot-review"
}
],
"commentsView/commentThread/context": [
{
"command": "github.copilot.chat.review.apply",
"group": "context@1",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.discard",
"group": "context@2",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.discardAll",
"group": "context@3",
"when": "commentController == github-copilot-review"
}
],
"comments/commentThread/additionalActions": [
{
"submenu": "copilot/reviewComment/additionalActions/applyAndNext",
"group": "inline@1",
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments > 1"
},
{
"command": "github.copilot.chat.review.apply",
"group": "inline@1",
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments == 1"
},
{
"submenu": "copilot/reviewComment/additionalActions/discardAndNext",
"group": "inline@2",
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments > 1"
},
{
"submenu": "copilot/reviewComment/additionalActions/discard",
"group": "inline@2",
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments == 1"
}
],
"copilot/reviewComment/additionalActions/applyAndNext": [
{
"command": "github.copilot.chat.review.applyAndNext",
"group": "inline@1",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.apply",
"group": "inline@2",
"when": "commentController == github-copilot-review"
}
],
"copilot/reviewComment/additionalActions/discardAndNext": [
{
"command": "github.copilot.chat.review.discardAndNext",
"group": "inline@1",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.discard",
"group": "inline@2",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.continueInInlineChat",
"group": "inline@3",
"when": "commentController == github-copilot-review"
}
],
"copilot/reviewComment/additionalActions/discard": [
{
"command": "github.copilot.chat.review.discard",
"group": "inline@2",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.continueInInlineChat",
"group": "inline@3",
"when": "commentController == github-copilot-review"
}
],
"comments/commentThread/title": [
{
"command": "github.copilot.chat.review.previous",
"group": "inline@1",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.next",
"group": "inline@2",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.continueInChat",
"group": "inline@3",
"when": "commentController == github-copilot-review"
},
{
"command": "github.copilot.chat.review.discardAll",
"group": "inline@4",
"when": "commentController == github-copilot-review"
}
],
"scm/title": [
{
"command": "github.copilot.chat.review.changes",
"group": "navigation",
"when": "config.github.copilot.chat.reviewAgent.enabled && github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmProviderRootUri in github.copilot.chat.reviewDiff.enabledRootUris"
}
],
"scm/resourceGroup/context": [
{
"command": "github.copilot.chat.review.stagedChanges",
"when": "config.github.copilot.chat.reviewAgent.enabled && github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmResourceGroup == index",
"group": "inline@-3"
},
{
"command": "github.copilot.chat.review.unstagedChanges",
"when": "config.github.copilot.chat.reviewAgent.enabled && github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmResourceGroup == workingTree",
"group": "inline@-3"
}
],
"scm/resourceState/context": [
{
"command": "github.copilot.git.resolveMergeConflicts",
"when": "scmProvider == git && scmResourceGroup == merge && git.activeResourceHasMergeConflicts",
"group": "z_chat@1"
},
{
"command": "github.copilot.chat.review.stagedFileChange",
"group": "3_copilot",
"when": "config.github.copilot.chat.reviewAgent.enabled && github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmResourceGroup == index"
},
{
"command": "github.copilot.chat.review.unstagedFileChange",
"group": "3_copilot",
"when": "config.github.copilot.chat.reviewAgent.enabled && github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmResourceGroup == workingTree"
}
],
"scm/inputBox": [
{
"command": "github.copilot.git.generateCommitMessage",
"when": "scmProvider == git"
}
],
"testing/message/context": [
{
"command": "github.copilot.tests.fixTestFailure",
"when": "testing.testItemHasUri",
"group": "inline@1"
}
],
"issue/reporter": [
{
"command": "github.copilot.report"
}
],
"github.copilot.chat.debug.filter": [
{
"command": "github.copilot.chat.debug.showElements",
"when": "github.copilot.chat.debug.elementsHidden",
"group": "commands@0"
},
{
"command": "github.copilot.chat.debug.hideElements",
"when": "!github.copilot.chat.debug.elementsHidden",
"group": "commands@0"
},
{
"command": "github.copilot.chat.debug.showTools",
"when": "github.copilot.chat.debug.toolsHidden",
"group": "commands@1"
},
{
"command": "github.copilot.chat.debug.hideTools",
"when": "!github.copilot.chat.debug.toolsHidden",
"group": "commands@1"
},
{
"command": "github.copilot.chat.debug.showNesRequests",
"when": "github.copilot.chat.debug.nesRequestsHidden",
"group": "commands@2"
},
{
"command": "github.copilot.chat.debug.hideNesRequests",
"when": "!github.copilot.chat.debug.nesRequestsHidden",
"group": "commands@2"
},
{
"command": "github.copilot.chat.debug.showGhostRequests",
"when": "github.copilot.chat.debug.ghostRequestsHidden",
"group": "commands@3"
},
{
"command": "github.copilot.chat.debug.hideGhostRequests",
"when": "!github.copilot.chat.debug.ghostRequestsHidden",
"group": "commands@3"
}
],
"notebook/toolbar": [
{
"command": "github.copilot.chat.notebook.enableFollowCellExecution",
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && !github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && config.notebook.globalToolbar",
"group": "navigation/execute@15"
},
{
"command": "github.copilot.chat.notebook.disableFollowCellExecution",
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && config.notebook.globalToolbar",
"group": "navigation/execute@15"
}
],
"editor/content": [
{
"command": "github.copilot.git.resolveMergeConflicts",
"group": "z_chat@1",
"when": "config.git.enabled && !git.missing && !isInDiffEditor && !isMergeEditor && resource in git.mergeChanges && git.activeResourceHasMergeConflicts"
}
],
"multiDiffEditor/content": [
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges",
"when": "resourceScheme == copilotcli-worktree-changes && workbenchState != empty"
}
],
"chat/chatSessions": [
{
"command": "github.copilot.cli.sessions.delete",
"when": "chatSessionType == copilotcli",
"group": "1_edit@10"
},
{
"command": "github.copilot.cli.sessions.rename",
"when": "chatSessionType == copilotcli",
"group": "1_edit@4"
},
{
"command": "github.copilot.cli.sessions.openWorktreeInNewWindow",
"when": "chatSessionType == copilotcli",
"group": "2_open@1"
},
{
"command": "github.copilot.cli.sessions.openWorktreeInTerminal",
"when": "chatSessionType == copilotcli",
"group": "2_open@2"
},
{
"command": "github.copilot.cli.sessions.resumeInTerminal",
"when": "chatSessionType == copilotcli",
"group": "2_open@3"
},
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges",
"when": "chatSessionType == copilotcli && workbenchState != empty",
"group": "3_apply@0"
},
{
"command": "github.copilot.cloud.sessions.openInBrowser",
"when": "chatSessionType == copilot-cloud-agent",
"group": "navigation@10"
},
{
"command": "github.copilot.cloud.sessions.proxy.closeChatSessionPullRequest",
"when": "chatSessionType == copilot-cloud-agent",
"group": "1_edit@10"
}
],
"chat/multiDiff/context": [
{
"command": "github.copilot.cloud.sessions.installPRExtension",
"when": "chatSessionType == copilot-cloud-agent && !github.copilot.prExtensionInstalled",
"group": "inline@1"
}
]
},
"icons": {
"copilot-logo": {
"description": "%github.copilot.icon%",
"default": {
"fontPath": "assets/copilot.woff",
"fontCharacter": "\\0041"
}
},
"copilot-warning": {
"description": "%github.copilot.icon%",
"default": {
"fontPath": "assets/copilot.woff",
"fontCharacter": "\\0042"
}
},
"copilot-notconnected": {
"description": "%github.copilot.icon%",
"default": {
"fontPath": "assets/copilot.woff",
"fontCharacter": "\\0043"
}
}
},
"iconFonts": [
{
"id": "copilot-font",
"src": [
{
"path": "assets/copilot.woff",
"format": "woff"
}
]
}
],
"terminalQuickFixes": [
{
"id": "copilot-chat.fixWithCopilot",
"commandLineMatcher": ".+",
"commandExitResult": "error",
"outputMatcher": {
"anchor": "bottom",
"length": 1,
"lineMatcher": ".+",
"offset": 0
},
"kind": "explain"
},
{
"id": "copilot-chat.generateCommitMessage",
"commandLineMatcher": "git add .+",
"commandExitResult": "success",
"kind": "explain",
"outputMatcher": {
"anchor": "bottom",
"length": 1,
"lineMatcher": ".+",
"offset": 0
}
},
{
"id": "copilot-chat.terminalToDebugging",
"commandLineMatcher": ".+",
"kind": "explain",
"commandExitResult": "error",
"outputMatcher": {
"anchor": "bottom",
"length": 1,
"lineMatcher": "",
"offset": 0
}
},
{
"id": "copilot-chat.terminalToDebuggingSuccess",
"commandLineMatcher": ".+",
"kind": "explain",
"commandExitResult": "success",
"outputMatcher": {
"anchor": "bottom",
"length": 1,
"lineMatcher": "",
"offset": 0
}
}
],
"languages": [
{
"id": "ignore",
"filenamePatterns": [
".copilotignore"
],
"aliases": []
},
{
"id": "markdown",
"extensions": [
".copilotmd"
]
}
],
"notebooks": [
{
"type": "copilot-chat-replay",
"displayName": "Copilot Chat Replay",
"selector": [
{
"filenamePattern": "*.chatreplay.json"
}
]
}
],
"views": {
"copilot-chat": [
{
"id": "copilot-chat",
"name": "Chat Debug",
"icon": "assets/debug-icon.svg",
"when": "github.copilot.chat.showLogView"
}
],
"context-inspector": [
{
"id": "context-inspector",
"name": "Language Context Inspector",
"icon": "$(inspect)",
"when": "github.copilot.chat.showContextInspectorView"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "copilot-chat",
"title": "Chat Debug",
"icon": "assets/debug-icon.svg"
},
{
"id": "context-inspector",
"title": "Language Context Inspector",
"icon": "$(inspect)"
}
]
},
"configurationDefaults": {
"workbench.editorAssociations": {
"*.copilotmd": "vscode.markdown.preview.editor"
}
},
"keybindings": [
{
"command": "github.copilot.chat.copilotCLI.addFileReference",
"key": "ctrl+shift+.",
"mac": "cmd+shift+.",
"when": "github.copilot.chat.copilotCLI.hasSession && editorTextFocus"
},
{
"command": "github.copilot.chat.rerunWithCopilotDebug",
"key": "ctrl+alt+.",
"mac": "cmd+alt+.",
"when": "github.copilot-chat.activated && terminalShellIntegrationEnabled && terminalFocus && !terminalAltBufferActive"
},
{
"command": "github.copilot.nes.captureExpected.start",
"key": "ctrl+k ctrl+r",
"mac": "cmd+k cmd+r",
"when": "editorTextFocus && github.copilot.inlineEditsEnabled"
},
{
"command": "github.copilot.nes.captureExpected.confirm",
"key": "ctrl+enter",
"mac": "cmd+enter",
"when": "copilotNesCaptureMode && editorTextFocus"
},
{
"command": "github.copilot.nes.captureExpected.abort",
"key": "escape",
"when": "copilotNesCaptureMode && editorTextFocus"
}
],
"walkthroughs": [
{
"id": "copilotWelcome",
"title": "%github.copilot.walkthrough.title%",
"description": "%github.copilot.walkthrough.description%",
"when": "!isWeb",
"steps": [
{
"id": "copilot.setup.signIn",
"title": "%github.copilot.walkthrough.setup.signIn.title%",
"description": "%github.copilot.walkthrough.setup.signIn.description%",
"when": "chatEntitlementSignedOut && !view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && !github.copilot.interactiveSession.individual.disabled && !github.copilot.interactiveSession.individual.expired && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport && !github.copilot.interactiveSession.invalidToken && !github.copilot.interactiveSession.rateLimited && !github.copilot.interactiveSession.gitHubLoginFailed",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
}
},
{
"id": "copilot.setup.signInNoAction",
"title": "%github.copilot.walkthrough.setup.signIn.title%",
"description": "%github.copilot.walkthrough.setup.noAction.description%",
"when": "chatEntitlementSignedOut && view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && !github.copilot.interactiveSession.individual.disabled && !github.copilot.interactiveSession.individual.expired && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport && !github.copilot.interactiveSession.invalidToken && !github.copilot.interactiveSession.rateLimited && !github.copilot.interactiveSession.gitHubLoginFailed",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
}
},
{
"id": "copilot.setup.signUp",
"title": "%github.copilot.walkthrough.setup.signUp.title%",
"description": "%github.copilot.walkthrough.setup.signUp.description%",
"when": "chatPlanCanSignUp && !view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && (github.copilot.interactiveSession.individual.disabled || github.copilot.interactiveSession.individual.expired) && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport && !github.copilot.interactiveSession.invalidToken && !github.copilot.interactiveSession.rateLimited && !github.copilot.interactiveSession.gitHubLoginFailed",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
}
},
{
"id": "copilot.setup.signUpNoAction",
"title": "%github.copilot.walkthrough.setup.signUp.title%",
"description": "%github.copilot.walkthrough.setup.noAction.description%",
"when": "chatPlanCanSignUp && view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && (github.copilot.interactiveSession.individual.disabled || github.copilot.interactiveSession.individual.expired) && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport && !github.copilot.interactiveSession.invalidToken && !github.copilot.interactiveSession.rateLimited && !github.copilot.interactiveSession.gitHubLoginFailed",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
}
},
{
"id": "copilot.panelChat",
"title": "%github.copilot.walkthrough.panelChat.title%",
"description": "%github.copilot.walkthrough.panelChat.description%",
"when": "!chatEntitlementSignedOut || chatIsEnabled ",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
}
},
{
"id": "copilot.edits",
"title": "%github.copilot.walkthrough.edits.title%",
"description": "%github.copilot.walkthrough.edits.description%",
"when": "!chatEntitlementSignedOut || chatIsEnabled ",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.edits.media.altText%"
}
},
{
"id": "copilot.firstSuggest",
"title": "%github.copilot.walkthrough.firstSuggest.title%",
"description": "%github.copilot.walkthrough.firstSuggest.description%",
"when": "!chatEntitlementSignedOut || chatIsEnabled ",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.firstSuggest.media.altText%"
}
},
{
"id": "copilot.inlineChatNotMac",
"title": "%github.copilot.walkthrough.inlineChatNotMac.title%",
"description": "%github.copilot.walkthrough.inlineChatNotMac.description%",
"when": "!isMac && (!chatEntitlementSignedOut || chatIsEnabled )",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.inlineChatNotMac.media.altText%"
}
},
{
"id": "copilot.inlineChatMac",
"title": "%github.copilot.walkthrough.inlineChatMac.title%",
"description": "%github.copilot.walkthrough.inlineChatMac.description%",
"when": "isMac && (!chatEntitlementSignedOut || chatIsEnabled )",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.inlineChatMac.media.altText%"
}
},
{
"id": "copilot.sparkle",
"title": "%github.copilot.walkthrough.sparkle.title%",
"description": "%github.copilot.walkthrough.sparkle.description%",
"when": "!chatEntitlementSignedOut || chatIsEnabled",
"media": {
"video": {
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit.mp4",
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit-light.mp4",
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit-hc.mp4",
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit-hclight.mp4"
},
"altText": "%github.copilot.walkthrough.sparkle.media.altText%"
}
}
]
}
],
"jsonValidation": [
{
"fileMatch": "settings.json",
"url": "ccsettings://root/schema.json"
}
],
"typescriptServerPlugins": [
{
"name": "@vscode/copilot-typescript-server-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
],
"chatSessions": [
{
"type": "claude-code",
"name": "claude",
"displayName": "Claude Agent",
"icon": "$(claude)",
"welcomeTitle": "Claude Agent",
"welcomeMessage": "Powered by the same agent as Claude Code",
"inputPlaceholder": "Run local tasks with Claude, type `#` for adding context",
"order": 3,
"description": "The Claude Agent works on your local machine",
"when": "config.github.copilot.chat.claudeAgent.enabled && !github.copilot.previewFeaturesDisabled",
"canDelegate": true,
"capabilities": {
"supportsFileAttachments": true
},
"commands": [
{
"name": "init",
"description": "Initialize a new CLAUDE.md file with codebase documentation"
},
{
"name": "pr-comments",
"description": "Get comments from a GitHub pull request"
},
{
"name": "review",
"description": "Review a pull request"
},
{
"name": "security-review",
"description": "Complete a security review of the pending changes on the current branch"
},
{
"name": "agents",
"description": "Create and manage specialized Claude agents"
},
{
"name": "hooks",
"description": "Configure Claude Code hooks for tool execution and events"
},
{
"name": "memory",
"description": "Open memory files (CLAUDE.md) for editing"
}
]
},
{
"type": "copilotcli",
"name": "cli",
"displayName": "Background Agent",
"icon": "$(worktree)",
"welcomeTitle": "Background Agent",
"welcomeMessage": "Run tasks in the background",
"inputPlaceholder": "Run tasks in the background, type `#` for adding context",
"order": 2,
"canDelegate": true,
"description": "Delegate tasks to a background agent.",
"when": "config.github.copilot.chat.backgroundAgent.enabled",
"capabilities": {
"supportsFileAttachments": true,
"supportsProblemAttachments": true,
"supportsToolAttachments": false,
"supportsImageAttachments": true,
"supportsSymbolAttachments": true,
"supportsSearchResultAttachments": true,
"supportsSourceControlAttachments": true,
"supportsPromptAttachments": true
},
"commands": [
{
"name": "delegate",
"description": "Delegate chat session to cloud agent and create associated PR",
"when": "config.github.copilot.chat.cloudAgent.enabled"
}
],
"customAgentTarget": "github-copilot"
},
{
"type": "copilot-cloud-agent",
"alternativeIds": [
"copilot-swe-agent"
],
"name": "cloud",
"displayName": "Cloud Agent",
"icon": "$(cloud)",
"welcomeTitle": "Cloud Agent",
"welcomeMessage": "Delegate tasks to the cloud",
"inputPlaceholder": "Delegate tasks to the cloud, type `#` for adding context",
"order": 1,
"canDelegate": true,
"description": "Delegate tasks to the GitHub Copilot Cloud Agent. The agent works asynchronously in the cloud to implement changes, iterates via chat, and can create or update pull requests as needed.",
"when": "config.github.copilot.chat.cloudAgent.enabled",
"capabilities": {
"supportsFileAttachments": true
}
}
],
"debuggers": [
{
"type": "vscode-chat-replay",
"label": "vscode-chat-replay",
"languages": [
"json"
],
"when": "resourceFilename === 'benchRun.chatReplay.json'",
"configurationAttributes": {
"launch": {
"properties": {
"program": {
"type": "string",
"description": "Chat replay file to debug (parse for headers)",
"default": "${file}"
},
"stopOnEntry": {
"type": "boolean",
"default": true,
"description": "Break immediately to step through manually."
}
},
"required": [
"program"
]
}
}
}
],
"chatAgents": [],
"chatPromptFiles": [
{
"path": "./assets/prompts/savePrompt.prompt.md"
},
{
"path": "./assets/prompts/plan.prompt.md"
},
{
"path": "./assets/prompts/init.prompt.md"
}
],
"terminal": {
"profiles": [
{
"icon": "copilot",
"id": "copilot-cli",
"title": "GitHub Copilot CLI"
}
]
}
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"singleQuote": true
},
"overrides": {
"@aminya/node-gyp-build": "npm:node-gyp-build@4.8.1",
"string_decoder": "npm:string_decoder@1.2.0",
"node-gyp": "npm:node-gyp@10.3.1",
"zod": "3.25.76"
},
"isPreRelease": false,
"__metadata": {
"installedTimestamp": 1772151293269,
"targetPlatform": "undefined",
"size": 78689216
}
}

Xet Storage Details

Size:
193 kB
·
Xet hash:
08e415de99defe8c23ce19bfade3b18522eb05631fb372745f7213b85451d23c

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.