new-path-parity

new-path-parity is a skill for Claude Code from CrumbtrailDev/crumbtrail-cli. It costs 99 tokens per session (1,991 once invoked), scanned A, original, MIT.

A guide for finding behaviour missing from a rewritten version of a feature. It compares a new screen, route, renderer, or engine with the older path that handled the same job.

In plain words
What is it for?
Use it to investigate differences between old and new screens, routes, releases, renderers, editors, or other replacement implementations.
Why use it?
It helps explain why the same data and steps work in one version but fail or lose an option in another.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the crumbtrail-skills plugin — 13 skills shipped together

Good fit Use it to investigate differences between old and new screens, routes, releases, renderers, editors, or other replacement implementations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crumbtraildev/crumbtrail-cli/new-path-parity
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 CrumbtrailDev/crumbtrail-cli --skill new-path-parity
Clone the repo
git clone --depth 1 https://github.com/CrumbtrailDev/crumbtrail-cli

Made for: Claude Code.

Or install crumbtrail-skills, the plugin that ships this one along with the rest of its 13 skills.

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 new-path-parity

README.md
[![agentmods](https://agentmods.dev/badge/skills/crumbtraildev/crumbtrail-cli/new-path-parity.svg)](https://agentmods.dev/skills/crumbtraildev/crumbtrail-cli/new-path-parity)
Your own site
<a href="https://agentmods.dev/skills/crumbtraildev/crumbtrail-cli/new-path-parity"><img src="https://agentmods.dev/badge/skills/crumbtraildev/crumbtrail-cli/new-path-parity.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,991 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.00099 $0.01991
Opus 5 $0.00049 $0.00996
Sonnet 5 $0.00020 $0.00398
Haiku 4.5 $0.00010 $0.00199

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

Security

Grade A, and why

new-path-parity 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 2d 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.

plugins/crumbtrail-skills/skills/new-path-parity/SKILL.md · 175 lines

How it starts

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

The new path parity gap

A surface gets reimplemented: a second renderer, a new route, a rewritten editor, a v2 engine behind the same button. The new implementation covers the common cases and quietly drops behaviours the old one had. Parity patches then arrive one property at a time, and the class refills every time a feature lands on the old path only.

The triage question for this archetype is unusual. Before you ask what the bug is, ask which path served the failing action. Everything below is about answering that from a recording.

Symptom

The reporter says the feature works one way and not another: on the old screen but not the new one, on the previous release but not this one, in the classic view but not the rebuilt view. The steps are the same. The data is the same. Only the surface changed.

A second common phrasing: a property the reporter relies on is simply not there any more. No error, no failure, just an option that stopped being honoured.

What Crumbtrail can see

Crumbtrail has no concept of a code path. It records one browsing session at a time and cannot tell you which module, component tree or engine version handled a request. Nothing in a recording says v1 or v2. If a skill told you otherwise it would be wrong.

What a recording does carry, and what makes the comparison possible:

  • Navigation events with the exact URL and the transition that produced it, so two runs can be aligned by route.
  • Every request and response with method, URL, status, duration and body. Bodies are summarized when large and fields are replaced with a redaction marker when the policy considers them sensitive, so you can rely on the presence and shape of a field more than on its value.
  • An environment snapshot taken in the browser: user agent, browser name and version, operating system, viewport, locale and time zone.
  • Backend request start, end and error records, but only where the backend SDK is installed.
  • Database row changes with the table, the primary key, the before and after column values and a call site file and line, but only where the database adapter is installed.
  • listSessions accepts release and build filters, which is the one place a recording carries a version label at all, and only when the app supplied one.

Read the full file on GitHub · 175 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. 2d ago Changed 5d6d04b630c6
  2. 6d ago First seen · 175 lines · 99 tokens per session scan A ca59bcd51997

Subscribe to this mod's changes

new-path-parity is a skill published in the GitHub repository CrumbtrailDev/crumbtrail-cli (0 stars, last pushed yesterday), licensed MIT. It adds 99 tokens to every session and 1,991 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

cce-routing

Use Cursor Bridge's read-only cursorcontextengine for unfamiliar project understanding when the exact code location is unknown or the task requires tracing behavior, symbols, callers and callees, data flow, registrations, interface implementations, ownership boundaries, or cross-module relationships. Trigger for…

Vanyangyang/cursor-bridge · 168 tokens

gh-fix-ci

Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use gh to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.

rojim666/SztuCode · 72 tokens

sentry

Query Sentry organizations, projects, and unresolved issues/errors via the Sentry API. Use when the user asks about Sentry errors, issues, or projects.

intentic/intentic · 35 tokens

signoz

Query observability (services, traces, logs, metrics) from a SigNoz instance via its API. Use when the user asks about app performance, errors, latency, or telemetry in SigNoz.

intentic/intentic · 45 tokens

rel-ai-debugging

Use when repository behavior is reproducibly wrong and needs causal diagnosis or repair, including errors, broken tests, crashes, regressions, failed contracts, or incorrect runtime behavior. Do not use for general audits or final verification when no active defect is being diagnosed.

Kyne0328/rel-ai-local-coding-agent · 56 tokens

rel-ai-investigation

Use for read-only repository questions that need evidence, including architecture audits, feasibility studies, dependency or caller tracing, impact analysis, implementation-status checks, and proof of how something works. Do not use to implement fixes or for final completion or release verification of changes already…

Kyne0328/rel-ai-local-coding-agent · 59 tokens