transition-tracing

transition-tracing is a skill for Codex from Eliyce/paqad-ai. It costs 38 tokens per session (566 once invoked), scanned A, original, MIT.

A navigation-tracing tool that records where one screen or surface leads to another, what triggers the move, and which source line proves it happens.

In plain words
What is it for?
It helps map router calls, redirects, followed links, handoffs, and returns, then identify reachable areas and dead ends.
Why use it?
It distinguishes real navigation behavior from links or possible connections that are never actually followed, making the application's route map more trustworthy.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit It helps map router calls, redirects, followed links, handoffs, and returns, then identify reachable areas and dead ends.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliyce/paqad-ai/transition-tracing
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 Eliyce/paqad-ai --skill transition-tracing
Clone the repo
git clone --depth 1 https://github.com/Eliyce/paqad-ai

Made for: 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 transition-tracing

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliyce/paqad-ai/transition-tracing/github.svg)](https://agentmods.dev/skills/eliyce/paqad-ai/transition-tracing)
Your own site
<a href="https://agentmods.dev/skills/eliyce/paqad-ai/transition-tracing"><img src="https://agentmods.dev/badge/skills/eliyce/paqad-ai/transition-tracing/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 transition-tracing

Your own site · 80×15
<a href="https://agentmods.dev/skills/eliyce/paqad-ai/transition-tracing"><img src="https://agentmods.dev/badge/skills/eliyce/paqad-ai/transition-tracing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 566 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.00038 $0.00566
Opus 5 $0.00019 $0.00283
Sonnet 5 $0.00008 $0.00113
Haiku 4.5 $0.00004 $0.00057

Measured 7d ago against content hash 1ecfbf78aadf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

transition-tracing 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 7d 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.

runtime/capabilities/coding/skills/transition-tracing/SKILL.md · 66 lines

What it actually says

What It Does

Adds the edges of the map: the transitions that move a user from one surface to another, each with a trigger and a file:line that proves the navigation actually happens. Runs as a parallel skill with guard-inference over the same modeled surfaces, then hands the graph back to the engine to recompute reachability and dead ends.

Use This When

Use this after modeling, alongside guard-inference. It only adds edges; guards are the other skill's job.

Inputs

  • The modeled surfaces (ids, kinds, evidence).
  • The navigation sinks in the code: router calls, redirects, links that are actually followed, handoffs, and returns.
  • Read references/transition-evidence.md before recording an edge.

Procedure

The graph analysis is the engine's; your job is to propose evidenced edges for it to analyze.

  1. For each modeled surface, find where its code navigates: a to target, a trigger, and the file:line proving navigation occurs (a router push, a redirect, a followed link).
  2. Record each transition with to, trigger, evidence, and confidence; leave guards to guard-inference.
  3. Re-run paqad-ai sitemap run so its graph analysis recomputes reachability, dead ends, and dangling targets over your edges.

Output Contract

  • A JSON object { transitions: [{ from, to, trigger, evidence, confidence }] }.
  • Every transition carries a resolving file:line and a named trigger.
  • Every to references an existing modeled surface id.

Escalate / Stop Conditions

  • Do not record a transition because a link or route string exists — only when evidence shows the navigation is actually performed. A stale or unreachable link is not an edge.
  • Flag a to that references no known surface as a dangling target for the engine, do not invent the missing surface.
  • Keep confidence honest: an inferred edge with weak evidence is low, not high.

Resources

  • references/transition-evidence.md
  • agents/openai.yaml
Files

What ships with it

2 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. 7d ago First seen · 66 lines · 38 tokens per session scan A 1ecfbf78aadf

Subscribe to this mod's changes

transition-tracing is a skill published in the GitHub repository Eliyce/paqad-ai (8 stars, last pushed today), licensed MIT. It adds 38 tokens to every session and 566 once invoked, about $0.0002 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

session-investigator

Investigate fast-agent session and history files to diagnose issues. Use when a session ended unexpectedly, when debugging tool loops, when correlating sub-agent traces with main sessions, or when analyzing conversation flow and timing. Covers session.json metadata, history JSON format, message structure, tool…

evalstate/fast-agent · 68 tokens

G2 Legend Expert

Expert skill for G2 legend development - provides comprehensive knowledge about legend rendering implementation, component architecture, layout algorithms, and interaction handling. Use when implementing, customizing, or debugging legend functionality in G2 visualizations.

foryourhealth111-pixel/Vibe-Skills · 47 tokens

canvas-webapp

Render a React/Vite (or any bundled) web app on the pi-dashboard canvas, which loads loopback URLs in a sandboxed opaque-origin iframe. Use when a canvas(target:{kind:"url"|"server"}) target shows up blank white, an empty surface, or a /live/ 500 ECONNREFUSED. Covers why Vite dev servers and non-CORS static servers…

BlackBeltTechnology/pi-agent-dashboard · 99 tokens

angular

Use when building, refactoring, or debugging Angular (v20/21+): standalone components, signals, zoneless change detection, @if/@for/@defer control flow, inject() DI, resource()/httpResource(), RxJS interop, NgRx SignalStore, ng CLI. NOT React (that is react), NOT Next.js (that is nextjs), NOT a TypeScript language…

ericrisco/rsc-harness · 89 tokens

auto-fix

A bug-fixing workflow that first reproduces a problem with a test, then applies the smallest code change needed. It also checks the related code path and runs tests afterward.

Insajin/autopus-adk · 19 tokens

frontend-verify

A frontend user-experience checking workflow that reviews interface changes through several analysis and visual-testing stages. It examines affected pages, design references, and screenshots when relevant.

Insajin/autopus-adk · 19 tokens