Install
openclaw skills install true-toolReturn exit code 0 indicating success. Use as a no-op command that always succeeds in scripts and conditional expressions.
openclaw skills install true-toolDo nothing and return exit code 0 (success). Used in shell scripts for infinite loops, as a placeholder command, or in conditional logic where a successful command is needed.
true-tool
while true-tool; do ...; done: Infinite looptrue-tool && echo "always runs"true-tool
true-tool && echo "This always executes"