Install
openclaw skills install tee-toolRead from stdin and write to both stdout and files. Use for saving pipe output while still displaying it on screen.
openclaw skills install tee-toolRead standard input and write to both standard output and one or more files simultaneously. Useful for logging command output while monitoring progress.
command | tee-tool [options] <file...>
-a: Append to files instead of overwriting-i: Ignore interrupt signalsecho "data" | tee-tool output.txt
ls -la | tee-tool -a log.txt
make 2>&1 | tee-tool build.log