Dev & Engineering ✓ Microsoft · Official visual-studio-codesearch-viewvscode-commandcopilot-runvscodecommand

Search View Results Reader

Reads the existing results in Visual Studio Code’s Search view.

FollowSkills review · FSRS-2.0
Not recommended
43/ 100 5-point scale 2.2 / 5
Trust17 / 25 · 3.4/5

The skill only reads the current VS Code search results and requests no file writes, external network access, or destructive action, so the apparent permission surface is small. It does not disclose sensitive-data flow, user confirmation, output boundaries, recovery, or why skipCheck=true is safe, so points are deducted.

Reliability6 / 20 · 1.5/5

The procedure is short and names a concrete command, but it only asserts that the command exists and omits argument structure, result handling, empty-result behavior, failure diagnostics, and version differences. Static review provides no skill-specific execution evidence, so the score remains conservative.

Adaptability7 / 15 · 2.3/5

The target scenario—retrieving existing Search view results—is clear and does not depend on an overseas service. However, empty searches, environment variations, trigger conditions, non-fit cases, and Chinese-language interaction boundaries are unspecified, warranting deductions.

Convention6 / 15 · 2.0/5

The name and description broadly match the capability, while repository evidence supplies Microsoft ownership, MIT licensing, versioning, and maintenance signals. The skill itself lacks installation/dependency notes, output examples, limitations, troubleshooting, changelog, and explicit maintenance ownership, so points are deducted.

Effectiveness5 / 15 · 1.7/5

If the command is available, the steps plausibly complete the core retrieval task. However, they do not specify how results should be returned or presented and do not cover empty or abnormal cases; direct usability and marginal benefit over manual retrieval are therefore only partially evidenced.

Verifiability2 / 10 · 1.0/5

The skill provides an auditable command name, but no dedicated tests, sample outputs, or third-party execution evidence. The supplied CI workflows mainly cover other components and do not establish this skill’s key path, so verifiability is low.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 5b3e1be7be9e
Before you use it
  • skipCheck=true bypasses command-existence validation; confirm that the target VS Code version and host tool support the command.
  • Behavior for empty results, command failure, result formatting, and sensitive search content is unspecified.
  • This assessment is based only on static file review; the command was not executed or independently reproduced.
See the full review method →

What it does & when to use it

This is a narrowly scoped skill for the Visual Studio Code Search view. It retrieves results that are already present instead of starting a new search. The skill invokes the search.action.getSearchResults command through copilot_runVscodeCommand and requires skipCheck to be true. It fits workflows where a search has already been performed in VS Code and an agent needs to continue from those results.

It obtains the current results from the VS Code Search view by calling search.action.getSearchResults through copilot_runVscodeCommand with skipCheck: true. The SKILL.md does not define a particular result format, and it does not include steps for starting a search, editing files, or writing data.

  1. A developer has finished a code search in VS Code and wants an agent to read the current results for further analysis.
  2. A maintainer wants an agent to continue from an existing workspace-wide search without launching the search again.
  3. A debugger has located relevant files in VS Code and wants to continue investigation from the current Search view results.
  4. A user working with a VS Code and Copilot integration needs a direct operation for retrieving the current search results.

Pros & cons

Pros
  • Has a precise scope: retrieving results already present in the VS Code Search view.
  • Specifies both the VS Code command and the required skipCheck setting.
  • Includes no file-writing, network-request, or external-command steps.
Limitations
  • Depends on the copilot_runVscodeCommand tool rather than a generic model call.
  • Requires existing Search view results; it does not initiate a search.
  • The SKILL.md does not document the result format, failure handling, test suite, or standalone installation process.
  • The source does not establish direct support beyond the specified Copilot and VS Code integration.

How to install

The skill is located at extensions/copilot/assets/prompts/skills/get-search-view-results/SKILL.md. The supplied README does not document an installation command or a standalone installation process for this skill; it only states that the repository bundles 61 skills and provides the repository URL: https://github.com/microsoft/vscode. Before adopting it, verify that the runtime provides copilot_runVscodeCommand.

