Build A → B → C pipelines when an intermediate format unlocks the next job—for example PNG → WebP → AVIF, or JSON → YAML → TOML. Add parallel final outputs when several destinations should receive the same reviewed source.
TypedOnly compatible next steps appear.InspectableLossy steps and limits are visible before execution.Content-freePlans contain IDs and safe options, never user files.LocalExecution still happens entirely in the browser.
Visual workflow builder
Compose once. Run privately.
A workflow stores converter IDs and safe options only—never files, pasted content, or filenames.
Linear conversion path
Each output becomes the next input. The builder only offers routes that accept the preceding format.
01
Start with your own input.
Choose the format you already have, then choose what the first step should make.
Goal-oriented recipes
Begin with the outcome.
Automatic converter chains run together; validation, comparison, and security recipes keep explicit review checkpoints.
36 of 36 recipes
3 steps · guided review
Debug an API response
Validate, explore, query, and compare structured API data without pasting it into an online service.
Validate JSONFind syntax issues before analysis.
Format itMake nesting and values easy to scan.
Query fieldsSelect relevant data without running scripts.
2 steps · guided review
Clean a spreadsheet export
Profile a delimited export, normalize it, and package it as a modern workbook.
Profile the CSVFind missing, duplicated, or mistyped values.
Create XLSXBuild a portable workbook locally.
2 steps · automatic pipeline
Prepare responsive website images
Create smaller modern image variants while retaining an interoperable fallback.
Create WebPProduce a broadly supported modern asset.
Create AVIFAdd a high-compression modern variant.
2 steps · guided review
Inspect a suspicious token
Decode a JWT, inspect time claims, and verify it with the correct local key when available.
Decode claimsInspect header, payload, and expiry without trusting them.
Verify signatureCheck RSA/ECDSA signatures and selected claim policy.
2 steps · guided review
Compare two configurations
Normalize structured configuration before comparing semantic changes.
Normalize YAMLValidate and stabilize indentation.
Compare versionsReview added, removed, and changed lines.
1 steps · automatic pipeline
Make a scanned document searchable
Run OCR locally and create a PDF with a selectable text layer.
OCR the PDFRecognize each page and add searchable text.
1 steps · automatic pipeline
Extract presentation media
Inventory and download images, audio, and video embedded in a PowerPoint package.
Extract mediaRead the package locally and expose embedded assets.
1 steps · automatic pipeline
Prepare subtitles for the web
Normalize subtitle timing into WebVTT and inspect cues in a timeline table.
Convert to WebVTTUse the browser-native subtitle format.
2 steps · automatic pipeline
Normalize a bank statement
Move an OFX or QFX statement through a transparent transaction model before creating a reviewable CSV.
Normalize OFX recordsMake the preserved financial fields explicit before export.
Create transaction CSVProduce a familiar table for review and reconciliation.
2 steps · automatic pipeline
Migrate an MT940 statement
Normalize a SWIFT statement and produce an interoperable ISO 20022 CAMT document for a downstream finance workflow.
Normalize MT940Separate transaction facts from SWIFT line syntax.
Create CAMT XMLExpress the normalized records in an ISO 20022 container.
1 steps · automatic pipeline
Inventory a mailbox export
Turn an MBOX file into normalized message records without rendering HTML or uploading private mail.
Normalize mailbox messagesExpose common message fields in an inert structured view.
1 steps · automatic pipeline
Inspect a research dataset
Read a bounded HDF5 superblock before deciding which domain-specific desktop tool should open the bulk arrays.
Inspect HDF5 metadataValidate the signature and superblock safely before deeper analysis.
1 steps · automatic pipeline
Review a lidar delivery
Inspect LAS or LAZ public-header metadata before handing a point cloud to GIS or survey software.
Inspect LAZ headerCheck spatial bounds and point-record expectations without decompressing the payload.
2 steps · automatic pipeline
Prepare and audit a webfont
Create a compact browser font and immediately inspect the generated names, metrics, glyph coverage, and embedding guidance.
Create WOFF2Use the preferred compressed webfont container.
Audit the resultVerify the generated font structure and coverage before shipping.
2 steps · automatic pipeline
Review a machine toolpath
Parse bounded G-code into explicit motions before generating a normalized, review-only machine text file.
Inspect motionsExpose units, positioning, coordinates, feeds, and supported arc commands.
Regenerate normalized G-codeProduce conservative text without evaluating macros or controller expressions.
2 steps · automatic pipeline
Review and republish a VOTable
Normalize an astronomy table into visible fields and rows, then rebuild interoperable VOTable XML.
Normalize table rowsMake field definitions and cell alignment easy to inspect.
Rebuild VOTableReturn the reviewed rows to the domain XML representation.
3 steps · guided review
Audit an API contract
Normalize an OpenAPI document, validate the schemas it exposes, and inspect concrete example payloads.
Normalize OpenAPIResolve JSON or YAML syntax and surface contract-level diagnostics.
Validate a schema instanceCheck a representative payload against the selected schema locally.
Generate a bounded exampleCreate a safe sample that makes required fields and nesting visible.
3 steps · guided review
Clean text for publishing
Inspect Unicode, normalize confusing code points, and remove accidental whitespace before publication.
Inspect code pointsReveal invisible, control, combining, and look-alike characters.
Normalize UnicodeApply an explicit normalization form and review security-sensitive changes.
Clean whitespaceNormalize line endings, spacing, and blank lines with visible options.
3 steps · guided review
Verify a release artifact
Hash a local build, generate browser integrity metadata, and review the intended version range.
Hash the artifactCalculate checksums locally without loading the whole file into a text field.
Create SRI metadataProduce standards-based integrity attributes for a web-delivered asset.
Review the version rangeConfirm ordering and range membership before publishing package metadata.
3 steps · guided review
Schedule a global meeting
Compare local times, calculate the real elapsed interval, and avoid daylight-saving surprises.
Compare participant zonesSee the same instant across several IANA time zones.
Check the intervalConfirm the elapsed duration across offsets and daylight-saving transitions.
Express the durationPresent the meeting length in a familiar unit and ISO duration form.
3 steps · guided review
Design an accessible palette
Convert color notation, review contrast and color-vision behavior, then measure perceptual differences.
Build the paletteCompare spaces, contrast ratios, and color-vision simulations together.
Measure color distanceQuantify whether state colors remain perceptually distinct.
Create a CSS treatmentTurn the reviewed stops into a portable CSS gradient.
3 steps · guided review
Harden a web response
Parse response headers, identify security-policy gaps, and draft a restrained Content Security Policy.
Parse headersSeparate names, values, directives, and duplicates before analysis.
Analyze security headersHighlight permissive CSP and CORS choices with concrete warnings.
Draft a CSPAssemble a policy from explicit directives instead of copying a generic template.
2 steps · automatic pipeline
Publish a Markdown report as PDF
Move a readable Markdown source through sanitized HTML into a portable print document.
Create sanitized HTMLExpose the document structure in a widely reviewable intermediate form.
Create PDFRasterize the reviewed layout into a portable document.
2 steps · automatic pipeline
Publish a DOCX document on the web
Extract a Word document into maintainable Markdown and then produce inert, portable HTML.
Extract MarkdownTurn document structure into an editable, diff-friendly representation.
Create HTMLGenerate sanitized markup without executing embedded document content.
2 steps · automatic pipeline
Generate TypeScript types from JSON
Infer a reusable schema from a representative JSON payload before generating developer types.
Infer JSON SchemaMake assumptions about fields and primitive types explicit.
Generate TypeScriptCreate declarations from the reviewed schema instead of one opaque pass.
2 steps · automatic pipeline
Prepare a JSON dataset for SQL import
Normalize records into a table before producing quoted SQL INSERT statements.
Create a tableMake record flattening and inferred columns visible before SQL generation.
Create SQL INSERTQuote values and identifiers consistently for a portable import script.
2 steps · automatic pipeline
Review and publish subtitles
Normalize subtitle cues into structured rows before producing browser-native WebVTT.
Inspect cue dataMake start, end, and text fields explicit for review.
Create WebVTTReturn reviewed cues to the browser-native subtitle format.
2 steps · automatic pipeline
Modernize a 7-Zip archive
Pass an extracted virtual file tree through TAR before creating a broadly supported ZIP.
Create TARNormalize the archive into an interoperable intermediate container.
Create ZIPPackage the reviewed tree for broad desktop and browser support.
2 steps · automatic pipeline
Exchange a GPS track with GIS software
Normalize a GPX track into GeoJSON before exporting it to the KML ecosystem.
Create GeoJSONExpose geometry and properties in a familiar review model.
Create KMLPackage the reviewed features for common mapping applications.
2 steps · automatic pipeline
Prepare a 3D model for the web
Normalize Wavefront geometry into glTF before packaging a single-file GLB.
Create glTFMove mesh data into the web-oriented scene representation.
Package GLBBundle the reviewed scene and buffers into one portable file.
2 steps · automatic pipeline
Export an address book to CSV
Normalize vCard contacts into structured records before producing a reviewable table.
Normalize contactsExpose names, organizations, phones, emails, and addresses as records.
Create contact CSVProduce a table that can be reviewed before importing elsewhere.
2 steps · automatic pipeline
Export a calendar to CSV
Normalize iCalendar events into visible records before building a spreadsheet-friendly report.
Normalize calendar eventsMake event fields and timestamps easy to inspect.
Create calendar CSVProduce a portable table for reporting and review.
2 steps · automatic pipeline
Archive an email message
Normalize one EML message before packaging it into an MBOX mailbox archive.
Inspect the messageExpose safe headers and the plain body in an inert structured view.
Create MBOXPackage the reviewed record into a common mailbox container.
2 steps · automatic pipeline
Review FASTQ and publish FASTA
Normalize sequencing reads before producing a FASTA file without quality scores.
Inspect sequence recordsMake identifiers, sequences, and quality values independently visible.
Create FASTAPublish sequences only after acknowledging that quality scores are omitted.
2 steps · automatic pipeline
Create captions from a video
Extract audio into a common intermediate format before running local speech recognition.
Extract MP3 audioCreate a smaller audio-only intermediate for speech processing.
Transcribe to WebVTTRun local speech recognition and emit browser-ready timed cues.
2 steps · automatic pipeline
Refresh an EPUB from editable source
Extract an e-book to Markdown for review, then rebuild a standards-based EPUB package.
Extract MarkdownCreate an editable source representation from the book package.
Rebuild EPUBPackage the reviewed text and structure into an e-book container.