Text Tools Agent

Quick text utilities for cleaning and formatting strings.

What it does

  • Performs common string operations like casing, trimming, splitting, templating, and encoding.

Common uses

  • Clean incoming values before mapping them to other systems.
  • Render templates that mix static text with variables.
  • Create slugs or IDs from product names.

Key actions from the spec

  • Encoding: convert to or from base64 and hash text.
  • Formatting: change case, trim or normalize whitespace, slugify, and remove characters.
  • Find or replace text and extract substrings.
  • Split or join lines or words and collapse or expand lines.
  • Render simple templates with variables.

Setup notes

  • These actions are stateless and safe—use them freely between other steps.
  • For templating, supply variables and a template string; ensure placeholders match your variable names.