Agent skill
vscode-extensions-git-workflow-integration
Sub-skill of vscode-extensions: Git Workflow Integration (+1).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/operations/devtools/vscode-extensions/git-workflow-integration
SKILL.md
Git Workflow Integration (+1)
Git Workflow Integration
// settings.json - Git integration
{
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.postCommitCommand": "push",
"git.fetchOnPull": true,
"git.pruneOnFetch": true,
// GitLens settings
"gitlens.views.repositories.branches.layout": "tree",
"gitlens.views.commits.files.layout": "tree",
"gitlens.codeLens.enabled": true,
"gitlens.codeLens.recentChange.enabled": true,
"gitlens.currentLine.enabled": true,
"gitlens.hovers.currentLine.over": "line",
"gitlens.blame.format": "${author|10} ${date}",
"gitlens.blame.heatmap.enabled": true
}
Remote Development
// settings.json - Remote development
{
// SSH
"remote.SSH.remotePlatform": {
"server1": "linux",
"server2": "linux"
},
"remote.SSH.defaultExtensions": [
"ms-python.python",
"ms-python.vscode-pylance"
],
// Containers
"dev.containers.defaultExtensions": [
"ms-python.python",
"eamodio.gitlens"
],
// WSL
"remote.WSL.fileWatcher.polling": true
}
// .devcontainer/devcontainer.json
{
"name": "Python Dev",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python"
}
}
},
"postCreateCommand": "pip install -e '.[dev]'",
"forwardPorts": [8000]
}
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?