Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Execute commands with real-time console output while logging all stdin, stdout, and stderr to a customizable log file for monitoring and debugging.
Execute commands with real-time console output while logging all stdin, stdout, and stderr to a customizable log file for monitoring and debugging.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Execute a command and log all stdin, stdout, stderr to a file while forwarding I/O to console in real-time.
# Log command execution to default file (io_log.log in script directory) cmdlogger <command> [args...] # Specify custom log file path cmdlogger --log-path <log_path> <command> [args...]
# Log CMake configuration cmdlogger --log-path cmake_config.log cmake .. # Log build process cmdlogger --log-path build.log make -j$(nproc)
# Log Python script execution cmdlogger --log-path script_run.log python3 my_script.py --arg1 value1 # Log shell script execution cmdlogger --log-path deploy.log ./deploy.sh production
# Log GDB debug session cmdlogger --log-path debug_session.log gdb ./my_program # Log Python interactive session cmdlogger --log-path python_debug.log python3 -i my_module.py
# Log curl request with verbose output cmdlogger --log-path api_test.log curl -v https://api.example.com/data # Log SSH connection process cmdlogger --log-path ssh_session.log ssh user@remote-host
# Log git status cmdlogger git status # Log echo command cmdlogger echo "Hello World"
ArgumentDescriptioncommandThe command to execute[args...]Command arguments--log-path <path>Optional log file path. Default: io_log.log in script directory
Each line in the log file is prefixed with stream type: ่พๅ ฅ: <content> - Standard input ่พๅบ: <content> - Standard output ้่ฏฏ: <content> - Standard error
Running cmdlogger echo "Hello World" produces: ่พๅบ: Hello World Running cmdlogger python3 -c "import sys; print('stdout'); print('stderr', file=sys.stderr)" produces: ่พๅบ: stdout ้่ฏฏ: stderr
Full I/O Recording: Captures all stdin, stdout, stderr Real-time Forwarding: Forwards I/O to console while logging Multi-threaded: Uses separate threads for stdin, stdout, stderr Encoding Handling: Gracefully handles non-UTF-8 data Resource Cleanup: Automatically cleans up processes and files
Recording complex build processes for later analysis Monitoring long-running scripts with full logging Debugging with complete input/output history CI/CD pipeline execution logging Performance analysis with execution traces
Interactive Commands: User input (including passwords) is logged. Be careful with sensitive information. Large Output: Log files can become large for commands with heavy output. Ensure sufficient disk space. Default Log Location: If --log-path is not specified, log file is created in the script directory as io_log.log. Exit Codes: Returns the exit code of the executed command (127 if command not found).
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.