# Send Pywayne Bin Cmdlogger to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cmdlogger",
    "name": "Pywayne Bin Cmdlogger",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wangyendt/cmdlogger",
    "canonicalUrl": "https://clawhub.ai/wangyendt/cmdlogger",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cmdlogger",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cmdlogger",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "cmdlogger",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T15:43:49.517Z",
      "expiresAt": "2026-05-14T15:43:49.517Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cmdlogger",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cmdlogger",
        "contentDisposition": "attachment; filename=\"cmdlogger-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "cmdlogger"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/cmdlogger"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cmdlogger",
    "downloadUrl": "https://openagent3.xyz/downloads/cmdlogger",
    "agentUrl": "https://openagent3.xyz/skills/cmdlogger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cmdlogger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cmdlogger/agent.md"
  }
}
```
## Documentation

### Pywayne Bin Cmdlogger

Execute a command and log all stdin, stdout, stderr to a file while forwarding I/O to console in real-time.

### Quick Start

# 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...]

### Build Process Recording

# Log CMake configuration
cmdlogger --log-path cmake_config.log cmake ..

# Log build process
cmdlogger --log-path build.log make -j$(nproc)

### Script Execution Monitoring

# 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

### Debugging Sessions

# 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

### Network Operations

# 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

### Simple Command Logging

# Log git status
cmdlogger git status

# Log echo command
cmdlogger echo "Hello World"

### Command Reference

ArgumentDescriptioncommandThe command to execute[args...]Command arguments--log-path <path>Optional log file path. Default: io_log.log in script directory

### Log Format

Each line in the log file is prefixed with stream type:

输入: <content> - Standard input
输出: <content> - Standard output
错误: <content> - Standard error

### Example Log Output

Running cmdlogger echo "Hello World" produces:

输出: Hello World

Running cmdlogger python3 -c "import sys; print('stdout'); print('stderr', file=sys.stderr)" produces:

输出: stdout
错误: stderr

### Features

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

### Use Cases

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

### Important Notes

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).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wangyendt
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T15:43:49.517Z
- Expires at: 2026-05-14T15:43:49.517Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/cmdlogger)
- [Send to Agent page](https://openagent3.xyz/skills/cmdlogger/agent)
- [JSON manifest](https://openagent3.xyz/skills/cmdlogger/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cmdlogger/agent.md)
- [Download page](https://openagent3.xyz/downloads/cmdlogger)