Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,6 @@ class SlashCommandCompletions extends Disposable {
const userInvocableCommands = promptCommands
.filter(c => {
if (widget.lockedAgentId) {
// Exclude extension-provided prompt files for locked agents.
if (c.promptPath.extension) {
return false;
}
// Exclude hooks as those don't work in locked agent scenarios.
try {
const promptType = getPromptFileType(c.promptPath.uri);
Expand Down
Loading