Files
vscode/extensions/copilot/package.json
T
Zhichao Li ddb6f98ce6 feat(otel): Add OpenTelemetry GenAI instrumentation to Copilot Chat (#3917)
* feat: add OTel GenAI instrumentation foundation

Phase 0 complete:
- spec.md: Full spec with decisions, GenAI semconv, dual-write, eval signals,
  lessons from Gemini CLI + Claude Code
- plan.md: E2E demo plan (chat ext + eval repo + Azure backend)
- src/platform/otel/: IOTelService, config, attributes, metrics, events,
  message formatters, NodeOTelService, file exporters
- package.json: Added @opentelemetry/* dependencies

OTel opt-in behind OTEL_EXPORTER_OTLP_ENDPOINT env var.

* refactor: reorder OTel type imports for consistency

* refactor: reorder OTel type imports for consistency

* feat(otel): wire OTel spans into chat extension — Phase 1 core

- Register IOTelService in DI (NodeOTelService when enabled, NoopOTelService when disabled)
- Add OTelContrib lifecycle contribution for OTel init/shutdown
- Add `chat {model}` inference span in ChatMLFetcherImpl._doFetchAndStreamChat()
- Add `execute_tool {name}` span in ToolsService.invokeTool()
- Add `invoke_agent {participant}` parent span in ToolCallingLoop.run()
- Record gen_ai.client.operation.duration, tool call count/duration, agent metrics
- Thread IOTelService through all ToolCallingLoop subclasses
- Update test files with NoopOTelService
- Zero overhead when OTel is disabled (noop providers, no dynamic imports)

* feat(otel): add embeddings span, config UI settings, and unit tests

- Add `embeddings {model}` span in RemoteEmbeddingsComputer.computeEmbeddings()
- Add VS Code settings under github.copilot.chat.otel.* in package.json
  (enabled, exporterType, otlpEndpoint, captureContent, outfile)
- Wire VS Code settings into resolveOTelConfig in services.ts
- Add unit tests for:
  - resolveOTelConfig: env precedence, kill switch, all config paths (16 tests)
  - NoopOTelService: zero-overhead noop behavior (8 tests)
  - GenAiMetrics: metric recording with correct attributes (7 tests)

* test(otel): add unit tests for messageFormatters, genAiEvents, fileExporters

- messageFormatters: 18 tests covering toInputMessages, toOutputMessages,
  toSystemInstructions, toToolDefinitions (edge cases, empty inputs, invalid JSON)
- genAiEvents: 9 tests covering all 4 event emitters, content capture on/off
- fileExporters: 5 tests covering write/read round-trip for span, log, metric
  exporters plus aggregation temporality

Total OTel test suite: 63 tests across 6 files

* feat(otel): record token usage and time-to-first-token metrics

Add gen_ai.client.token.usage (input/output) and copilot_chat.time_to_first_token
histogram metrics at the fetchMany success path where token counts and TTFT
are available from the processSuccessfulResponse result.

* docs: finalize sprint plan with completion status

* style: apply formatter changes to OTel files

* feat(otel): emit gen_ai.client.inference.operation.details event with token usage

Wire emitInferenceDetailsEvent into fetchMany success path where full
token usage (prompt_tokens, completion_tokens), resolved model, request ID,
and finish reasons are available from processSuccessfulResponse.

This follows the OTel GenAI spec pattern:
- Spans: timing + hierarchy + error tracking
- Events: full request/response details including token counts

The data mirrors what RequestLogger captures for chat-export-logs.json.

* feat(otel): add aggregated token usage to invoke_agent span

Per the OTel GenAI agent spans spec, add gen_ai.usage.input_tokens and
gen_ai.usage.output_tokens as Recommended attributes on the invoke_agent span.

Tokens are accumulated across all LLM turns by listening to onDidReceiveResponse
events during the agent loop, then set on the span before it ends.

Ref: https://opentelemetry.io/docs/specs/semconv/gen-ai/gen-ai-agent-spans/

* feat(otel): add token usage attributes to chat inference span

Defer the `chat {model}` span completion from _doFetchAndStreamChat to
fetchMany where processSuccessfulResponse has extracted token counts.

The chat span now carries:
- gen_ai.usage.input_tokens (prompt_tokens)
- gen_ai.usage.output_tokens (completion_tokens)
- gen_ai.response.model (resolved model)

The span handle is returned from _doFetchAndStreamChat via the result
object so fetchMany can set attributes and end it after tokens are known.

This matches the chat-export-logs.json pattern where each request entry
carries full usage data alongside the response.

* style: apply formatter changes

* fix: correct import paths in otelContrib and add IOTelService to test

* feat: add diagnostic span exporter to log first successful export and failures

* feat: add content capture to OTel spans (messages, responses, tool args/results)

- Chat spans: add copilot.debug_name attribute for identifying orphan spans
- Chat spans: capture gen_ai.input.messages and gen_ai.output.messages when captureContent enabled
- Tool spans: capture gen_ai.tool.call.arguments and gen_ai.tool.call.result when captureContent enabled
- Extension chat endpoint: capture input/output messages when captureContent enabled
- Add CopilotAttr.DEBUG_NAME constant

* fix: register IOTelService in chatLib setupServices for NES test

* fix: register OTel ConfigKey settings in Advanced namespace for configurations test

* fix: register IOTelService in shared test services (createExtensionUnitTestingServices)

* fix: register IOTelService in platform test services

* feat(otel): enhance GenAI span attributes per OTel semantic conventions

- Change gen_ai.provider.name from 'openai' to 'github' for CAPI models
- Rename CopilotAttr to CopilotChatAttr, prefix values with copilot_chat.*
- Add GITHUB to GenAiProviderName enum
- Replace copilot.debug_name with gen_ai.agent.name on chat spans
- Add gen_ai.request.temperature, gen_ai.request.top_p to chat spans
- Add gen_ai.response.id, gen_ai.response.finish_reasons on success
- Add gen_ai.usage.cache_read.input_tokens from cached_tokens
- Add copilot_chat.request.max_prompt_tokens and copilot_chat.time_to_first_token
- Add gen_ai.tool.description to execute_tool spans
- Fix gen_ai.tool.call.id to read chatStreamToolCallId (was reading nonexistent prop)
- Fix tool result capture to handle PromptTsxPart and DataPart (not just TextPart)
- Add gen_ai.input.messages and gen_ai.output.messages to invoke_agent span (opt-in)
- Move gen_ai.tool.definitions from chat spans to invoke_agent span (opt-in)
- Add gen_ai.system_instructions to chat spans (opt-in)
- Fix error.type raw strings to use StdAttr.ERROR_TYPE constant
- Centralize hardcoded copilot.turn_count and copilot.endpoint_type into CopilotChatAttr
- Add COPILOT_OTEL_CAPTURE_CONTENT=true to launch.json for testing
- Document span hierarchy fixes needed in plan.md

* feat(otel): connect subagent spans to parent trace via context propagation

- Add TraceContext type and getActiveTraceContext() to IOTelService
- Add storeTraceContext/getStoredTraceContext for cross-boundary propagation
- Add parentTraceContext option to SpanOptions for explicit parent linking
- Implement in NodeOTelService using OTel remote span context
- Capture trace context when execute_tool runSubagent fires (keyed by toolCallId)
- Restore parent context in subagent invoke_agent span (via subAgentInvocationId)
- Auto-cleanup stored contexts after 5 minutes to prevent memory leaks
- Update test mocks with new IOTelService methods
- Update plan.md with investigation findings

* fix(otel): fix subagent trace context key to use parentRequestId

The previous implementation stored trace context keyed by chatStreamToolCallId
(model-assigned tool call ID), but looked it up by subAgentInvocationId
(VS Code internal invocation.callId UUID). These are different IDs that don't
match across the IPC boundary.

Fix: key by chatRequestId on store side (available on invocation options),
and look up by parentRequestId on subagent side (same value, available on
ChatRequest). Both reference the parent agent's request ID.

Verified: 21-span trace with subagent correctly nested under parent agent.

* fix(otel): add model attrs to invoke_agent and max_prompt_tokens to BYOK chat

- Set gen_ai.request.model on invoke_agent span from endpoint
- Track gen_ai.response.model from last LLM response resolvedModel
- Add copilot_chat.request.max_prompt_tokens to BYOK chat spans
- Document upstream gaps in plan.md (BYOK token usage, programmatic tool IDs)

* test(otel): add trace context propagation tests for subagent linkage

Tests verify:
- storeTraceContext/getStoredTraceContext round-trip and single-use semantics
- getActiveTraceContext returns context inside startActiveSpan
- parentTraceContext makes child span inherit traceId from parent
- Independent spans get different traceIds without parentTraceContext
- Full subagent flow: store context in tool call, retrieve in subagent

* fix(otel): add finish_reasons and ttft to BYOK chat spans, document orphan spans

- Set gen_ai.response.finish_reasons on BYOK chat success
- Set copilot_chat.time_to_first_token on BYOK chat success
- Document Gap 4: duplicate orphan spans from CopilotLanguageModelWrapper
- Identify all orphan span categories (title, progressMessages, promptCategorization, wrapper)

* docs(otel): update Gap 4 analysis — wrapper spans have actual token usage data

The copilotLanguageModelWrapper orphan spans are the actual CAPI HTTP
handlers, not duplicates. They contain real token usage, cache read tokens,
resolved model names, and temperature — all missing from the consumer-side
extChatEndpoint spans due to VS Code LM API limitations.

Updated plan.md with:
- Side-by-side attribute comparison table
- Three fix approaches (context propagation, span suppression, enrichment)
- Recommendation: Option 1 (propagate trace context through IPC)

* feat(otel): propagate trace context through BYOK IPC to link wrapper spans

- Pass _otelTraceContext through modelOptions alongside _capturingTokenCorrelationId
- Inject IOTelService into CopilotLanguageModelWrapper
- Wrap makeRequest in startActiveSpan with parentTraceContext when available
- This creates a byok-provider bridge span that makes chatMLFetcher's chat span
  a child of the original invoke_agent trace, bringing real token usage data
  into the agent trace hierarchy

* debug(otel): add debug attribute to verify trace context capture in BYOK path

* fix(otel): remove debug attribute, BYOK trace context propagation verified working

Verified: 63-span trace with Azure BYOK (gpt-5) correctly shows:
- byok-provider bridge spans linking wrapper chat spans into agent trace
- Real token usage (in:21458 out:1730 cache:19072) visible on wrapper chat spans
- hasCtx:true on all extChatEndpoint spans confirming context capture
- Two subagent invoke_agent spans correctly nested under main agent
- Zero orphan copilotLanguageModelWrapper spans

* refactor(otel): replace byok-provider bridge span with invisible context propagation

Add runWithTraceContext() to IOTelService — sets parent trace context
without creating a visible span. The wrapper's chat spans now appear
directly as children of invoke_agent, eliminating the noisy
byok-provider intermediary span.

Before: invoke_agent → byok-provider → chat (wrapper)
After:  invoke_agent → chat (wrapper)

* refactor(otel): remove duplicate BYOK consumer-side chat span

The extChatEndpoint no longer creates its own chat span. The wrapper's
chatMLFetcher span (via CopilotLanguageModelWrapper) is the single source
of truth with full token usage, cache data, and resolved model.

Before: invoke_agent → chat (empty, extChatEndpoint) + chat (rich, wrapper)
After:  invoke_agent → chat (rich, wrapper only)

* fix(otel): restore chat span for non-wrapper BYOK providers (Anthropic, Gemini)

The previous commit removed the extChatEndpoint chat span, which was correct
for Azure/OpenAI BYOK (served by CopilotLanguageModelWrapper via chatMLFetcher).
But Anthropic and Gemini BYOK providers call their native SDKs directly,
bypassing CopilotLanguageModelWrapper — so they need the consumer-side span.

Now: always create a chat span in extChatEndpoint with basic metadata
(model, provider, response.id, finish_reasons). For wrapper-based providers,
the chatMLFetcher also creates a richer sibling span with token usage.

* fix(otel): skip consumer chat span for wrapper-based BYOK providers

Only create the extChatEndpoint chat span for non-wrapper providers
(Anthropic, Gemini) that need it as their only span. Wrapper-based
providers (Azure, OpenAI, OpenRouter, Ollama, xAI) get a single rich
span from chatMLFetcher via CopilotLanguageModelWrapper.

Result: 1 chat span per LLM call for all provider types.

* fix: remove unnecessary 'google' from non-wrapper vendor set

* feat(otel): add rich chat span with usage data for Anthropic BYOK provider

Move chat span creation into AnthropicLMProvider where actual API response
data (token usage, cache reads) is available. The span is linked to the
agent trace via runWithTraceContext and enriched with:
- gen_ai.usage.input_tokens / output_tokens
- gen_ai.usage.cache_read.input_tokens
- gen_ai.response.model / response.id / finish_reasons

Remove consumer-side extChatEndpoint span for all vendors (nonWrapperVendors
now empty) since both wrapper-based and Anthropic providers create their
own spans with full data.

Next: apply same pattern to Gemini provider.

* feat(otel): add rich chat span for Gemini BYOK, clean up extChatEndpoint

- Add OTel chat span with full usage data to GeminiNativeBYOKLMProvider
- Remove all consumer-side span code from extChatEndpoint (dead code)
- Each provider now owns its chat span with real API response data:
  * CAPI: chatMLFetcher
  * OpenAI-compat BYOK: CopilotLanguageModelWrapper → chatMLFetcher
  * Anthropic: AnthropicLMProvider
  * Gemini: GeminiNativeBYOKLMProvider
- Fix Gemini test to pass IOTelService

* feat(otel): enrich Anthropic/Gemini chat spans with full metadata

Add to both providers:
- copilot_chat.request.max_prompt_tokens (model.maxInputTokens)
- server.address (api.anthropic.com / generativelanguage.googleapis.com)
- gen_ai.conversation.id (requestId)
- copilot_chat.time_to_first_token (result.ttft)

Now matches CAPI chat span attribute parity.

* feat(otel): add server.address to CAPI/Azure BYOK chat spans

Extract hostname from urlOrRequestMetadata when it's a URL string
and set as server.address on the chat span. Works for both CAPI
and CopilotLanguageModelWrapper (Azure BYOK) paths.

* feat(otel): add max_tokens and output_messages to Anthropic/Gemini chat spans

- gen_ai.request.max_tokens from model.maxOutputTokens
- gen_ai.output.messages (opt-in) from response text
- Closes remaining attribute gaps vs CAPI/Azure BYOK spans

* fix(otel): capture tool calls in output_messages for chat spans

When model responds with tool calls instead of text, the output_messages
attribute was empty. Now captures both text parts and tool call parts
in the output_messages, matching the OTel GenAI output messages schema.

Also: Azure BYOK invoke_agent zero tokens is a known upstream gap —
extChatEndpoint returns hardcoded usage:0 since VS Code LM API doesn't
expose actual usage from the provider side.

* fix(otel): capture tool calls in output_messages for Anthropic/Gemini BYOK spans

Same fix as CAPI — when model responds with tool calls, include them
in gen_ai.output.messages alongside text parts. All three provider
paths (CAPI, Anthropic, Gemini) now consistently capture both text
and tool call parts in output messages.

* fix(otel): add input_messages and agent_name to Anthropic/Gemini chat spans

- gen_ai.input.messages (opt-in) captured from provider messages parameter
- gen_ai.agent.name set to AnthropicBYOK / GeminiBYOK for identification

Closes the last attribute gaps vs CAPI/Azure BYOK chat spans.

* fix(otel): fix input_messages serialization for Anthropic/Gemini BYOK

- Map enum role values to names (1→user, 2→assistant, 3→system)
- Extract text from LanguageModelTextPart content arrays instead of
  showing '[complex]' for all messages
- Use OTel GenAI input messages schema with role + parts format

* docs(otel): add remaining metrics/events work to plan.md

Coverage matrix showing:
- Anthropic/Gemini BYOK missing: operation.duration, token.usage,
  time_to_first_token metrics, and inference.details event
- CAPI and Azure BYOK (via wrapper) fully covered
- Tool/agent/session metrics covered across all providers
- 4 tasks (M1-M4) to close the gap

* feat(otel): add metrics and inference events to Anthropic/Gemini BYOK providers

Both providers now record:
- gen_ai.client.operation.duration histogram
- gen_ai.client.token.usage histograms (input + output)
- copilot_chat.time_to_first_token histogram
- gen_ai.client.inference.operation.details log event

All metrics/events now have full parity across CAPI, Azure BYOK,
Anthropic BYOK, and Gemini BYOK.

* fix(otel): fix LoggerProvider constructor — use 'processors' key (SDK v2)

The OTel SDK v2 changed the LoggerProvider constructor option from
'logRecordProcessors' to 'processors'. The old key was silently
ignored, causing all log records to be dropped.

This is why logs never appeared in Loki despite traces working fine.

* docs: add agent monitoring guide with OTel usage and Claude/Gemini comparison

* docs: remove Claude/Gemini comparison from monitoring guide

* docs: add OTel comparison with Claude Code and Gemini CLI

* docs: reorganize monitoring docs — user guide + dev architecture

- agent_monitoring.md: polished user-facing guide (for VS Code website)
- agent_monitoring_arch.md: developer-facing architecture & instrumentation guide
- Removed internal plan/spec/comparison files from repo (moved to ~/Documents)

* fix(otel): restore _doFetchViaHttp body and _fetchWithInstrumentation after rebase

* fix(otel): propagate otelSpan through WebSocket/HTTP routing paths

The otelSpan was created in _doFetchAndStreamChat but not included
in returns from _doFetchViaWebSocket and _doFetchViaHttp, causing
the caller (fetchMany) to always receive undefined for otelSpan.

Fix: await both routing paths and spread otelSpan into the result.

* docs(otel): improve monitoring docs, add collector setup, fix trace context

- Expand agent_monitoring.md with detailed span/metric/event attribute tables
- Add BYOK provider coverage, subagent trace propagation docs
- Add Backend Considerations: Azure App Insights (via collector), Langfuse, Grafana
- Add End-to-End Setup & Verification section with KQL examples
- Add OTel Collector config + docker-compose for Azure App Insights
- Fix: emit inference details event before span.end() in chatMLFetcher
  (fixes 'No trace ID' log records in App Insights)
- Fix: pass active context in emitLogRecord for trace correlation
- Update launch.json to point at OTel Collector (localhost:4328)

* docs(otel): merge Backend Considerations and E2E sections to remove redundancy

* docs(otel): remove internal dev debug reference from user-facing guide

* docs(otel): remove Grafana section and Jaeger refs from App Insights section

* docs(otel): trim Backend section to factual setup guides, remove claims

* docs(otel): final accuracy audit — fix false claims against code

- Mark copilot_chat.session.start event as 'not yet emitted' (defined but no call site)
- Mark copilot_chat.agent.turn event as 'not yet emitted' (defined but no call site)
- Mark copilot_chat.session.count metric as 'not yet wired up'
- Fix OTEL_EXPORTER_OTLP_PROTOCOL desc: only 'grpc' changes behavior
- Fix telemetry kill switch claim: vscodeTelemetryLevel not wired in services.ts
- Remove false toolCalling.tsx instrumentation point from arch doc
- Fix docker-compose comments: wrong port numbers (16686→16687, 4318→4328)
- Add reference to full collector config file from inline snippet

* docs(otel): remove telemetry.telemetryLevel references — OTel is independent

* feat(otel): wire up session.start event, agent.turn event, and session.count metric

- emitSessionStartEvent + incrementSessionCount at invoke_agent start (top-level only)
- emitAgentTurnEvent per LLM response in onDidReceiveResponse listener
- Remove 'not yet wired' markers from docs

* chore: untrack .playwright-mcp/ and add to .gitignore

* chore: remove otel spec reference files

* chore(otel): remove OpenTelemetry environment variables from launch configurations

* fix(otel): add 64KB truncation limit for content capture attributes

Prevents OTLP batch export failures when large prompts/responses are
captured. Aligned with gemini-cli's limitTotalLength pattern.

Applied truncateForOTel() to all JSON.stringify calls feeding span
attributes across chatMLFetcher, toolCallingLoop, toolsService,
anthropicProvider, geminiNativeProvider, and genAiEvents.

* refactor(otel): make GenAiMetrics methods static to avoid per-call allocations

Aligned with gemini-cli pattern of module-level metric functions.
Eliminates 17+ throwaway GenAiMetrics instances per agent run.

* fix(otel): fix timer leak, cap buffered ops, rate-limit export logs

- storeTraceContext: track timers for clearTimeout on retrieval/shutdown,
  add 100-entry max with LRU eviction
- BufferedSpanHandle: cap _ops at 200 to prevent unbounded growth
- DiagnosticSpanExporter: rate-limit failure logs to once per 60s

* docs(otel): fix Jaeger UI port to match docker-compose (16687)

* chore(otel): update sprint plan — mark P0/P1 tasks done

* fix(otel): remove as any casts in BYOK provider content capture

Use proper Array.isArray + instanceof checks instead of as any[]
casts for LanguageModelChatMessage.content iteration.

* refactor(otel): extract OTelModelOptions shared interface

Replaces 3 duplicated inline type assertions for _otelTraceContext
and _capturingTokenCorrelationId with a single shared interface.

* refactor(otel): route OTel logs through ILogService output channel

Replace console.info/error/warn in NodeOTelService with a log callback.
OTelContrib logs essential status to the Copilot Chat output channel
for user troubleshooting (enabled/disabled, exporter config, shutdown).

* fix(otel): remove orphaned OTel ConfigKey definitions

OTel config is read via workspace.getConfiguration in services.ts,
not through IConfigurationService.get(ConfigKey). These constants
were unused dead code.

* test(otel): add comprehensive OTel instrumentation tests

- Agent trace hierarchy (invoke_agent → chat → execute_tool, subagent
  propagation, error states, metrics, events)
- BYOK provider span emission (CLIENT kind, token usage, error.type,
  content capture gating, parentTraceContext linking)
- chatMLFetcher two-phase span lifecycle (create → enrich → end,
  error path, operation duration metric)
- Service robustness (runWithTraceContext, startActiveSpan error
  lifecycle, storeTraceContext overwrite)
- CapturingOTelService reusable test mock for all OTel assertions

* chore: apply formatter import sorting

* chore: remove outdated sprint plan document

* feat(otel): add OTel configuration settings for tracing and logging

* fix(otel): ensure metric reader is flushed and shutdown properly
2026-03-02 20:46:30 +00:00

6013 lines
199 KiB
JSON

{
"name": "copilot-chat",
"displayName": "GitHub Copilot Chat",
"description": "AI chat features powered by Copilot",
"version": "0.39.0",
"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": "dev",
"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.110.0-20260223",
"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": [
"agentSessionsWorkspace",
"chatDebug@2",
"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@3",
"defaultChatParticipant@4",
"contribSourceControlInputBoxMenu",
"authLearnMore",
"testObserver",
"aiTextSearchProvider@2",
"chatParticipantPrivate@14",
"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",
"environmentPower",
"terminalTitle"
],
"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 a fast agent specialized for exploring codebases. Use this when you need to quickly find files by patterns (eg. \"src/components/**/*.tsx\"), search code for keywords (eg. \"API endpoints\"), or answer questions about the codebase (eg. \"how do API endpoints work?\").\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_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_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 && !config.github.copilot.chat.projectSetupInfoSkill.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.installExtensionSkill.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"
}
},
"skipCheck": {
"type": "boolean",
"description": "If true, skip checking whether the command exists before executing it."
}
},
"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_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_getSearchResults",
"toolReferenceName": "searchResults",
"displayName": "%github.copilot.tools.searchResults.name%",
"icon": "$(search)",
"userDescription": "%github.copilot.tools.searchResults.description%",
"modelDescription": "The results from the search view",
"when": "!config.github.copilot.chat.getSearchViewResultsSkill.enabled"
},
{
"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_switchAgent",
"toolReferenceName": "switchAgent",
"displayName": "%copilot.tools.switchAgent.name%",
"userDescription": "%copilot.tools.switchAgent.description%",
"modelDescription": "Switch to the Plan agent to align on approach before implementing. Plan will explore the codebase, gathers context, clarifies requirements with the user, and creates an actionable implementation plan.\n\nSWITCH TO PLAN when ANY of these apply:\n1. Adding new functionality - where should it go? What patterns to follow?\n2. Multiple valid approaches exist - choosing between technologies, patterns, or strategies\n3. Modifying existing behavior - unclear what should change or what side effects exist\n4. Architectural decisions required - choosing between design patterns or integration approaches\n5. Changes span multiple files - refactoring, migrations, or cross-cutting concerns\n6. Requirements are underspecified - need to explore before understanding scope\n\nEXAMPLES:\n✓ Switch to Plan:\n- \"Add authentication to the app\" → architectural decisions needed (session vs JWT, middleware)\n- \"Refactor this data flow\" → must understand component dependencies first\n- \"Migrate from X to Y\" → requires understanding current structure\n\n✗ Do NOT switch to Plan:\n- User attached a detailed spec, plan, or requirements doc → context already provided\n- You already started editing files in this conversation → too late to switch\n- Single obvious change like fixing a typo or renaming → just do it\n- User gave explicit step-by-step instructions → follow them directly",
"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_memory",
"displayName": "Memory",
"toolReferenceName": "memory",
"userDescription": "Manage persistent memory across conversations",
"when": "config.github.copilot.chat.tools.memory.enabled",
"modelDescription": "Manage a persistent memory system with three scopes for storing notes and information across conversations.\n\nMemory is organized under /memories/ with three tiers:\n- `/memories/` — User memory: persistent notes that survive across all workspaces and conversations. Store preferences, patterns, and general insights here.\n- `/memories/session/` — Session memory: notes scoped to the current conversation. Store task-specific context and in-progress notes here. Cleared after the conversation ends.\n- `/memories/repo/` — Repository memory: repository-scoped facts stored via Copilot. Only the `create` command is supported for this path.\n\nIMPORTANT: Before creating new memory files, first view the /memories/ directory to understand what already exists. This helps avoid duplicates and maintain organized notes.\n\nCommands:\n- `view`: View contents of a file or list directory contents. Can be used on files or directories (e.g., \"/memories/\" to see all top-level items).\n- `create`: Create a new file at the specified path with the given content. Fails if the file already exists.\n- `str_replace`: Replace an exact string in a file with a new string. The old_str must appear exactly once in the file.\n- `insert`: Insert text at a specific line number in a file. Line 0 inserts at the beginning.\n- `delete`: Delete a file or directory (and all its contents).\n- `rename`: Rename or move a file or directory from path to new_path. Cannot rename across scopes.",
"inputSchema": {
"type": "object",
"properties": {
"command": {
"type": "string",
"enum": [
"view",
"create",
"str_replace",
"insert",
"delete",
"rename"
],
"description": "The operation to perform on the memory file system."
},
"path": {
"type": "string",
"description": "The absolute path to the file or directory inside /memories/, e.g. \"/memories/notes.md\". Used by all commands except `rename`."
},
"file_text": {
"type": "string",
"description": "Required for `create`. The content of the file to create."
},
"old_str": {
"type": "string",
"description": "Required for `str_replace`. The exact string in the file to replace. Must appear exactly once."
},
"new_str": {
"type": "string",
"description": "Required for `str_replace`. The new string to replace old_str with."
},
"insert_line": {
"type": "number",
"description": "Required for `insert`. The 0-based line number to insert text at. 0 inserts before the first line."
},
"insert_text": {
"type": "string",
"description": "Required for `insert`. The text to insert at the specified line."
},
"view_range": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 2,
"maxItems": 2,
"description": "Optional for `view`. A two-element array [start_line, end_line] (1-indexed) to view a specific range of lines."
},
"old_path": {
"type": "string",
"description": "Required for `rename`. The current path of the file or directory to rename."
},
"new_path": {
"type": "string",
"description": "Required for `rename`. The new path for the file or directory."
}
},
"required": [
"command"
]
}
},
{
"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",
"rename"
]
},
{
"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",
"searchSubagent",
"usages"
]
},
{
"name": "vscode",
"description": "",
"tools": [
"getProjectSetupInfo",
"installExtension",
"memory",
"newWorkspace",
"runCommand",
"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?"
]
}
],
"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.editingSession",
"name": "GitHubCopilot",
"fullName": "GitHub Copilot",
"description": "%copilot.edits.description%",
"isDefault": true,
"locations": [
"panel"
],
"modes": [
"edit"
]
},
{
"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.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"
},
{
"name": "compact",
"description": "%copilot.agent.compact.description%"
},
{
"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.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.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": "copilotcli",
"displayName": "Copilot CLI",
"when": "false"
},
{
"vendor": "claude-code",
"displayName": "Claude Code",
"when": "false"
},
{
"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"
},
"streaming": {
"type": "boolean",
"default": true,
"description": "Whether the model supports streaming responses. Defaults to true."
},
"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"
},
"streaming": {
"type": "boolean",
"default": true,
"description": "Whether the model supports streaming responses. Defaults to true."
},
"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.claude.sessions.rename",
"title": "%github.copilot.command.claude.sessions.rename%",
"icon": "$(edit)",
"category": "Claude"
},
{
"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.sessions.commitToWorktree",
"title": "%github.copilot.command.cli.sessions.commitToWorktree%",
"icon": "$(git-commit)",
"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.cli.openInCopilotCLI",
"title": "%github.copilot.command.cli.openInCopilotCLI%",
"icon": "$(terminal)",
"category": "Copilot CLI"
},
{
"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.compact",
"title": "%github.copilot.command.compactConversation%"
},
{
"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.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.togglePowerSaveBlocker",
"title": "%github.copilot.command.togglePowerSaveBlocker%",
"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.debug.extensionState",
"title": "%github.copilot.command.extensionState%",
"category": "Developer"
},
{
"command": "github.copilot.chat.tools.memory.showMemories",
"title": "%github.copilot.command.showMemories%",
"category": "Chat"
},
{
"command": "github.copilot.chat.tools.memory.clearMemories",
"title": "%github.copilot.command.clearMemories%",
"category": "Chat"
},
{
"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.chat.debug.exportTrajectories",
"title": "Export Agent Trajectories",
"category": "Chat"
},
{
"command": "github.copilot.chat.debug.exportSingleTrajectory",
"title": "Export Trajectory...",
"category": "Chat"
},
{
"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.additionalReadAccessPaths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"markdownDescription": "%github.copilot.config.additionalReadAccessPaths%",
"scope": "window"
},
"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."
},
"github.copilot.chat.reviewAgent.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.reviewAgent.enabled%"
},
"github.copilot.chat.reviewSelection.enabled": {
"type": "boolean",
"default": true,
"description": "%github.copilot.config.reviewSelection.enabled%"
},
"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."
}
]
]
}
}
},
{
"id": "preview",
"properties": {
"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.tools.memory.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.tools.memory.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"
]
},
"github.copilot.chat.anthropic.thinking.effort": {
"type": "string",
"markdownDescription": "%github.copilot.config.anthropic.thinking.effort%",
"enum": [
"low",
"medium",
"high"
],
"default": "high",
"tags": [
"preview"
]
},
"github.copilot.chat.backgroundCompaction": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.backgroundCompaction%",
"tags": [
"preview",
"onExp"
]
},
"github.copilot.chat.anthropic.toolSearchTool.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.anthropic.toolSearchTool.enabled%",
"tags": [
"preview"
]
}
}
},
{
"id": "experimental",
"properties": {
"github.copilot.chat.getSearchViewResultsSkill.enabled": {
"type": "boolean",
"default": false,
"description": "%github.copilot.config.getSearchViewResultsSkill.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"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.switchAgent.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.switchAgent.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"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.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.mode": {
"type": "string",
"default": "off",
"markdownDescription": "%github.copilot.config.anthropic.contextEditing.mode%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"off",
"clear-thinking",
"clear-tooluse",
"clear-both"
]
},
"github.copilot.chat.responsesApiReasoningEffort": {
"type": "string",
"default": "default",
"markdownDescription": "%github.copilot.config.responsesApiReasoningEffort%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"low",
"medium",
"high",
"xhigh",
"default"
]
},
"github.copilot.chat.responsesApiReasoningSummary": {
"type": "string",
"default": "detailed",
"markdownDescription": "%github.copilot.config.responsesApiReasoningSummary%",
"tags": [
"experimental",
"onExp"
],
"enum": [
"off",
"detailed"
]
},
"github.copilot.chat.responsesApiContextManagement.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.responsesApiContextManagement.enabled%",
"tags": [
"experimental",
"onExp"
]
},
"github.copilot.chat.updated53CodexPrompt.enabled": {
"type": "boolean",
"default": true,
"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.implementAgent.model": {
"type": "string",
"default": "",
"scope": "resource",
"markdownDescription": "%github.copilot.config.implementAgent.model%",
"tags": [
"experimental"
]
},
"github.copilot.chat.askAgent.additionalTools": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"scope": "resource",
"markdownDescription": "%github.copilot.config.askAgent.additionalTools%",
"tags": [
"experimental"
]
},
"github.copilot.chat.askAgent.model": {
"type": "string",
"default": "",
"scope": "resource",
"markdownDescription": "%github.copilot.config.askAgent.model%",
"tags": [
"experimental"
]
},
"github.copilot.chat.exploreAgent.model": {
"type": "string",
"default": "",
"scope": "resource",
"markdownDescription": "%github.copilot.config.exploreAgent.model%",
"tags": [
"experimental"
]
}
}
},
{
"id": "advanced",
"properties": {
"github.copilot.chat.installExtensionSkill.enabled": {
"type": "boolean",
"default": false,
"tags": [
"advanced",
"experimental",
"onExp"
],
"description": "%github.copilot.config.installExtensionSkill.enabled%"
},
"github.copilot.chat.projectSetupInfoSkill.enabled": {
"type": "boolean",
"default": false,
"tags": [
"advanced",
"experimental",
"onExp"
],
"description": "%github.copilot.config.projectSetupInfoSkill.enabled%"
},
"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": true,
"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.nextEditSuggestions.eagerness": {
"type": "string",
"default": "auto",
"enum": [
"auto",
"low",
"medium",
"high"
],
"enumItemLabels": [
"%github.copilot.config.nextEditSuggestions.eagerness.auto.label%",
"%github.copilot.config.nextEditSuggestions.eagerness.low.label%",
"%github.copilot.config.nextEditSuggestions.eagerness.medium.label%",
"%github.copilot.config.nextEditSuggestions.eagerness.high.label%"
],
"enumDescriptions": [
"%github.copilot.config.nextEditSuggestions.eagerness.auto%",
"%github.copilot.config.nextEditSuggestions.eagerness.low%",
"%github.copilot.config.nextEditSuggestions.eagerness.medium%",
"%github.copilot.config.nextEditSuggestions.eagerness.high%"
],
"markdownDescription": "%github.copilot.config.nextEditSuggestions.eagerness%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.cli.customAgents.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "%github.copilot.config.cli.customAgents.enabled%",
"tags": [
"advanced",
"experimental"
]
},
"github.copilot.chat.cli.planMode.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.cli.planMode.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.cli.branchSupport.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.cli.branchSupport.enabled%",
"tags": [
"advanced"
]
},
"github.copilot.chat.cli.isolationOption.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.cli.isolationOption.enabled%",
"tags": [
"advanced"
]
},
"github.copilot.chat.cli.sessionController.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.cli.sessionController.enabled%",
"tags": [
"advanced"
]
},
"github.copilot.chat.searchSubagent.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.searchSubagent.enabled%",
"tags": [
"advanced",
"experimental",
"onExp"
]
},
"github.copilot.chat.searchSubagent.useAgenticProxy": {
"type": "boolean",
"default": false,
"markdownDescription": "%github.copilot.config.searchSubagent.useAgenticProxy%",
"tags": [
"advanced"
]
},
"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"
]
},
"github.copilot.chat.otel.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable OpenTelemetry trace/metric/log emission for Copilot Chat operations. Env var `COPILOT_OTEL_ENABLED` takes precedence.",
"tags": [
"advanced"
]
},
"github.copilot.chat.otel.exporterType": {
"type": "string",
"enum": ["otlp-grpc", "otlp-http", "console", "file"],
"default": "otlp-http",
"markdownDescription": "OTel exporter type for Copilot Chat telemetry.",
"tags": [
"advanced"
]
},
"github.copilot.chat.otel.otlpEndpoint": {
"type": "string",
"default": "http://localhost:4318",
"markdownDescription": "OTLP collector endpoint URL for Copilot Chat OTel data. Env var `OTEL_EXPORTER_OTLP_ENDPOINT` takes precedence.",
"tags": [
"advanced"
]
},
"github.copilot.chat.otel.captureContent": {
"type": "boolean",
"default": false,
"markdownDescription": "Capture input/output messages, system instructions, and tool definitions in OTel telemetry. **Contains potentially sensitive data.** Env var `COPILOT_OTEL_CAPTURE_CONTENT` takes precedence.",
"tags": [
"advanced"
]
},
"github.copilot.chat.otel.outfile": {
"type": "string",
"default": "",
"markdownDescription": "File path for file-based OTel exporter output (JSON-lines). When set, overrides exporter type to `file`.",
"tags": [
"advanced"
]
}
}
}
],
"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.fix",
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly && editorSelectionHasDiagnostics",
"group": "1_chat@4"
},
{
"command": "github.copilot.chat.explain",
"when": "!github.copilot.interactiveSession.disabled",
"group": "1_chat@5"
},
{
"command": "github.copilot.chat.review",
"when": "config.github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled && resourceScheme != 'vscode-chat-code-block'",
"group": "1_chat@6"
},
{
"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'"
}
],
"chat/editor/inlineGutter": [
{
"command": "github.copilot.chat.explain",
"when": "!github.copilot.interactiveSession.disabled && editor.hasSelection && !inlineChatFileBelongsToChat",
"group": "2_chat@2"
},
{
"command": "github.copilot.chat.review",
"when": "!github.copilot.interactiveSession.disabled && editor.hasSelection && config.github.copilot.chat.reviewSelection.enabled && !inlineChatFileBelongsToChat",
"group": "2_chat@3"
}
],
"chat/input/editing/sessionToolbar": [
{
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply",
"when": "chatSessionType == copilotcli && workbenchState != empty && !isSessionsWindow",
"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/contextUsage/actions": [
{
"command": "github.copilot.chat.compact"
}
],
"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.cli.openInCopilotCLI",
"when": "false"
},
{
"command": "github.copilot.debug.extensionState",
"when": "false"
},
{
"command": "github.copilot.cli.sessions.commitToWorktree",
"when": "false"
},
{
"command": "github.copilot.chat.debug.exportSingleTrajectory",
"when": "false"
},
{
"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.claude.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"
},
{
"command": "github.copilot.chat.tools.memory.showMemories",
"when": "config.github.copilot.chat.tools.memory.enabled"
},
{
"command": "github.copilot.chat.tools.memory.clearMemories",
"when": "config.github.copilot.chat.tools.memory.enabled"
}
],
"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": "workbench.action.chat.openAgentDebugPanel",
"when": "view == copilot-chat",
"group": "3_show@0"
},
{
"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"
},
{
"command": "github.copilot.chat.debug.exportSingleTrajectory",
"when": "view == copilot-chat && viewItem == chatprompt",
"group": "export@4"
}
],
"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/sourceControl": [
{
"command": "github.copilot.cli.openInCopilotCLI",
"group": "3_worktree@1",
"when": "scmProvider == git"
}
],
"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 && !isSessionsWindow"
}
],
"chat/chatSessions": [
{
"command": "github.copilot.claude.sessions.rename",
"when": "chatSessionType == claude-code",
"group": "1_edit@4"
},
{
"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 && !isSessionsWindow",
"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.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",
"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": "%github.copilot.session.providerDescription.claude%",
"when": "config.github.copilot.chat.claudeAgent.enabled && !github.copilot.previewFeaturesDisabled",
"canDelegate": true,
"requiresCustomModels": true,
"capabilities": {
"supportsFileAttachments": true,
"supportsImageAttachments": 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"
},
{
"name": "compact",
"description": "Compact the conversation history to save context tokens"
}
]
},
{
"type": "copilotcli",
"name": "cli",
"displayName": "Background",
"icon": "$(worktree)",
"welcomeTitle": "Background Agent",
"welcomeMessage": "Run tasks in the background",
"inputPlaceholder": "Run tasks in the background, type `#` for adding context",
"order": 1,
"canDelegate": true,
"description": "%github.copilot.session.providerDescription.background%",
"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"
},
{
"name": "compact",
"description": "%github.copilot.command.cli.compact.description%"
}
],
"customAgentTarget": "github-copilot",
"requiresCustomModels": true
},
{
"type": "copilot-cloud-agent",
"alternativeIds": [
"copilot-swe-agent"
],
"name": "cloud",
"displayName": "Cloud",
"icon": "$(cloud)",
"welcomeTitle": "Cloud Agent",
"welcomeMessage": "Delegate tasks to the cloud",
"inputPlaceholder": "Delegate tasks to the cloud, type `#` for adding context",
"order": 2,
"canDelegate": true,
"description": "%github.copilot.session.providerDescription.cloud%",
"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/plan.prompt.md"
},
{
"path": "./assets/prompts/init.prompt.md"
},
{
"path": "./assets/prompts/create-prompt.prompt.md"
},
{
"path": "./assets/prompts/create-instructions.prompt.md"
},
{
"path": "./assets/prompts/create-skill.prompt.md"
},
{
"path": "./assets/prompts/create-agent.prompt.md"
},
{
"path": "./assets/prompts/create-hook.prompt.md"
}
],
"chatSkills": [
{
"path": "./assets/prompts/skills/project-setup-info-local/SKILL.md",
"when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && !config.github.copilot.chat.newWorkspace.useContext7"
},
{
"path": "./assets/prompts/skills/project-setup-info-context7/SKILL.md",
"when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && config.github.copilot.chat.newWorkspace.useContext7"
},
{
"path": "./assets/prompts/skills/install-vscode-extension/SKILL.md",
"when": "config.github.copilot.chat.installExtensionSkill.enabled && config.github.copilot.chat.newWorkspaceCreation.enabled"
},
{
"path": "./assets/prompts/skills/get-search-view-results/SKILL.md",
"when": "config.github.copilot.chat.getSearchViewResultsSkill.enabled"
}
],
"terminal": {
"profiles": [
{
"icon": "copilot",
"id": "copilot-cli",
"title": "GitHub Copilot CLI",
"titleTemplate": "${sequence}"
}
]
}
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"singleQuote": true
},
"scripts": {
"postinstall": "tsx ./script/postinstall.ts",
"prepare": "husky",
"vscode-dts:update": "node script/build/vscodeDtsUpdate.js",
"vscode-dts:check": "node script/build/vscodeDtsCheck.js",
"vscode-dts:dev": "node node_modules/@vscode/dts/index.js dev && node script/build/moveProposedDts.js",
"vscode-dts:main": "node node_modules/@vscode/dts/index.js main && node script/build/moveProposedDts.js",
"build": "node .esbuild.ts --sourcemaps",
"compile": "node .esbuild.ts --dev",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node .esbuild.ts --watch --dev",
"watch:tsc-extension": "tsc --noEmit --watch --project tsconfig.json",
"watch:tsc-extension-web": "tsc --noEmit --watch --project tsconfig.worker.json",
"watch:tsc-simulation-workbench": "tsc --noEmit --watch --project test/simulation/workbench/tsconfig.json",
"typecheck": "tsc --noEmit --project tsconfig.json && tsc --noEmit --project test/simulation/workbench/tsconfig.json && tsc --noEmit --project tsconfig.worker.json && tsc --noEmit --project src/extension/completions-core/vscode-node/extension/src/copilotPanel/webView/tsconfig.json",
"lint": "eslint . --max-warnings=0",
"lint-staged": "eslint --max-warnings=0",
"tsfmt": "npx tsfmt -r --verify",
"test": "npm-run-all test:*",
"test:extension": "vscode-test",
"test:sanity": "vscode-test --sanity",
"test:unit": "vitest --run --pool=forks",
"vitest": "vitest",
"bench": "vitest bench",
"get_env": "tsx script/setup/getEnv.mts",
"get_token": "tsx script/setup/getToken.mts",
"prettier": "prettier --list-different --write --cache .",
"simulate": "node dist/simulationMain.js",
"simulate-require-cache": "node dist/simulationMain.js --require-cache",
"simulate-ci": "node dist/simulationMain.js --ci --require-cache",
"simulate-update-baseline": "node dist/simulationMain.js --update-baseline",
"simulate-gc": "node dist/simulationMain.js --require-cache --gc",
"setup": "npm run get_env && npm run get_token",
"setup:dotnet": "run-script-os",
"setup:dotnet:darwin:linux": "curl -O https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.sh && chmod u+x dotnet-install.sh && ./dotnet-install.sh --channel 10.0 && rm dotnet-install.sh",
"setup:dotnet:win32": "powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1 -OutFile dotnet-install.ps1; ./dotnet-install.ps1 -channel 10.0; Remove-Item dotnet-install.ps1\"",
"analyze-edits": "tsx script/analyzeEdits.ts",
"extract-chat-lib": "tsx script/build/extractChatLib.ts",
"create_venv": "tsx script/setup/createVenv.mts",
"package": "vsce package",
"web": "vscode-test-web --headless --extensionDevelopmentPath=. .",
"test:prompt": "mocha \"src/extension/completions-core/vscode-node/prompt/**/test/**/*.test.{ts,tsx}\"",
"test:completions-core": "tsx src/extension/completions-core/vscode-node/extension/test/runTest.ts"
},
"devDependencies": {
"@azure/identity": "4.9.1",
"@azure/keyvault-secrets": "^4.10.0",
"@azure/msal-node": "^3.6.3",
"@c4312/scip": "^0.1.0",
"@fluentui/react-components": "^9.66.6",
"@fluentui/react-icons": "^2.0.305",
"@hediet/node-reload": "^0.8.0",
"@keyv/sqlite": "^4.0.5",
"@octokit/types": "^14.1.0",
"@parcel/watcher": "^2.5.1",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/eslint": "^9.0.0",
"@types/express": "^5.0.6",
"@types/google-protobuf": "^3.15.12",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^14.0.0",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.10",
"@types/node": "^22.16.3",
"@types/picomatch": "^4.0.0",
"@types/react": "17.0.44",
"@types/react-dom": "^18.2.17",
"@types/sinon": "^17.0.4",
"@types/source-map-support": "^0.5.10",
"@types/tar": "^6.1.13",
"@types/vinyl": "^2.0.12",
"@types/vscode": "^1.108.1",
"@types/vscode-webview": "^1.57.4",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.32.0",
"@typescript-eslint/typescript-estree": "^8.26.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/snapshot": "^1.5.0",
"@vscode/debugadapter": "^1.68.0",
"@vscode/debugprotocol": "^1.68.0",
"@vscode/dts": "^0.4.1",
"@vscode/lsif-language-service": "^0.1.0-pre.4",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"@vscode/test-web": "^0.0.71",
"@vscode/vsce": "3.6.0",
"copyfiles": "^2.4.1",
"csv-parse": "^6.0.0",
"dotenv": "^17.2.0",
"electron": "^37.2.1",
"esbuild": "^0.25.6",
"eslint": "^9.30.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^51.3.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"fastq": "^1.19.1",
"glob": "^11.1.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"keyv": "^5.3.2",
"lint-staged": "15.2.9",
"minimist": "^1.2.8",
"mobx": "^6.13.7",
"mobx-react-lite": "^4.1.0",
"mocha": "^11.7.1",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"monaco-editor": "0.44.0",
"npm-run-all": "^4.1.5",
"open": "^10.1.2",
"openai": "^6.7.0",
"outdent": "^0.8.0",
"picomatch": "^4.0.2",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"react": "^17.0.2",
"react-dom": "17.0.2",
"rimraf": "^6.0.1",
"run-script-os": "^1.1.6",
"shiki": "~1.15.0",
"sinon": "^21.0.0",
"source-map-support": "^0.5.21",
"tar": "^7.5.8",
"ts-dedent": "^2.2.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0",
"typescript-formatter": "github:jrieken/typescript-formatter#497efb26bc40b5fa59a350e6eab17bce650a7e4b",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^3.0.5",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.5",
"yaml": "^2.8.0",
"yargs": "^17.7.2",
"zod": "3.25.76"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.52",
"@anthropic-ai/sdk": "^0.78.0",
"@github/blackbird-external-ingest-utils": "^0.3.0",
"@github/copilot": "^0.0.420",
"@google/genai": "^1.22.0",
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
"@microsoft/tiktokenizer": "^1.0.10",
"@modelcontextprotocol/sdk": "^1.25.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.212.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.212.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.212.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.212.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.212.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.212.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.212.0",
"@opentelemetry/resources": "^2.5.1",
"@opentelemetry/sdk-logs": "^0.212.0",
"@opentelemetry/sdk-metrics": "^2.5.1",
"@opentelemetry/sdk-trace-node": "^2.5.1",
"@opentelemetry/semantic-conventions": "^1.39.0",
"@sinclair/typebox": "^0.34.41",
"@vscode/copilot-api": "^0.2.13",
"@vscode/extension-telemetry": "^1.5.1",
"@vscode/l10n": "^0.0.18",
"@vscode/prompt-tsx": "^0.4.0-alpha.6",
"@vscode/tree-sitter-wasm": "0.0.5-php.2",
"@vscode/webview-ui-toolkit": "^1.3.1",
"@xterm/headless": "^5.5.0",
"ajv": "^8.18.0",
"applicationinsights": "^2.9.7",
"best-effort-json-parser": "^1.2.1",
"diff": "^8.0.3",
"dompurify": "^3.3.0",
"express": "^5.2.1",
"ignore": "^7.0.5",
"isbinaryfile": "^5.0.4",
"jsonc-parser": "^3.3.1",
"lru-cache": "^11.1.0",
"markdown-it": "^14.1.1",
"minimatch": "^10.2.1",
"undici": "^7.18.2",
"vscode-tas-client": "^0.1.84",
"web-tree-sitter": "^0.23.0"
},
"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"
},
"vscodeCommit": "ff740b1cefad130c3477aa75a1e0ec744d516ac1"
}