vscode/SKILL.md
VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user.
npx skillsauth add badlogic/pi-skills vscodeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 diffingcontent-media
Fetch transcripts from YouTube videos for summarization and analysis.
development
Local speech-to-text transcription on Apple Silicon macOS. Supports wav directly and other audio formats via ffmpeg.
tools
Gmail CLI for searching emails, reading threads, sending messages, managing drafts, and handling labels/attachments.
tools
Google Drive CLI for listing, searching, uploading, downloading, and sharing files and folders.