Make localIndex setting public#312402
Merged
vijayupadya merged 3 commits intomainfrom Apr 24, 2026
Merged
Conversation
Co-authored-by: Copilot <copilot@github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Promotes the “local session indexing” feature flag from a team-internal setting to a public experimental setting so it can be configured via Settings UI and controlled via ExP.
Changes:
- Replaces the team-internal config key with a new public experimental setting
github.copilot.chat.localIndex.enabled. - Updates chronicle-related feature gating (intent availability, context keys, trackers/exporters) to use the new config key.
- Adds the new setting to
package.jsoncontributions and updates localized strings.
Show a summary per file
| File | Description |
|---|---|
| extensions/copilot/src/platform/configuration/common/configurationService.ts | Removes old team-internal key and introduces new public LocalIndexEnabled config key. |
| extensions/copilot/src/extension/intents/node/chronicleIntent.ts | Gates chronicle intent availability on the new config key. |
| extensions/copilot/src/extension/contextKeys/vscode-node/contextKeys.contribution.ts | Updates context key wiring to read the new config key. |
| extensions/copilot/src/extension/chronicle/vscode-node/sessionStoreTracker.ts | Switches local tracking enablement check to the new config key. |
| extensions/copilot/src/extension/chronicle/vscode-node/remoteSessionExporter.ts | Switches local-enabled check to the new config key for cloud export gating. |
| extensions/copilot/src/extension/chronicle/common/test/sessionIndexingPreference.spec.ts | Updates mocked config key string to the new fully-qualified setting. |
| extensions/copilot/src/extension/chronicle/common/sessionIndexingPreference.ts | Removes outdated doc comment referencing the old local-index setting path. |
| extensions/copilot/package.nls.json | Updates chronicle descriptions and adds a new localized description for the new setting. |
| extensions/copilot/package.json | Contributes the new public experimental setting to Settings UI / ExP (onExp). |
Copilot's findings
- Files reviewed: 9/9 changed files
- Comments generated: 3
joshspicer
approved these changes
Apr 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Promotes the local session indexing setting from a internal setting to a public experimental setting, making it accessible via VS Code Settings UI and ExP flights.