원클릭으로
vscode
VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Local speech-to-text transcription on Apple Silicon macOS. Supports wav directly and other audio formats via ffmpeg.
Interactive browser automation via Chrome DevTools Protocol. Use when you need to interact with web pages, test frontends, or when user interaction with a visible browser is required.
Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
Google Drive CLI for listing, searching, uploading, downloading, and sharing files and folders.
Google Calendar CLI for listing calendars, viewing/creating/updating events, and checking availability.
Gmail CLI for searching emails, reading threads, sending messages, managing drafts, and handling labels/attachments.
| name | vscode |
| description | VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user. |
Tools for integrating with VS Code, primarily for viewing diffs.
VS Code must be installed with the code CLI available in PATH.
Compare two files side by side in VS Code:
code -d <file1> <file2>
Extract the old version to a temp file, then diff:
# Compare with previous commit
git show HEAD~1:path/to/file > /tmp/old && code -d /tmp/old path/to/file
# Compare with specific commit
git show abc123:path/to/file > /tmp/old && code -d /tmp/old path/to/file
# Compare staged version with working tree
git show :path/to/file > /tmp/staged && code -d /tmp/staged path/to/file
git log --oneline -5 -- path/to/file to verify file has history before diffing