safe-worktree-slug-validation

safe-worktree-slug-validation is a skill for Claude Code, Codex from ychampion/cskill-agents. It costs 23 tokens per session (419 once invoked), scanned A, original, MIT.

A validation method for Git worktree names, where a worktree is a separate working directory linked to a repository. It rejects unsafe path parts and invalid characters before Git commands run.

In plain words
What is it for?
It is for command-line tools that create or enter Git worktrees from user-supplied slugs.
Why use it?
It prevents user-provided names from escaping the managed workspace or creating unsafe paths.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for command-line tools that create or enter Git worktrees from user-supplied slugs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ychampion/cskill-agents/safe-worktree-slug-validation
Install

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.

Any agent
npx skills add ychampion/cskill-agents --skill safe-worktree-slug-validation
Clone the repo
git clone --depth 1 https://github.com/ychampion/cskill-agents

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for safe-worktree-slug-validation

README.md
[![agentmods](https://agentmods.dev/badge/skills/ychampion/cskill-agents/safe-worktree-slug-validation.svg)](https://agentmods.dev/skills/ychampion/cskill-agents/safe-worktree-slug-validation)
Your own site
<a href="https://agentmods.dev/skills/ychampion/cskill-agents/safe-worktree-slug-validation"><img src="https://agentmods.dev/badge/skills/ychampion/cskill-agents/safe-worktree-slug-validation.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 419 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.00419
Opus 5 $0.00012 $0.00210
Sonnet 5 $0.00005 $0.00084
Haiku 4.5 $0.00002 $0.00042

Measured 4d ago against content hash 31c4c4f56938, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

safe-worktree-slug-validation 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 4d 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.

agents/claude-code/skills/safe-worktree-slug-validation/SKILL.md · 29 lines

What it actually says

SKILL: Safe Worktree Slug Validation

Domain: git-worktree Trigger: Apply this when accepting user-provided prefixes for enter worktree and you need to guarantee no path traversal or invalid chars slip into the worktree directory. Source Pattern: Distilled from reviewed permission, shell-safety, and worktree-management implementations.

Core Method

Split a slug on /, reject segments that are empty, . or .., or contain characters outside a za z0 9, and enforce a maximum combined length before joining the cleaned segments into a deterministic branch name and path. Perform this validation synchronously before invoking any git commands so the CLI never creates directories outside claude worktrees.

Key Rules

  • Validate each /-separated segment independently so user evil and similar mashups fail early.
  • Enforce a total length cap (e.g., 64 chars) before git worktree add to prevent excessively long refs or paths.
  • Reject slugs with leading/trailing slashes or repeated .. segments even when a normalization would neutralize them.
  • Run this check before any git fetch, mkdir, or hook execution to avoid partial side effects.

Example Application

Any agent producing a worktree name for a release hotfix can reuse this skill: call the validator on the proposed slug, surface a concise error message if it fails, and refuse to call git worktree add until the slug is safe.

Anti-Patterns (What NOT to do)

  • Do not rely on git worktree add to detect traversal; it may silently create directories in unexpected locations.
  • Do not treat slugs as a single string (e.g., foo bar) without splitting, because multi-segment checks are necessary.
  • Avoid waiting until after mkdir or config changes—the validation must run before any side effects.
Changes

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.

  1. 4d ago First seen · 29 lines · 23 tokens per session scan A 31c4c4f56938

Subscribe to this mod's changes

safe-worktree-slug-validation is a skill published in the GitHub repository ychampion/cskill-agents (36 stars, last pushed 5mo ago), licensed MIT. It adds 23 tokens to every session and 419 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-09-03.

Related

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.

automagik-dev/genie · 51 tokens

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.

basilisk-labs/agentplane · 60 tokens

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.

basilisk-labs/agentplane · 46 tokens

agentplane

Use when a repository uses AgentPlane or the user wants a governed git-native workflow for planning, task execution, verification, and closure.

basilisk-labs/agentplane · 30 tokens

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.

automagik-dev/genie · 75 tokens

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.

gael55x/Grape · 48 tokens