case-normalized-sensitive-path-guards

case-normalized-sensitive-path-guards is a skill for Claude Code, Codex from ychampion/cskill-agents. It costs 27 tokens per session (405 once invoked), scanned B, original, MIT.

A path-checking method that normalizes letter case and slash styles before rejecting access to sensitive folders and files.

In plain words
What is it for?
Use it when validating user-supplied paths that might target dotfiles, configuration folders, or other protected locations on macOS and Windows.
Why use it?
It prevents inputs such as mixed capitalization or alternate separators from bypassing security checks on systems that treat those paths as equivalent.

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/case-normalized-sensitive-path-guards
Any agent
npx skills add ychampion/cskill-agents --skill case-normalized-sensitive-path-guards
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 case-normalized-sensitive-path-guards

README.md
[![agentmods](https://agentmods.dev/badge/skills/ychampion/cskill-agents/case-normalized-sensitive-path-guards.svg)](https://agentmods.dev/skills/ychampion/cskill-agents/case-normalized-sensitive-path-guards)
Your own site
<a href="https://agentmods.dev/skills/ychampion/cskill-agents/case-normalized-sensitive-path-guards"><img src="https://agentmods.dev/badge/skills/ychampion/cskill-agents/case-normalized-sensitive-path-guards.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 405 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00027 $0.00405
Opus 5 $0.00014 $0.00202
Sonnet 5 $0.00005 $0.00081
Haiku 4.5 $0.00003 $0.00040

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

Security

Grade B, and why

case-normalized-sensitive-path-guards scanned grade B 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 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Before granting an edit permission to `~/.claude/settings.local.json`, normalize the path, detect that it still ends in `.claude/settings.local.json`, and route it through the strict config-file safety gate.
agents/claude-code/skills/case-normalized-sensitive-path-guards/SKILL.md · 28 lines

What it actually says

SKILL: Case-Normalized Sensitive Path Guards

Domain: sensitive-paths Trigger: Use whenever user input targets .claude, dotfiles, or other dangerous locations on case-insensitive filesystems such as Windows and macOS. Source Pattern: Distilled from reviewed permission, shell-safety, and worktree-management implementations.

Core Method

Normalize every candidate path before comparing it against the sensitive-path denylist. That means lowercasing when the platform is case-insensitive and standardizing separators so \ and / are treated consistently. Compare the normalized path against intact dangerous filenames and directory suffixes, not against the raw user input. This closes bypasses that rely on mixed case or alternate separators to sneak past exact-match checks.

Key Rules

  • Always canonicalize separators (/ vs \) with an OS-aware helper so sensitive paths still match across shells and platforms.
  • Reject normalized paths that end with the dangerous list entries, even if the original case or separator mix was different.
  • Use this normalized result once per decision and reuse it for multiple rules (path scope detection, dangerous file detection, etc.) to avoid double work.
  • Keep the normalization utility deterministic; it should never return a trimmed path that differs semantically from the original.

Example Application

Before granting an edit permission to ~/.claude/settings.local.json, normalize the path, detect that it still ends in .claude/settings.local.json, and route it through the strict config-file safety gate.

Anti-Patterns (What NOT to do)

  • Don’t compare raw paths directly; that misses exploits that only change letter casing or mix separators.
  • Avoid normalizing only once per session — do it every time a new path is evaluated so dynamic paths stay protected.
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 · 28 lines · 27 tokens per session scan B d887ed80b3b1

Subscribe to this mod's changes

case-normalized-sensitive-path-guards 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 405 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). 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-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-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-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