Install
openclaw skills install text-case-toolConvert text between different cases: UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE. Pure Python, no API key required.
openclaw skills install text-case-toolConvert text between different case formats. Useful for programming, writing, and data transformation.
# Upper case
python3 scripts/text_case.py "hello world" --upper
# Lower case
python3 scripts/text_case.py "HELLO WORLD" --lower
# Title case
python3 scripts/text_case.py "hello world" --title
# camelCase
python3 scripts/text_case.py "hello world" --camel
# snake_case
python3 scripts/text_case.py "HelloWorld" --snake
# kebab-case
python3 scripts/text_case.py "Hello World" --kebab
| Input | Mode | Output |
|---|---|---|
| hello world | --upper | HELLO WORLD |
| HELLO WORLD | --lower | hello world |
| hello world | --title | Hello World |
| hello world | --camel | helloWorld |
| hello world | --pascal | HelloWorld |
| HelloWorld | --snake | hello_world |
| hello world | --kebab | hello-world |
文本大小写转换工具,支持多种格式:大写、小写、标题、驼峰、蛇形、短横线等。