What is a tool pipeline
A pipeline chains multiple tools in order — each step's output feeds the next. Configurations persist in localStorage with no account required.
Ideal for weekly repeats: Base64 decode → JSON format → copy, or URL decode → parse query parameters.
Example 1: Webhook debugging chain
For Base64-encoded webhook payloads: ① Base64 decode to JSON string; ② JSON format to inspect structure; ③ if a JWT is inside, copy the token to JWT Decoder (add as step 3).
Save as "Webhook debug" pipeline — next notification launches all steps with automatic handoff.
Example 2: Pre-release data validation
After CSV → JSON export: ① JSON format for syntax; ② JSON Diff against golden file; ③ if mismatched, fix source in JSON↔CSV.
Run before every data release to catch missing fields early.
Works with clipboard detection and extension
Smart Clipboard detects pasted JSON, Base64, JWT, etc. and suggests the first tool — an intelligent pipeline entry point.
The Chrome extension opens wodetool.com from selected text via context menu with prefilled input. Pipelines + extension + clipboard detection form WoDeTool's workflow story.