
Git Wt
- Updated January 26, 2026
- f4ah6o/skills-bonsai
git-wt is a guide for managing isolated git worktrees so every code-modification task runs in a clean, safe, disposable environment. A developer uses it to keep parallel work streams separated and avoid polluting their main checkout.
Key points
- git-wt worktree workflow
- Isolated, disposable environments
- Safe code-modification setup
Git Wt by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add f4ah6o/skills-bonsai/plugin install git-wt@skills-bonsaiAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | January 26, 2026 |
|---|---|
| Repository | f4ah6o/skills-bonsai ↗ |
What it does
Manage isolated git worktrees with git-wt for clean, safe, disposable environments during code changes.
README.md
Skills BONSAI
A curation repository of skills
Acknowledgement
- skill-check-skill by 電電猫猫
- MIT License
Maintenance
This repository includes a script to check if 3rd-party skills are up-to-date with their upstream repositories.
How it works
The script reads .claude-plugin/marketplace.json and checks plugins that have the x-installed-sha field defined. It compares the locally tracked commit SHA (x-installed-sha) with the latest commit on the upstream repository (derived from author.url).
Usage
Local Check:
Prerequisites: jq and gh (GitHub CLI) must be installed.
./scripts/check_updates.sh
GitHub Actions:
The check runs automatically every Monday via a GitHub Action workflow defined in .github/workflows/check_updates.yml. You can also trigger it manually from the "Actions" tab.
Adding a new tracked skill
To track a new skill, ensure the author.url points to the GitHub repository and add tracking fields to its entry in .claude-plugin/marketplace.json:
{
"name": "your-skill",
"author": {
"name": "author-name",
"url": "https://github.com/owner/repo"
},
...
"x-installed-sha": "CURRENT_SHA_HASH",
"x-installed-date": "YYYY-MM-DDTHH:MM:SSZ"
}