transform-text
Modify text case, format, or structure by applying operations like uppercase, lowercase, capitalize, reverse, or word count. Ideal for processing and transforming text efficiently.
Instructions
Transform text case and format
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| operation | Yes | Transformation operation to apply | |
| text | Yes | Text to transform | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "operation": {
      "description": "Transformation operation to apply",
      "enum": [
        "uppercase",
        "lowercase",
        "capitalize",
        "reverse",
        "word-count"
      ],
      "type": "string"
    },
    "text": {
      "description": "Text to transform",
      "type": "string"
    }
  },
  "required": [
    "text",
    "operation"
  ],
  "type": "object"
}