mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-17 12:35:56 +01:00
* chore: migrate agent-browser to @playwright/cli Replace all uses of the `agent-browser` automation tool with `@playwright/cli`, which supports `npx @playwright/cli attach --cdp=<port>` for connecting to Electron/Chromium apps via CDP. - Rewrite launch SKILL.md files (Code OSS and Copilot variants) with new command mappings: attach --cdp, tab-list, snapshot, screenshot --filename, fill, press - Update auto-perf-optimize and chat-customizations-editor skills with @playwright/cli commands; fix eval blocks to use IIFE syntax required by the new tool - Migrate testRemoteAgentHost.sh: connect→attach --cdp, snapshot -i→snapshot, screenshot path→screenshot --filename=path; verified end-to-end with --skip-message - Remove agent-browser from extensions/copilot/package.json (covered by root devDependency); bump @playwright/cli to ^0.1.9 in root package.json * fix: add @types/ws as explicit devDependency in copilot extension Previously pulled in transitively via agent-browser -> webdriver. Now that agent-browser is removed, @types/ws must be declared directly.
65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
.DS_Store
|
|
.vscode-test/
|
|
.vscode-test-web/
|
|
node_modules/
|
|
dist/
|
|
dist-sourcemaps/
|
|
|
|
# created by simulation
|
|
.simulation
|
|
|
|
# stores wasm and other build files
|
|
.build
|
|
|
|
# created by python scripts
|
|
__pycache__/
|
|
.venv*
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
|
|
# Secret token files
|
|
/.env
|
|
*.token
|
|
|
|
# Test infra
|
|
test/simulation/language/harness/
|
|
|
|
# localization files are generated in the build
|
|
l10n/
|
|
|
|
# vitest --coverage
|
|
coverage/
|
|
|
|
# Base cache database (GC mode)
|
|
test/simulation/cache/_base.sqlite
|
|
|
|
test/aml/out
|
|
|
|
# Ignore files in huksy (else we always end up with files when creating worktrees)
|
|
.husky/_/
|
|
|
|
# claude
|
|
.claude/settings.local.json
|
|
|
|
# VS Code extension debug profile (@playwright/cli automation)
|
|
.vscode-ext-debug/
|
|
|
|
# playwright
|
|
.playwright-mcp/
|
|
|
|
# Chat customizations
|
|
.claude/
|
|
.agents/agents/*.local.md
|
|
.github/agents/*.local.md
|
|
.agents/agents/*.local.agent.md
|
|
.github/agents/*.local.agent.md
|
|
.agents/hooks/*.local.json
|
|
.github/hooks/*.local.json
|
|
.agents/instructions/*.local.instructions.md
|
|
.github/instructions/*.local.instructions.md
|
|
.agents/prompts/*.local.prompt.md
|
|
.github/prompts/*.local.prompt.md
|
|
.agents/skills/.local/
|
|
.github/skills/.local/
|
|
*.vsix
|