canonical-worktree-path-normalization

canonical-worktree-path-normalization is a skill for Claude Code, Codex from ychampion/cskill-agents. It costs 26 tokens per session (409 once invoked), scanned A, original, MIT.

A coding-agent skill for resolving project-relative paths against a Git repository’s canonical checkout root before saving them in shared state. A Git worktree is an additional checkout of the same repository.

In plain words
What is it for?
Use it when persisting repository paths in shared or user-wide settings; keep absolute paths unchanged and normalize only relative project paths.
Why use it?
It prevents different worktrees from storing conflicting paths for the same project and avoids references to temporary checkouts that no longer exist.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/ychampion/cskill-agents/canonical-worktree-path-normalization
Any agent
npx skills add ychampion/cskill-agents --skill canonical-worktree-path-normalization
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 canonical-worktree-path-normalization

README.md
[![agentmods](https://agentmods.dev/badge/skills/ychampion/cskill-agents/canonical-worktree-path-normalization.svg)](https://agentmods.dev/skills/ychampion/cskill-agents/canonical-worktree-path-normalization)
Your own site
<a href="https://agentmods.dev/skills/ychampion/cskill-agents/canonical-worktree-path-normalization"><img src="https://agentmods.dev/badge/skills/ychampion/cskill-agents/canonical-worktree-path-normalization.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 409 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00026 $0.00409
Opus 5 $0.00013 $0.00204
Sonnet 5 $0.00005 $0.00082
Haiku 4.5 $0.00003 $0.00041

Measured 5d ago against content hash ec060b8d8f84, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

canonical-worktree-path-normalization 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 5d 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/canonical-worktree-path-normalization/SKILL.md · 29 lines

How it starts

The opening of the file, as written. The whole thing — 29 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SKILL: Canonical Worktree Path Normalization

Domain: git-worktree Trigger: Use when repo-relative paths are written into shared or user-global state and the same project may be opened from multiple worktrees. Source Pattern: Distilled from reviewed permission, shell-safety, and worktree-management implementations.

Core Method

Normalize relative paths against the repository’s canonical root rather than the current worktree directory before persisting them into shared state. This prevents each worktree session from rewriting the same logical source to a different absolute path, and it avoids leaving dead install locations behind when a temporary worktree disappears. Keep the normalization local to the persistence boundary so upstream callers can continue using project-relative configuration naturally.

Key Rules

  • Resolve relative project paths at the point where they are compared against or written into shared state.
  • Prefer the canonical Git root over the active worktree path whenever the stored state outlives a single checkout.
  • Preserve already-absolute paths as-is; normalization is for relative project references only.
  • Use the same normalized path for both comparison and write decisions so diff logic stays stable.
  • Treat this as a stability contract for shared metadata, not merely a convenience for path formatting.

Example Application

If plugin sources are declared as marketplace inside repository settings but stored in a global config file as absolute paths, resolve them against the main checkout root. Opening the repo from a feature worktree then compares equal to the existing entry instead of churning the stored path on every session.

Anti-Patterns (What NOT to do)

  • Do not persist worktree-specific absolute paths into user-global registries when the logical source belongs to the repo as a whole.
  • Do not normalize only on writes but compare against raw relative paths on reads; the system will oscillate between equivalent representations.

Read the full file on GitHub · 29 lines

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. 5d ago First seen · 29 lines · 26 tokens per session scan A ec060b8d8f84

Subscribe to this mod's changes

canonical-worktree-path-normalization is a skill published in the GitHub repository ychampion/cskill-agents (36 stars, last pushed 5mo ago), licensed MIT. It adds 26 tokens to every session and 409 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.

Related

Other skills, from other repositories

rpce-merge-pr-batch

Safely process an explicitly ordered batch of RepoPrompt CE pull requests end to end: preserve a dirty original checkout, isolate each PR in an external disposable worktree, use window- and context-scoped CE rpce-cli Agent Mode review, repair and validate, require exact-head hosted checks, merge with merge commits…

repoprompt/repoprompt-ce · 128 tokens

rpce-test-quality

Select, design, review, consolidate, or remove RepoPrompt CE tests, diagnostic harnesses, and smoke checks by regression value and maintenance cost. Use when the task centers on test, diagnostic, or smoke coverage, including whether a single regression test is worth committing. Do not use for feature or bug-fix work…

repoprompt/repoprompt-ce · 83 tokens

rpce-contribution-check

Validate RepoPrompt CE contributions before committing or pushing. Use whenever an agent is about to create a commit, push the current branch, rewrite history, delete a branch or fork, or change GitHub-visible repository state. Enforces staged-index and outgoing-range secret scanning, repository guardrails, clean push…

repoprompt/repoprompt-ce · 90 tokens

rpce-release

Build or publish RepoPrompt CE release artifacts using the repository release scripts and GitHub workflows.

repoprompt/repoprompt-ce · 22 tokens

rpce-maintainer-guidance

Apply evidence-led RepoPrompt CE maintainership principles distilled from documented project guidance. Use when planning, scoping, implementing, reviewing, triaging, or sequencing RPCE changes; deciding whether work should be an investigation, issue, PR, or follow-up; checking compatibility, migrations, performance…

repoprompt/repoprompt-ce · 87 tokens

rpce-swift-6-concurrency-migration

Plan, inventory, stage, execute, or review RepoPrompt CE's project-wide migration to Swift 6.2 concurrency checking and Swift 6 language mode. Use when auditing packages, targets, settings, diagnostics, unsafe escape hatches, migration phases, blockers, or validation evidence across the root and provider packages. Do…

repoprompt/repoprompt-ce · 90 tokens