How to use

First perform a search in the VS Code Search view and leave its results available. Then ask the agent to call copilot_runVscodeCommand with the command search.action.getSearchResults and skipCheck set to true. Example request: "Read the current results from the VS Code Search view." The skill does not specify additional parameters or a detailed result presentation format.

FAQ

Does this skill perform the search for me?
No. It retrieves the current results already present in the VS Code Search view.
Why must skipCheck be set to true?
The SKILL.md explicitly requires this because the command is known to exist and the command-existence check should be skipped.
What permissions or external services does it require?
The source explicitly shows a dependency on the copilot_runVscodeCommand tool and a VS Code environment. It does not state any additional network, filesystem, or MCP requirements.
Is it useful when there are no existing search results?
No. The skill assumes that the Search view already contains results and provides no instructions for starting a search.

More skills from this repository

All from microsoft/vscode

Dev & Engineering ✓ Microsoft · Official

Tool Rename Compatibility Check

Protect existing prompts and tool configurations when built-in tools are renamed.

Dev & Engineering ✓ Microsoft · Official

Copilot Chat OpenTelemetry Instrumentation

A repository-specific guide for consistent OpenTelemetry instrumentation in Copilot Chat.

Dev & Engineering ✓ Microsoft · Official

VS Code Configuration Policy Maintainer

Standardize VS Code policy registration, export, and validation.

Design & Frontend ✓ Microsoft · Official

VS Code Design Philosophy

Turn vague UI discomfort into concrete fixes using shared values, principles, and design moves.

Dev & Engineering ✓ Microsoft · Official

Agent Host E2E Test Assistant

Maintain VS Code Agent Host end-to-end tests with strict replay fixtures.

Dev & Engineering ✓ Microsoft · Official

VS Code Integrated Browser Architecture

A practical architecture guide for safely changing VS Code's cross-process integrated browser.

Dev & Engineering ✓ Microsoft · Official

VS Code Agents Window Sessions

Safely implement and repair VS Code Agents window features.

Dev & Engineering ✓ Microsoft · Official

Commit Assistant

Creates repository-style commit messages and safely commits code changes.

Dev & Engineering ✓ Microsoft · Official

Agent Host Log Investigator

Trace session, transport, and host failures in Agent Host debug exports.

Dev & Engineering ✓ Microsoft · Official

VS Code Unit Test Runner

Run VS Code repository unit tests by file, test name, or compiled-output glob.

Dev & Engineering ✓ Microsoft · Official

VS Code Agent Customization Assistant

Create, repair, and troubleshoot VS Code Agent customization files and their loading behavior.

Dev & Engineering ✓ Microsoft · Official

Code OSS Launch & Debug

Launch a built-from-source VS Code with isolated profiles, Playwright control, and multi-process debugging ports.

Dev & Engineering ✓ Microsoft · Official

VS Code Accessibility Development Guide

A practical specification for accessible interactive features in VS Code.

Design & Frontend ✓ Microsoft · Official

VS Code CSS Layout Standards

Build reliable VS Code-style CSS layouts and text truncation behavior

Dev & Engineering ✓ Microsoft · Official

VS Code Chat Performance Lab

Benchmark chat rendering and detect memory growth across VS Code builds.

Dev & Engineering ✓ Microsoft · Official

Component Fixtures for Screenshot Testing

Create stable, theme-aware VS Code component fixtures for isolated screenshot testing.

Dev & Engineering ✓ Microsoft · Official

VS Code Smoke Test Assistant

Run, filter, and debug VS Code end-to-end smoke tests.

Dev & Engineering ✓ Microsoft · Official

VS Code Crash Dump Symbolicator

Turn native VS Code crash dumps into readable backtraces with method names.

Dev & Engineering ✓ Microsoft · Official

Local VS Code Web Workbench

Validate VS Code workbench and Agents window changes in a local vscode.dev instance.

Dev & Engineering ✓ Microsoft · Official

Feedback Action

Reads current-session feedback and applies the requested code changes.

Related skills