@vscode/chat-lib 0.49.2026051801 → 0.50.2026052010

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +4 -1
  2. package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
  3. package/dist/src/_internal/platform/configuration/common/configurationService.js +3 -1
  4. package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
  5. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +48 -18
  6. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -1
  7. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +61 -42
  8. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
  9. package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts.map +1 -1
  10. package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js +4 -3
  11. package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js.map +1 -1
  12. package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.d.ts.map +1 -1
  13. package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.js +8 -1
  14. package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.js.map +1 -1
  15. package/dist/src/_internal/platform/networking/common/anthropic.d.ts +19 -17
  16. package/dist/src/_internal/platform/networking/common/anthropic.d.ts.map +1 -1
  17. package/dist/src/_internal/platform/networking/common/anthropic.js +45 -34
  18. package/dist/src/_internal/platform/networking/common/anthropic.js.map +1 -1
  19. package/dist/src/_internal/platform/telemetry/node/azureInsightsReporter.js +4 -1
  20. package/dist/src/_internal/platform/telemetry/node/azureInsightsReporter.js.map +1 -1
  21. package/dist/src/package.json +48 -42
  22. package/package.json +1 -1
@@ -2,7 +2,7 @@
2
2
  "name": "copilot-chat",
3
3
  "displayName": "GitHub Copilot Chat",
4
4
  "description": "AI chat features powered by Copilot",
5
- "version": "0.49.2026051801",
5
+ "version": "0.50.2026052010",
6
6
  "build": "1",
7
7
  "completionsCoreVersion": "1.378.1799",
8
8
  "internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
@@ -22,7 +22,7 @@
22
22
  "icon": "assets/copilot.png",
23
23
  "pricing": "Trial",
24
24
  "engines": {
25
- "vscode": "^1.121.0",
25
+ "vscode": "^1.122.0",
26
26
  "npm": ">=9.0.0",
27
27
  "node": ">=22.14.0"
28
28
  },
@@ -592,33 +592,9 @@
592
592
  ]
593
593
  },
594
594
  "tags": [
595
- "enable_other_tool_install_extension",
596
- "enable_other_tool_get_project_setup_info"
595
+ "enable_other_tool_install_extension"
597
596
  ]
598
597
  },
599
- {
600
- "name": "copilot_getProjectSetupInfo",
601
- "displayName": "%github.copilot.tools.getProjectSetupInfo.name%",
602
- "when": "config.github.copilot.chat.newWorkspaceCreation.enabled && !config.github.copilot.chat.projectSetupInfoSkill.enabled",
603
- "toolReferenceName": "getProjectSetupInfo",
604
- "legacyToolReferenceFullNames": [
605
- "new/getProjectSetupInfo"
606
- ],
607
- "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.",
608
- "inputSchema": {
609
- "type": "object",
610
- "properties": {
611
- "projectType": {
612
- "type": "string",
613
- "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'"
614
- }
615
- },
616
- "required": [
617
- "projectType"
618
- ]
619
- },
620
- "tags": []
621
- },
622
598
  {
623
599
  "name": "copilot_installExtension",
624
600
  "displayName": "Install Extension in VS Code",
@@ -1260,7 +1236,7 @@
1260
1236
  "toolReferenceName": "sessionStoreSql",
1261
1237
  "when": "github.copilot.sessionSearch.enabled",
1262
1238
  "userDescription": "Query your Copilot session history using SQL",
1263
- "modelDescription": "Query the local session store containing history from past coding sessions. Uses SQLite SQL syntax.\n\nActions: 'query' (execute SQL — supports JOINs, FTS5 MATCH, aggregations), 'standup' (pre-fetch last 24h data), 'reindex' (rebuild index from debug logs).",
1239
+ "modelDescription": "Query the local session store containing history from past coding sessions. Uses SQLite syntax (NOT DuckDB or Postgres). SQL queries are read-only — only SELECT and WITH are allowed. Use `datetime('now', '-1 day')` for date math (NOT `now() - INTERVAL '1 day'`), FTS5 `MATCH` for text search.\n\nTables: `sessions`, `turns`, `session_files`, `session_refs`, `checkpoints`, `search_index`. For column details and query patterns, use the **chronicle** skill.\n\nActions: 'query' (execute SQL — supports JOINs, FTS5 MATCH, aggregations), 'standup' (pre-fetch last 24h data), 'reindex' (rebuild index from debug logs).",
1264
1240
  "tags": [],
1265
1241
  "canBeReferencedInPrompt": false,
1266
1242
  "inputSchema": {
@@ -1347,7 +1323,6 @@
1347
1323
  "name": "vscode",
1348
1324
  "description": "",
1349
1325
  "tools": [
1350
- "getProjectSetupInfo",
1351
1326
  "installExtension",
1352
1327
  "memory",
1353
1328
  "newWorkspace",
@@ -3520,6 +3495,22 @@
3520
3495
  "experimental"
3521
3496
  ]
3522
3497
  },
3498
+ "github.copilot.chat.cloudAgentBackend.version": {
3499
+ "type": "string",
3500
+ "default": "v1",
3501
+ "enum": [
3502
+ "v1",
3503
+ "v2"
3504
+ ],
3505
+ "enumDescriptions": [
3506
+ "%github.copilot.config.cloudAgentBackend.version.v1%",
3507
+ "%github.copilot.config.cloudAgentBackend.version.v2%"
3508
+ ],
3509
+ "markdownDescription": "%github.copilot.config.cloudAgentBackend.version%",
3510
+ "tags": [
3511
+ "experimental"
3512
+ ]
3513
+ },
3523
3514
  "github.copilot.chat.switchAgent.enabled": {
3524
3515
  "type": "boolean",
3525
3516
  "default": false,
@@ -4265,6 +4256,24 @@
4265
4256
  ],
4266
4257
  "description": "%github.copilot.config.anthropic.promptCaching.extendedTtlMessages%"
4267
4258
  },
