Install
openclaw skills install uppercase-converterConvert English lowercase letters to uppercase. Use when the user asks to uppercase text, capitalize all letters, convert lowercase to uppercase, or "转大写". Conversion is performed by a Python script.
openclaw skills install uppercase-converterConvert English text from lowercase to uppercase using the bundled Python script.
Run the script to_upper.py in this skill directory. It accepts the text to convert
in one of two ways:
As command-line arguments (joined with spaces):
python "$CLAUDE_SKILL_DIR/to_upper.py" "hello world"
From standard input (when no arguments are given) — useful for piping files or large/multiline text:
cat input.txt | python "$CLAUDE_SKILL_DIR/to_upper.py"
The script prints the uppercased result to stdout. Only ASCII English letters a-z are affected; digits, punctuation, whitespace, and non-English characters pass through unchanged.