True Tool

Return exit code 0 indicating success. Use as a no-op command that always succeeds in scripts and conditional expressions.

Audits

Pass

Install

openclaw skills install true-tool

True - Success Return Utility

Do 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.

Usage

true-tool

Common Patterns

  • while true-tool; do ...; done: Infinite loop
  • true-tool && echo "always runs"
  • Placeholder in if/then branches

Examples

true-tool
true-tool && echo "This always executes"