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.
npx skills add Eliyce/paqad-ai --skill transition-tracinggit clone --depth 1 https://github.com/Eliyce/paqad-aiWrote 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.
[](https://agentmods.dev/skills/eliyce/paqad-ai/transition-tracing)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.mdbefore recording an edge.
Procedure
The graph analysis is the engine's; your job is to propose evidenced edges for it to analyze.
- For each modeled surface, find where its code navigates: a
totarget, atrigger, and thefile:lineproving navigation occurs (a router push, a redirect, a followed link). - Record each transition with
to,trigger, evidence, and confidence; leave guards toguard-inference. - Re-run
paqad-ai sitemap runso 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:lineand a named trigger. - Every
toreferences 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
tothat 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, nothigh.
Resources
references/transition-evidence.mdagents/openai.yaml
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.
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.
- 7d ago First seen · 66 lines · 38 tokens per session scan A 1ecfbf78aadf
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.
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…
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.
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…
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…
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.
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.