Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

vscode

vscode 收录了来自 microsoft 的 54 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
54
Stars
186.6k
更新
2026-06-21
Forks
40.6k
职业覆盖
7 个职业分类 · 已分类 93%
仓库浏览

这个仓库中的 skills

sessions
未分类

Agents window architecture — covers the agents-first app, layering, folder structure, chat widget, menus, contributions, entry points, and development guidelines. Use when implementing features or fixing issues in the Agents window.

2026-06-21
add-policy
未分类

Use when adding, modifying, or reviewing VS Code configuration policies. Covers the full policy lifecycle from registration to export to platform-specific artifacts. Run on ANY change that adds a `policy:` field to a configuration property.

2026-06-18
act-on-feedback
未分类

Act on user feedback attached to the current session. Use when the user submits feedback on the session's changes via the Submit Feedback button.

2026-06-18
smoke-tests
未分类

Use when running VS Code smoke tests or working on smoke-test CI steps. Covers npm run smoketest / smoketest-no-compile, grep filtering tests, and a temporary repeat-loop technique for tracking down flaky smoke tests in CI.

2026-06-17
chat-customizations-editor
软件开发工程师

Use when working on the Chat Customizations editor — the management UI for agents, skills, instructions, hooks, prompts, MCP servers, and plugins.

2026-06-16
fix-ci-failures
软件开发工程师

Investigate and fix CI failures on a pull request. Use when CI checks fail on a PR branch — covers finding the PR, identifying failed checks, downloading logs and artifacts, extracting the failure cause, and iterating on a fix. Requires the `gh` CLI.

2026-06-16
fix-ci
软件开发工程师

Fix the failed CI checks for the current session. Use when the user requests a CI fix via the Fix Checks button in the Changes toolbar.

2026-06-16
create-pr
软件开发工程师

Create a pull request for the current session. Use when the user wants to open a PR with the session's changes.

2026-06-15
code-review
软件质量保证分析师与测试员

Perform a code review of the current session's changes. Use when the user requests a code review via the Run Code Review button in the Changes toolbar.

2026-06-10
ux-css-layout
软件开发工程师

VS Code CSS conventions, file organization, class naming, standard sizes, SplitView/Grid layout, scrollable content, responsive layout, and text overflow/ellipsis patterns. Use when writing CSS, building layouts, or fixing text truncation issues.

2026-06-09
ux-theming
软件开发工程师

VS Code theming, color tokens, widget styles, focus indicators, and high-contrast theme support. Use when registering colors, styling widgets with theme tokens, or ensuring HC/focus compliance.

2026-06-09
chronicle
软件开发工程师

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting session data.

2026-06-09
create-hook
软件开发工程师

Create a hook (.json) to enforce policy or automate agent lifecycle events.

2026-06-08
init
软件开发工程师

Generate or update chat customization files for AI coding agents

2026-05-29
memory-leak-audit
软件质量保证分析师与测试员

Audit code for memory leaks and disposable issues. Use when reviewing event listeners, DOM handlers, lifecycle callbacks, or fixing leak reports. Covers addDisposableListener, Event.once, MutableDisposable, DisposableStore, and onWillDispose patterns.

2026-05-29
launch
软件开发工程师

Launch Code OSS (VS Code from sources) into an isolated throwaway profile with unique debug ports so you can drive it with @playwright/cli AND attach a Node debugger via dap-cli in the same session. Use when working on VS Code itself and you want to interact with the running workbench, automate chat or UI flows, test UI features, take screenshots, set breakpoints in the renderer / extension host / main process, or combine UI driving with debugging.

2026-05-28
otel
软件开发工程师

OpenTelemetry instrumentation for the Copilot Chat extension — covers the four agent execution paths, the IOTelService abstraction, span/metric/event conventions, and the relationship between code and the user/developer monitoring docs. Use when adding/changing OTel spans, metrics, or events; instrumenting a new agent surface; touching the Copilot CLI bridge or Claude span emission; or updating `extensions/copilot/docs/monitoring/agent_monitoring*.md`.

2026-05-24
code-oss-logs
网络与计算机系统管理员

Find and read logs from Code OSS dev builds. Use when: finding logs, reading log files, debugging Code OSS, checking renderer logs, extension host logs, agent host logs, main process logs, investigating errors in dev builds.

2026-05-13
troubleshoot
软件开发工程师

Investigate unexpected chat agent behavior by analyzing direct debug logs in JSONL files. Use when users ask why something happened, why a request was slow, why tools or subagents were used or skipped, or why instructions/skills/agents did not load.

2026-05-02
launch
软件开发工程师

