Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/imran31415/kube-coder/worktreenpx skills add imran31415/kube-coder --skill worktreegit clone --depth 1 https://github.com/imran31415/kube-coderWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00070 | $0.01537 |
| Opus 5 | $0.00035 | $0.00768 |
| Sonnet 5 | $0.00014 | $0.00307 |
| Haiku 4.5 | $0.00007 | $0.00154 |
Grade C, and why
worktree scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
`.git/worktrees`. Don't `rm -rf` a worktree dir by hand — use `rm` (which runs How it starts
The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Per-session git worktree (Phase 0)
kube-coder isolates sessions at the terminal level (each task gets its own
tmux session + ~/.claude-tasks/<id>/) but everything still runs in the same
/home/dev filesystem. So two sessions on the same repo collide three ways:
- git tree — branch/checkout/index thrash, a dirty working tree
- build output — both write
./dist,./build; Kaniko reads its context from the shared path - dev-server ports —
EADDRINUSEon:3000(ports are per-pod, not per-session)
This skill fixes all three for the current session with no infra change: it
gives you a dedicated git worktree (own checkout + branch) at a path outside
the repo, and leases a free port for any server you start. Worktrees share the
main clone's object store, so they're cheap on disk — only working files are
duplicated.
The helper is worktree.sh next to this file. Invoke it as
bash "$CLAUDE_SKILL_DIR/worktree.sh" … (or with its absolute path under
/home/dev/kube-coder/.claude/skills/worktree/).
Start an isolated session (the common path)
Run from inside the repo you want to work on (cd there first). $ARGUMENTS
is an optional human slug; if omitted it derives one from the current task id
(KC_TASK_ID) or a random token, so it's always unique.
WT=/home/dev/kube-coder/.claude/skills/worktree/worktree.sh
eval "$(bash "$WT" new "$ARGUMENTS")" # creates worktree+branch+port, sets KC_WT / PORT
cd "$KC_WT" # <-- this cd PERSISTS across your Bash calls
After this, do all work for the change from $KC_WT. The human summary
(path / branch / port / preview URL) is printed to stderr — note the port,
because exported env vars do not survive between separate Bash tool calls (the
cd does). The worktree also records everything in $KC_WT/.kc-worktree.json,
so you can re-read the port later:
jq -r .port "$KC_WT/.kc-worktree.json" # or read .branch / .path
What you get
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 119 lines · 70 tokens per session scan C 27b021fd71ea
worktree is a skill published in the GitHub repository imran31415/kube-coder (349 stars, last pushed 8d ago), licensed MIT. It adds 70 tokens to every session and 1,537 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
nemoclaw-contributor-implement-issue
Implement an accepted NemoClaw GitHub issue in the current checkout. Use when a user asks to pick up an issue for implementation, implement or fix a named issue, or add the issue's tests. Confirm accepted scope, deliver the smallest independently valuable capability slice, and record validation and remaining gates…
amazon-bestseller-listing
Amazon Best Sellers listing scraper: extract product cards from any Amazon Best Sellers (zgbs) or /gp/bestsellers/ category page — returns rank (position on chart), asin, title, url, image, imageAlt, price, stars, reviewCount, ratingRaw per item, plus category metadata (categoryName, categoryFullName, categoryUrl) and…
amazon-reviews-api-skill
This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…
amazon-competitor-analyzer
Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.
cabloy-worktree-environment
This skill must be used only when the user explicitly invokes /cabloy-worktree-environment or explicitly asks to perform the named Cabloy worktree-environment setup. It prepares a confirmation-gated, worktree-local Vona and Zova runtime environment for a linked Cabloy Basic or Cabloy Start Git worktree using Git…
shopify-hydrogen
Hydrogen storefront implementation cookbooks. Some of the available recipes are: B2B Commerce, Bundles, Combined Listings, Custom Cart Method, Dynamic Content with Metaobjects, Express Server, Google Tag Manager Integration, Infinite Scroll, Legacy Customer Account Flow, Markets, Partytown + Google Tag Manager…