enhance-web-instant-nav

enhance-web-instant-nav is a skill for Claude Code from kensaurus/cursor-kenji. It costs 80 tokens per session (1,709 once invoked), scanned A, original, MIT.

A web-navigation optimization workflow for making later page visits feel faster with browser preloading, prerendering, page transitions, back-forward cache, and early server hints.

In plain words
What is it for?
It is for selecting likely next pages to prefetch or prerender, protecting pages with side effects or private state, and measuring whether navigation improves.
Why use it?
It helps reduce the delay after a user follows an in-site link and addresses cases where the back button reloads a page.

Skill for Claude Code

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

Part of the cursor-kenji plugin — 121 skills, 54 commands, 6 agents, 3 MCP servers shipped together

Good fit It is for selecting likely next pages to prefetch or prerender, protecting pages with side effects or private state, and measuring whether navigation improves.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kensaurus/cursor-kenji/enhance-web-instant-nav
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 kensaurus/cursor-kenji --skill enhance-web-instant-nav
Clone the repo
git clone --depth 1 https://github.com/kensaurus/cursor-kenji

Made for: Claude Code.

Or install cursor-kenji, the plugin that ships this one along with the rest of its 121 skills, 54 commands, 6 agents, 3 MCP servers.

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 enhance-web-instant-nav

README.md
[![agentmods](https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/enhance-web-instant-nav/github.svg)](https://agentmods.dev/skills/kensaurus/cursor-kenji/enhance-web-instant-nav)
Your own site
<a href="https://agentmods.dev/skills/kensaurus/cursor-kenji/enhance-web-instant-nav"><img src="https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/enhance-web-instant-nav/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.

agentmods 80×15 button for enhance-web-instant-nav

Your own site · 80×15
<a href="https://agentmods.dev/skills/kensaurus/cursor-kenji/enhance-web-instant-nav"><img src="https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/enhance-web-instant-nav.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,709 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 54
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00080 $0.01709
Opus 5 $0.00040 $0.00855
Sonnet 5 $0.00016 $0.00342
Haiku 4.5 $0.00008 $0.00171

Measured 6d ago against content hash 0f0c40a02d68, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

enhance-web-instant-nav scanned grade A 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 6d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- `curl -sv <url> 2>&1 | grep "< HTTP"` — is a `103` emitted today?
skills/enhance-web-instant-nav/SKILL.md · 139 lines

How it starts

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

Surface router: /uiux. You are here: enhance-web-instant-nav.

enhance-web-instant-nav — Instant Navigations

Degree of freedom: MIXED. Which pages to speculate [HIGH freedom]; the exclusion list, Sec-Purpose handling, and re-measure [LOW freedom — run exactly].

Applies to MPAs and Next.js App Router (server-rendered routes). Pure SPA routing → use the framework's prefetch API; Speculation Rules are per-document.

How to reason

  1. Observe — quote 2nd-page LCP p75, bfcache test result, and the top 5 next-click paths
  2. Rank — probability × page cost. Prefetch broadly; prerender only ≥ ~50% likely next pages
  3. Guard — list every URL with GET side effects or per-user state; exclude or downgrade to prefetch
  4. Ship — rules + server guard + analytics guard in the same PR
  5. Re-measure — if 2nd-page LCP didn't drop, the rule isn't firing (DevTools → Application → Speculative loads)

Worked example

Observe: blog; first-page LCP 1.9 s, next-article LCP 2.8 s; back button reloads (unload in analytics). Rank: "next article" 61% of sessions → prerender moderate; category links → prefetch moderate. Guard: /logout, /account/*, ?utm_* excluded; server returns early on Sec-Purpose. Ship: rules block + pagehide swap + document.prerendering guard in the GA loader. Re-measure: next-article LCP 0.3 s (activation), bfcache green, no analytics double-count.

Safety contract [LOW freedom — run exactly]

  • Never prerender: logout, cart/checkout, payment, auth, anything whose GET mutates state
  • Server: if Sec-Purpose contains prefetch, skip counters/side effects; return normal HTML
  • Client: analytics, ads, consent, A/B run only after document.prerendering === false or on prerenderingchange
  • Never add unload listeners; never set Cache-Control: no-store on HTML unless legally required
  • Cross-origin / cross-site prerender is not attempted

Phase 1 — Measure [LOW freedom — run exactly]

Read the full file on GitHub · 139 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 139 lines · 80 tokens per session scan A 0f0c40a02d68

Subscribe to this mod's changes

enhance-web-instant-nav is a skill published in the GitHub repository kensaurus/cursor-kenji (9 stars, last pushed yesterday), licensed MIT. It adds 80 tokens to every session and 1,709 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.