Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

vscode

vscode에는 microsoft에서 수집한 skills 54개가 있으며, 저장소 수준 직업 범위와 사이트 내 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
이 저장소에서 수집된 skills 54개 중 상위 40개를 표시합니다.