Launch and automate VS Code Insiders with the Copilot Chat extension using @playwright/cli via Chrome DevTools Protocol. Use when you need to interact with the VS Code UI, automate the chat panel, test the extension UI, or take screenshots. Triggers include 'automate VS Code', 'interact with chat', 'test the UI', 'take a screenshot', 'launch with debugging'.

2026-04-29
auto-perf-optimize
软件开发工程师

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

2026-04-29
vscode-dev-workbench
软件开发工程师

Use when the user wants to run the vscode.dev server locally and exercise the VS Code workbench or Agents window in the integrated browser against the local `microsoft/vscode` sources. Covers starting the dev server, the `vscode-quality=dev` URL, browser-driven interaction patterns, and optionally wiring up a local mock agent host for the Agents window.

2026-04-24
agent-customization
软件开发工程师

**WORKFLOW SKILL** — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md, copilot-instructions.md, AGENTS.md). USE FOR: saving coding preferences; troubleshooting why instructions/skills/agents are ignored or not invoked; configuring applyTo patterns; defining tool restrictions; creating custom agent modes or specialized workflows; packaging domain knowledge; fixing YAML frontmatter syntax. DO NOT USE FOR: general coding questions (use default agent); runtime debugging or error diagnosis; MCP server configuration (use MCP docs directly); VS Code extension development. INVOKES: file system tools (read/write customization files), ask-questions tool (interview user for requirements), subagents for codebase exploration. FOR SINGLE OPERATIONS: For quick YAML frontmatter fixes or creating a single file from a known pattern, edit the file directly — no skill needed.

2026-04-22
chat-perf
软件质量保证分析师与测试员

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

2026-04-22
heap-snapshot-analysis
软件开发工程师

Analyze V8 heap snapshots to investigate memory leaks and retention issues. Use when given .heapsnapshot files, asked to compare before/after snapshots, asked to find what retains objects, or investigating why objects survive GC. Provides snapshot parsing, comparison, retainer-path helpers, and scratchpad scripts.

2026-04-20
github-copilot-upgrader
软件开发工程师

Use this to update the Github Copilot CLI/SDK

2026-04-16
cpu-profile-analysis
软件开发工程师

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-*.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating user timing marks.

2026-04-10
generate-run-commands
软件开发工程师

Generate or modify run commands for the current session. Use when the user wants to set up or update run commands that appear in the session's Run button.

2026-04-09
create-agent
软件开发工程师

Create a custom agent (.agent.md) for a specific job.

2026-04-08
create-instructions
软件开发工程师

Create an instructions file (.instructions.md) for a project rule or convention.

2026-04-08
create-prompt
秘书和行政助理(法律、医疗和高管除外)

Create a reusable prompt file (.prompt.md) for a common task.

2026-04-08
create-skill
软件开发工程师

Create a reusable skill (SKILL.md) that packages a workflow.

2026-04-08
update-screenshots
软件质量保证分析师与测试员

Download screenshot baselines from the latest CI run and commit them. Use when asked to update, accept, or refresh component screenshot baselines from CI, or after the screenshot-test GitHub Action reports differences. This skill should be run as a subagent.

2026-04-07
merge
软件开发工程师

Merge changes from the topic branch to the merge base branch. Use when the user wants to merge their session's work back to the base branch.

2026-04-03
sync
软件开发工程师

Sync the current session branch with its upstream branch, or publish the current session branch to a remote. Use when the user asks to sync a branch, pull latest changes, rebase onto upstream, push current branch, publish branch, or set upstream.

2026-04-02
component-fixtures
软件质量保证分析师与测试员网页开发工程师

Use when creating or updating component fixtures for screenshot testing, or when designing UI components to be fixture-friendly. Covers fixture file structure, theming, service setup, CSS scoping, async rendering, and common pitfalls.

2026-04-01
unit-tests
软件质量保证分析师与测试员

Use when running unit tests in the VS Code repo. Covers the runTests tool, scripts/test.sh (macOS/Linux) and scripts/test.bat (Windows), and their supported arguments for filtering, globbing, and debugging tests.

2026-03-29
sync-upstream
软件开发工程师

Update a stale session branch by rebasing onto the latest origin. Use when the upstream has moved significantly and the session needs to catch up, resolving conflicts by preserving upstream changes and adapting session work to fit.

2026-03-28
integration-tests
软件质量保证分析师与测试员

Use when running integration tests in the VS Code repo. Covers scripts/test-integration.sh (macOS/Linux) and scripts/test-integration.bat (Windows), their supported arguments for filtering, and the difference between node.js integration tests and extension host tests.

2026-03-28
create-draft-pr
软件开发工程师

Create a draft pull request for the current session. Use when the user wants to open a draft PR with the session's changes.

2026-03-27
当前展示该仓库 Top 40 / 54 个已收集 skills。