Shareable Workflow Recipes
Chain tools together and share the link. The link only encodes which tools, in what order — never the data you type into them. Anyone who opens it starts with a blank slate at each step.
Ready-made workflows
How it works
Pick tools in the order you'd use them and click Add Step. The recipe builds a link like cryonel.com/recipe#s=jwt-decoder,json-tree-viewer — everything after # is a hash fragment, which browsers never send to any server. Starting a recipe stores its active step and completed tool identifiers in this tab's sessionStorage. Compatible text output is handed to the next tool; otherwise the next step explains that manual input is required.
Frequently Asked Questions
Does the link include my data?
No. Only tool identifiers (e.g. jwt-decoder) are encoded — the recipe describes a process, not a dataset. This is a deliberate limit, not a missing feature: sharing actual JWTs, keys, or JSON payloads via URL would work against everything else on this site being client-side and private.
Does it auto-run through every step?
No. Each step stays under your control. After you run the active tool, Run next step transfers compatible text output through the tab's short-lived handoff record. Incompatible pairs still advance, but show why you need to paste the next input manually. See Technical Transparency for the exact browser-storage contract.