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 ychampion/cskill-agents --skill fast-worktree-reuse-with-head-pointer-checksgit clone --depth 1 https://github.com/ychampion/cskill-agentsWrote 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/ychampion/cskill-agents/fast-worktree-reuse-with-head-pointer-checks)<a href="https://agentmods.dev/skills/ychampion/cskill-agents/fast-worktree-reuse-with-head-pointer-checks"><img src="https://agentmods.dev/badge/skills/ychampion/cskill-agents/fast-worktree-reuse-with-head-pointer-checks/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/ychampion/cskill-agents/fast-worktree-reuse-with-head-pointer-checks"><img src="https://agentmods.dev/badge/skills/ychampion/cskill-agents/fast-worktree-reuse-with-head-pointer-checks.svg" alt="Reviewed on agentmods" width="80" 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.00027 | $0.00470 |
| Opus 5 | $0.00014 | $0.00235 |
| Sonnet 5 | $0.00005 | $0.00094 |
| Haiku 4.5 | $0.00003 | $0.00047 |
Grade A, and why
fast-worktree-reuse-with-head-pointer-checks 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 10d 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
SKILL: Fast Worktree Reuse With Head Pointer Checks
Domain: git-worktree
Trigger: Apply when the user asks to enter or resume a named worktree and you want to avoid redundant git fetch/git worktree add calls if the worktree already exists.
Source Pattern: Distilled from reviewed permission, shell-safety, and worktree-management implementations.
Core Method
Before reaching for git worktree add, compute the worktree path and read its git head pointer directly (no subprocess). If the file exists and contains a SHA, treat the worktree as already created: return the path/branch, skip fetch, and let the CLI proceed immediately. Only when the HEAD file is missing do you fetch and git worktree add, knowing the directory is missing or corrupted.
Key Rules
- Read claude worktrees <slug head with read worktree head sha before any git fetch/add so the fast-path returns instantly when the worktree already exists.
- When the fast-path finds a head, skip
mkdir,fetch, and hook execution to minimize CLIs waiting on network calls. - Only run the fetch/add sequence when the head pointer is absent, ensuring deterministic worktree creation timing.
- Capture the computed worktree branch, head commit, and
existedflag so calling code can log a clear message.
Example Application
For a “worktree resume” command, call this skill each time by deriving the slug, invoking the head-read fast-path, and only running git fetch when head data is missing, so most resumes finish in the same tick regardless of external network speed.
Anti-Patterns (What NOT to do)
- Don’t always fetch/padded-add even when the directory already exists; that doubles command latency and can fail if credentials are missing.
- Avoid relying on
git worktree listparsing alone—direct HEAD reading is cheaper and doesn’t require running git. - Don’t ignore the
existedboolean; downstream message/choices should reflect whether the worktree was reused or freshly created.
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.
- 10d ago First seen · 29 lines · 27 tokens per session scan A 33b5847e5872
fast-worktree-reuse-with-head-pointer-checks is a skill published in the GitHub repository ychampion/cskill-agents (36 stars, last pushed 5mo ago), licensed MIT. It adds 27 tokens to every session and 470 once invoked, about $0.0001 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
repo-hygiene
Use when auditing repo hygiene in any codebase — file layout, git history, config sprawl, ignore contracts, open-source readiness. Assess by default, fix on request; treats the repository as a product whose users are contributors.
agentplane-release-and-packaging-operator
Use when preparing, validating, publishing, auditing, or recovering an Agentplane release, especially package build ordering, version parity, npm/GitHub/GHCR/external distribution publication, public install smoke tests, hosted publish evidence, or release CI failures.
agentplane-task-closure-recovery
Use when Agentplane task completion, direct finish, branchpr integration, hosted-close, close-tail PRs, PR metadata, dirty task artifacts, or remote branch divergence need diagnosis or recovery.
agentplane
Use when a repository uses AgentPlane or the user wants a governed git-native workflow for planning, task execution, verification, and closure.
genie-orca-work
Coordinator loop for an approved wish on Orca — one Run per wish, one Task per group, supervised workers in child worktrees, review→fix loops, Linear written only at gate transitions. genie v6 'corpo leve': genie owns the documents and this protocol; Orca owns dispatch state; Linear owns status; brain owns preferences.
grape
Use Grape MCP for Codex context continuity in coding repositories. Use when a task needs repeated-turn context, omitted context restore, stale-context checks, invalidation checks, or safe continuity across branch and dirty-worktree changes.