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 skills add shabaraba/vibing.nvim --skill vibing-worktree-rungit clone --depth 1 https://github.com/shabaraba/vibing.nvimWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/shabaraba/vibing.nvim/vibing-worktree-run)<a href="https://agentmods.dev/skills/shabaraba/vibing.nvim/vibing-worktree-run"><img src="https://agentmods.dev/badge/skills/shabaraba/vibing.nvim/vibing-worktree-run.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00089 | $0.00738 |
| Opus 5 | $0.00044 | $0.00369 |
| Sonnet 5 | $0.00018 | $0.00148 |
| Haiku 4.5 | $0.00009 | $0.00074 |
Grade A, and why
vibing-worktree-run scanned grade A with 0 findings 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 8d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
vibing-worktree-run
Merging or rebasing is out of scope here, and so is judging whether the result is correct — the goal is only to get a worktree branch's code into a state where it can actually be executed, temporarily, without touching git history. The right technique depends on whether this project's tooling requires the repo to live at one fixed absolute path; investigate that once per project and remember the answer instead of re-deriving it every time.
- Read
.vibing/system-prompt.mdat the git root (vibing.nvim auto-creates it, empty, the first time a project chat is opened — it's gitignored and local-only, so don't expect it ingit statusor try to commit it). Look for a## Worktree run methodsection.- If present: follow the documented method exactly and skip straight to running it — do not re-investigate.
- If absent (or the file doesn't exist yet): continue to step 2.
- Investigate what this project actually needs, cheapest option first:
- Default — no path-swap needed. A worktree is a fully independent, working checkout. Try running the project's normal command (test suite, dev server, build, CLI invocation, whatever the project normally uses) directly from inside the worktree directory. This is sufficient for the large majority of projects.
- Fixed-path dependency. Only reach for this if 2.1 provably doesn't work because some
tool hardcodes an absolute path to the repo root (an editor plugin manager's
dir =config, a daemon watching one fixed path, a docker-compose bind mount, etc.). Decide between two techniques based on whether that tool resolves symlinks to their real path:- Symlink swap (fast, non-destructive; silently wrong for tools that resolve to the canonical/real path): make the fixed path a symlink once, repoint it at the worktree to run, repoint it back at the main checkout when done.
- Checkout swap (slower, but always correct regardless of tool internals): temporarily
git worktree remove <path>(only when clean — never--force),git checkout <branch>in the main directory, run it,git checkoutback to the original branch, thengit worktree add <path> <branch>to restore the worktree. When genuinely unsure which technique the project's tooling needs, ask the user rather than guessing.
- Record the decided method under a
## Worktree run methodheading in.vibing/system-prompt.md(Editto append, orWriteif the file is still empty) so future turns and sessions reuse it without re-investigating. Keep the note short and concrete — the actual command(s) to run, not prose about the investigation that produced it.
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.
- 8d ago First seen · 42 lines · 89 tokens per session scan A ad3749eecbd8
vibing-worktree-run is a skill published in the GitHub repository shabaraba/vibing.nvim (13 stars, last pushed today), licensed MIT. It adds 89 tokens to every session and 738 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
security-pipeline
Use when security verification is needed - pre-commit security checks, vulnerability scanning, STRIDE threat analysis. Integrates with /handoff-verify --security and /commit-push-pr. CWE Top 25 based.
pr-triage
4-phase PR backlog management with audit, deep code review, validated comments, and optional worktree setup. Use when triaging pull requests, catching up on pending code reviews, or managing a backlog of open PRs. Args: 'all' to review all, PR numbers to focus (e.g. '42 57'), 'en'/'fr' for language, no arg = audit…
land-and-deploy
Merge PR, wait for CI, verify deploy, run canary. The complete landing pipeline.
git-ai-archaeology
Analyze AI config evolution in a git repo. Use when mapping AI adoption history, finding when configs were first introduced, charting commit velocity by month, or identifying maturity phases in a project's AI tooling.
review-pr
Perform a comprehensive code review of a pull request.
git-worktree-clean
Clean up stale git worktrees with merged branch detection and disk usage report.