Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.

Commit fd4349d

Browse files
committed
main merge
2 parents 3c8aba7 + 8f25ff1 commit fd4349d

56 files changed

Lines changed: 3092 additions & 371 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package-lock.json

Lines changed: 69 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 56 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "copilot-chat",
33
"displayName": "GitHub Copilot Chat",
44
"description": "AI chat features powered by Copilot",
5-
"version": "0.43.0",
5+
"version": "0.44.0",
66
"build": "1",
77
"internalAIKey": "1058ec22-3c95-4951-8443-f26c1f325911",
88
"completionsCoreVersion": "1.378.1799",
@@ -3231,15 +3231,6 @@
32313231
"onExp"
32323232
]
32333233
},
3234-
"github.copilot.chat.anthropic.thinking.forceExtendedThinking": {
3235-
"type": "boolean",
3236-
"markdownDescription": "%github.copilot.config.anthropic.thinking.forceExtendedThinking%",
3237-
"default": false,
3238-
"tags": [
3239-
"preview",
3240-
"onExp"
3241-
]
3242-
},
32433234
"github.copilot.chat.backgroundCompaction": {
32443235
"type": "boolean",
32453236
"default": false,
@@ -3330,6 +3321,22 @@
33303321
"experimental"
33313322
]
33323323
},
3324+
"github.copilot.chat.githubMcpServer.channel": {
3325+
"type": "string",
3326+
"default": "stable",
3327+
"enum": [
3328+
"stable",
3329+
"insiders"
3330+
],
3331+
"enumDescriptions": [
3332+
"%github.copilot.config.githubMcpServer.channel.stable%",
3333+
"%github.copilot.config.githubMcpServer.channel.insiders%"
3334+
],
3335+
"markdownDescription": "%github.copilot.config.githubMcpServer.channel%",
3336+
"tags": [
3337+
"experimental"
3338+
]
3339+
},
33333340
"github.copilot.chat.switchAgent.enabled": {
33343341
"type": "boolean",
33353342
"default": false,
@@ -4026,6 +4033,16 @@
40264033
"onExp"
40274034
]
40284035
},
4036+
"github.copilot.chat.edits.batchReplaceStringDescriptions": {
4037+
"type": "boolean",
4038+
"default": false,
4039+
"markdownDescription": "Update tool descriptions to promote `multi_replace_string_in_file` as the primary multi-edit tool.",
4040+
"tags": [
4041+
"advanced",
4042+
"experimental",
4043+
"onExp"
4044+
]
4045+
},
40294046
"github.copilot.chat.projectLabels.expanded": {
40304047
"type": "boolean",
40314048
"default": false,
@@ -4361,10 +4378,10 @@
43614378
"experimental"
43624379
]
43634380
},
4364-
"github.copilot.chat.agentHistorySummarizationCacheFriendly": {
4381+
"github.copilot.chat.agentHistorySummarizationInline": {
43654382
"type": "boolean",
43664383
"default": false,
4367-
"markdownDescription": "%github.copilot.config.agentHistorySummarizationCacheFriendly%",
4384+
"markdownDescription": "%github.copilot.config.agentHistorySummarizationInline%",
43684385
"tags": [
43694386
"advanced",
43704387
"experimental",
@@ -6119,49 +6136,58 @@
61196136
"chatAgents": [],
61206137
"chatPromptFiles": [
61216138
{
6122-
"path": "./assets/prompts/plan.prompt.md"
6139+
"path": "./assets/prompts/plan.prompt.md",
6140+
"when": "chatSessionType == local"
61236141
},
61246142
{
6125-
"path": "./assets/prompts/init.prompt.md"
6143+
"path": "./assets/prompts/init.prompt.md",
6144+
"when": "chatSessionType == local"
61266145
},
61276146
{
6128-
"path": "./assets/prompts/create-prompt.prompt.md"
6147+
"path": "./assets/prompts/create-prompt.prompt.md",
6148+
"when": "chatSessionType == local"
61296149
},
61306150
{
6131-
"path": "./assets/prompts/create-instructions.prompt.md"
6151+
"path": "./assets/prompts/create-instructions.prompt.md",
6152+
"when": "chatSessionType == local"
61326153
},
61336154
{
6134-
"path": "./assets/prompts/create-skill.prompt.md"
6155+
"path": "./assets/prompts/create-skill.prompt.md",
6156+
"when": "chatSessionType == local"
61356157
},
61366158
{
6137-
"path": "./assets/prompts/create-agent.prompt.md"
6159+
"path": "./assets/prompts/create-agent.prompt.md",
6160+
"when": "chatSessionType == local"
61386161
},
61396162
{
6140-
"path": "./assets/prompts/create-hook.prompt.md"
6163+
"path": "./assets/prompts/create-hook.prompt.md",
6164+
"when": "chatSessionType == local"
61416165
}
61426166
],
61436167
"chatSkills": [
61446168
{
61456169
"path": "./assets/prompts/skills/project-setup-info-local/SKILL.md",
6146-
"when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && !config.github.copilot.chat.newWorkspace.useContext7"
6170+
"when": "chatSessionType == local && config.github.copilot.chat.projectSetupInfoSkill.enabled && !config.github.copilot.chat.newWorkspace.useContext7"
61476171
},
61486172
{
61496173
"path": "./assets/prompts/skills/project-setup-info-context7/SKILL.md",
6150-
"when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && config.github.copilot.chat.newWorkspace.useContext7"
6174+
"when": "chatSessionType == local && config.github.copilot.chat.projectSetupInfoSkill.enabled && config.github.copilot.chat.newWorkspace.useContext7"
61516175
},
61526176
{
61536177
"path": "./assets/prompts/skills/install-vscode-extension/SKILL.md",
6154-
"when": "config.github.copilot.chat.installExtensionSkill.enabled && config.github.copilot.chat.newWorkspaceCreation.enabled"
6178+
"when": "chatSessionType == local && config.github.copilot.chat.installExtensionSkill.enabled && config.github.copilot.chat.newWorkspaceCreation.enabled"
61556179
},
61566180
{
61576181
"path": "./assets/prompts/skills/get-search-view-results/SKILL.md",
6158-
"when": "config.github.copilot.chat.getSearchViewResultsSkill.enabled"
6182+
"when": "chatSessionType == local && config.github.copilot.chat.getSearchViewResultsSkill.enabled"
61596183
},
61606184
{
6161-
"path": "./assets/prompts/skills/troubleshoot/SKILL.md"
6185+
"path": "./assets/prompts/skills/troubleshoot/SKILL.md",
6186+
"when": "chatSessionType == local || chatSessionType == copilotcli"
61626187
},
61636188
{
6164-
"path": "./assets/prompts/skills/agent-customization/SKILL.md"
6189+
"path": "./assets/prompts/skills/agent-customization/SKILL.md",
6190+
"when": "chatSessionType == local || chatSessionType == copilotcli"
61656191
}
61666192
],
61676193
"terminal": {
@@ -6271,7 +6297,7 @@
62716297
"copyfiles": "^2.4.1",
62726298
"csv-parse": "^6.0.0",
62736299
"dotenv": "^17.2.0",
6274-
"electron": "^37.2.1",
6300+
"electron": "^39.8.5",
62756301
"esbuild": "^0.25.6",
62766302
"eslint": "^9.30.0",
62776303
"eslint-import-resolver-typescript": "^4.4.4",
@@ -6323,10 +6349,10 @@
63236349
"zod": "3.25.76"
63246350
},
63256351
"dependencies": {
6326-
"@anthropic-ai/claude-agent-sdk": "^0.2.81",
6327-
"@anthropic-ai/sdk": "^0.81.0",
6352+
"@anthropic-ai/claude-agent-sdk": "^0.2.91",
6353+
"@anthropic-ai/sdk": "^0.82.0",
63286354
"@github/blackbird-external-ingest-utils": "^0.3.0",
6329-
"@github/copilot": "^1.0.12",
6355+
"@github/copilot": "^1.0.17",
63306356
"@google/genai": "^1.22.0",
63316357
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
63326358
"@microsoft/tiktokenizer": "^1.0.10",
@@ -6374,5 +6400,5 @@
63746400
"node-gyp": "npm:node-gyp@10.3.1",
63756401
"zod": "3.25.76"
63766402
},
6377-
"vscodeCommit": "f540be8c1abf14ef594d42dd3a99c50f48732a7b"
6403+
"vscodeCommit": "20b24833bc088c84b778ee89be4c17f15660441a"
63786404
}

0 commit comments

Comments
 (0)