prompt service: cache ISlashCommandDiscoveryInfo and IAgentDiscoveryInfo#306144
Merged
prompt service: cache ISlashCommandDiscoveryInfo and IAgentDiscoveryInfo#306144
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the chat prompt service caching strategy to cache discovery info objects (for agents, slash commands, and skills) rather than caching only the derived arrays, so discovery details can be reused without recomputation.
Changes:
- Cache
ISlashCommandDiscoveryInfoand deriveIChatPromptSlashCommand[]from it. - Cache
IAgentDiscoveryInfoand deriveICustomAgent[]from it. - Cache
IPromptDiscoveryInfofor skills while keeping telemetry emission in the discovery computation.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts |
Switches caches to store discovery info and derives agents/commands/skills from those cached results. |
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.ts |
Adds new discovery interfaces that embed parsed/resolved objects for slash commands and agents. |
Comments suppressed due to low confidence (1)
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts:739
onDidLogDiscoveryis fired withdiscoveryInfothat now contains fullICustomAgentobjects (including instructions content). The debug bridge storesdiscoveryInfofor later resolution and only needs file-level metadata; keeping full agent objects there can significantly increase memory usage and retain potentially sensitive prompt/instructions text. Suggest emitting a sanitized/lightweightIPromptDiscoveryInfofor logging (noagentpayload), while still caching full agents forgetCustomAgents().
this._onDidLogDiscovery.fire({
sessionResource,
name: localize("promptsService.loadAgents", "Load Agents"),
details,
discoveryInfo,
category: 'discovery',
});
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts
Outdated
Show resolved
Hide resolved
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts
Outdated
Show resolved
Hide resolved
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts
Outdated
Show resolved
Hide resolved
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts
Show resolved
Hide resolved
src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts
Show resolved
Hide resolved
…ptsServiceImpl.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
bpasero
approved these changes
Mar 31, 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.
No description provided.