4259
+ "github.copilot.chat.modelCapabilityOverrides": {
4260
+ "type": "object",
4261
+ "default": {},
4262
+ "markdownDescription": "%github.copilot.config.modelCapabilityOverrides%",
4263
+ "additionalProperties": {
4264
+ "type": "object",
4265
+ "properties": {
4266
+ "family": {
4267
+ "type": "string",
4268
+ "description": "Alias the model's family for capability routing (e.g. 'claude-opus-4.7')."
4269
+ }
4270
+ },
4271
+ "additionalProperties": false
4272
+ },
4273
+ "tags": [
4274
+ "advanced"
4275
+ ]
4276
+ },
4268
4277
  "github.copilot.chat.freezeCustomizationsIndex": {
4269
4278
  "type": "boolean",
4270
4279
  "default": true,
@@ -4285,16 +4294,6 @@
4285
4294
  ],
4286
4295
  "description": "%github.copilot.config.installExtensionSkill.enabled%"
4287
4296
  },
4288
- "github.copilot.chat.projectSetupInfoSkill.enabled": {
4289
- "type": "boolean",
4290
- "default": false,
4291
- "tags": [
4292
- "advanced",
4293
- "experimental",
4294
- "onExp"
4295
- ],
4296
- "description": "%github.copilot.config.projectSetupInfoSkill.enabled%"
4297
- },
4298
4297
  "github.copilot.chat.debug.promptOverrideString": {
4299
4298
  "type": [
4300
4299
  "string",
@@ -6626,19 +6625,26 @@
6626
6625
  "sessionTypes": [
6627
6626
  "local"
6628
6627
  ]
6628
+ },
6629
+ {
6630
+ "path": "./assets/prompts/chronicle-search.prompt.md",
6631
+ "when": "github.copilot.sessionSearch.enabled",
6632
+ "sessionTypes": [
6633
+ "local"
6634
+ ]
6629
6635
  }
6630
6636
  ],
6631
6637
  "chatSkills": [
6632
6638
  {
6633
6639
  "path": "./assets/prompts/skills/project-setup-info-local/SKILL.md",
6634
- "when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && !config.github.copilot.chat.newWorkspace.useContext7",
6640
+ "when": "!config.github.copilot.chat.newWorkspace.useContext7",
6635
6641
  "sessionTypes": [
6636
6642
  "local"
6637
6643
  ]
6638
6644
  },
6639
6645
  {
6640
6646
  "path": "./assets/prompts/skills/project-setup-info-context7/SKILL.md",
6641
- "when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && config.github.copilot.chat.newWorkspace.useContext7",
6647
+ "when": "config.github.copilot.chat.newWorkspace.useContext7",
6642
6648
  "sessionTypes": [
6643
6649
  "local"
6644
6650
  ]
@@ -6860,7 +6866,7 @@
6860
6866
  "@anthropic-ai/claude-agent-sdk": "0.2.112",
6861
6867
  "@anthropic-ai/sdk": "^0.82.0",
6862
6868
  "@github/blackbird-external-ingest-utils": "^0.3.0",
6863
- "@github/copilot": "1.0.39",
6869
+ "@github/copilot": "^1.0.48",
6864
6870
  "@google/genai": "^1.22.0",
6865
6871
  "@humanwhocodes/gitignore-to-minimatch": "1.0.2",
6866
6872
  "@microsoft/tiktokenizer": "^1.0.10",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/chat-lib",
3
- "version": "0.49.2026051801",
3
+ "version": "0.50.2026052010",
4
4
  "description": "Chat and inline editing SDK extracted from VS Code Copilot Chat",
5
5
  "main": "dist/src/main.js",
6
6
  "types": "dist/src/main.d.ts",