AI Utilities

Two free AI utilities for devs: regexai builds the regex, jsonfix rescues the broken JSON

May 18, 2026 ยท Free tools ยท No login

Most days at a terminal, I lose ten minutes to one of two stupid problems:

  1. Writing a regex I half-remember the syntax for.
  2. Pasting a payload into a parser and watching it reject me because somebody, somewhere, left a trailing comma.

I shipped two free tools that close both holes. Both run in the browser, both use Claude under the hood for the AI fallback, both have zero login.

regexai โ€” describe it, get the regex

jsonfix โ€” paste broken JSON, get clean JSON

The pattern

  1. Deterministic path first. regexai runs your regex through native RegExp and highlights matches as you type. jsonfix calls JSON.parse and formats. No API, no latency, no cost. 95% of sessions never leave this path.
  2. AI fallback. If the deterministic path fails, one button hands the problem to Claude (haiku-4-5) with a tight prompt and a JSON schema. Result lands back in the same UI.
  3. No login, no quota, no upsell. Friction kills these utilities. The cost per session is low enough that I eat it.

Why this shape wins

Chat re-establishes context every turn. A textarea doesn't. For chores you do more than once a week, the page wins on activation energy alone. ChatGPT is great for novel problems. It's wrong for the 30th time this month you needed to validate an IPv4.

Stack

What's next in this shape

Try them

Both free, both no-login. Bookmark the one you'll actually use.

Open regexai โ†’ Open jsonfix โ†’

Want this pattern applied to building MCP servers? The MCP Boilerplate ($79) is the same idea: deterministic scaffold, AI in the fallback.