{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cmdlogger",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cmdlogger",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/cmdlogger",
    "agentPageUrl": "https://openagent3.xyz/skills/cmdlogger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cmdlogger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cmdlogger/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Pywayne Bin Cmdlogger",
        "body": "Execute a command and log all stdin, stdout, stderr to a file while forwarding I/O to console in real-time."
      },
      {
        "title": "Quick Start",
        "body": "# Log command execution to default file (io_log.log in script directory)\ncmdlogger <command> [args...]\n\n# Specify custom log file path\ncmdlogger --log-path <log_path> <command> [args...]"
      },
      {
        "title": "Build Process Recording",
        "body": "# Log CMake configuration\ncmdlogger --log-path cmake_config.log cmake ..\n\n# Log build process\ncmdlogger --log-path build.log make -j$(nproc)"
      },
      {
        "title": "Script Execution Monitoring",
        "body": "# Log Python script execution\ncmdlogger --log-path script_run.log python3 my_script.py --arg1 value1\n\n# Log shell script execution\ncmdlogger --log-path deploy.log ./deploy.sh production"
      },
      {
        "title": "Debugging Sessions",
        "body": "# Log GDB debug session\ncmdlogger --log-path debug_session.log gdb ./my_program\n\n# Log Python interactive session\ncmdlogger --log-path python_debug.log python3 -i my_module.py"
      },
      {
        "title": "Network Operations",
        "body": "# Log curl request with verbose output\ncmdlogger --log-path api_test.log curl -v https://api.example.com/data\n\n# Log SSH connection process\ncmdlogger --log-path ssh_session.log ssh user@remote-host"
      },
      {
        "title": "Simple Command Logging",
        "body": "# Log git status\ncmdlogger git status\n\n# Log echo command\ncmdlogger echo \"Hello World\""
      },
      {
        "title": "Command Reference",
        "body": "ArgumentDescriptioncommandThe command to execute[args...]Command arguments--log-path <path>Optional log file path. Default: io_log.log in script directory"
      },
      {
        "title": "Log Format",
        "body": "Each line in the log file is prefixed with stream type:\n\n输入: <content> - Standard input\n输出: <content> - Standard output\n错误: <content> - Standard error"
      },
      {
        "title": "Example Log Output",
        "body": "Running cmdlogger echo \"Hello World\" produces:\n\n输出: Hello World\n\nRunning cmdlogger python3 -c \"import sys; print('stdout'); print('stderr', file=sys.stderr)\" produces:\n\n输出: stdout\n错误: stderr"
      },
      {
        "title": "Features",
        "body": "Full I/O Recording: Captures all stdin, stdout, stderr\nReal-time Forwarding: Forwards I/O to console while logging\nMulti-threaded: Uses separate threads for stdin, stdout, stderr\nEncoding Handling: Gracefully handles non-UTF-8 data\nResource Cleanup: Automatically cleans up processes and files"
      },
      {
        "title": "Use Cases",
        "body": "Recording complex build processes for later analysis\nMonitoring long-running scripts with full logging\nDebugging with complete input/output history\nCI/CD pipeline execution logging\nPerformance analysis with execution traces"
      },
      {
        "title": "Important Notes",
        "body": "Interactive Commands: User input (including passwords) is logged. Be careful with sensitive information.\nLarge Output: Log files can become large for commands with heavy output. Ensure sufficient disk space.\nDefault Log Location: If --log-path is not specified, log file is created in the script directory as io_log.log.\nExit Codes: Returns the exit code of the executed command (127 if command not found)."
      }
    ],
    "body": "Pywayne Bin Cmdlogger\n\nExecute a command and log all stdin, stdout, stderr to a file while forwarding I/O to console in real-time.\n\nQuick Start\n# Log command execution to default file (io_log.log in script directory)\ncmdlogger <command> [args...]\n\n# Specify custom log file path\ncmdlogger --log-path <log_path> <command> [args...]\n\nUsage Examples\nBuild Process Recording\n# Log CMake configuration\ncmdlogger --log-path cmake_config.log cmake ..\n\n# Log build process\ncmdlogger --log-path build.log make -j$(nproc)\n\nScript Execution Monitoring\n# Log Python script execution\ncmdlogger --log-path script_run.log python3 my_script.py --arg1 value1\n\n# Log shell script execution\ncmdlogger --log-path deploy.log ./deploy.sh production\n\nDebugging Sessions\n# Log GDB debug session\ncmdlogger --log-path debug_session.log gdb ./my_program\n\n# Log Python interactive session\ncmdlogger --log-path python_debug.log python3 -i my_module.py\n\nNetwork Operations\n# Log curl request with verbose output\ncmdlogger --log-path api_test.log curl -v https://api.example.com/data\n\n# Log SSH connection process\ncmdlogger --log-path ssh_session.log ssh user@remote-host\n\nSimple Command Logging\n# Log git status\ncmdlogger git status\n\n# Log echo command\ncmdlogger echo \"Hello World\"\n\nCommand Reference\nArgument\tDescription\ncommand\tThe command to execute\n[args...]\tCommand arguments\n--log-path <path>\tOptional log file path. Default: io_log.log in script directory\nLog Format\n\nEach line in the log file is prefixed with stream type:\n\n输入: <content> - Standard input\n输出: <content> - Standard output\n错误: <content> - Standard error\nExample Log Output\n\nRunning cmdlogger echo \"Hello World\" produces:\n\n输出: Hello World\n\n\nRunning cmdlogger python3 -c \"import sys; print('stdout'); print('stderr', file=sys.stderr)\" produces:\n\n输出: stdout\n错误: stderr\n\nFeatures\nFull I/O Recording: Captures all stdin, stdout, stderr\nReal-time Forwarding: Forwards I/O to console while logging\nMulti-threaded: Uses separate threads for stdin, stdout, stderr\nEncoding Handling: Gracefully handles non-UTF-8 data\nResource Cleanup: Automatically cleans up processes and files\nUse Cases\nRecording complex build processes for later analysis\nMonitoring long-running scripts with full logging\nDebugging with complete input/output history\nCI/CD pipeline execution logging\nPerformance analysis with execution traces\nImportant Notes\nInteractive Commands: User input (including passwords) is logged. Be careful with sensitive information.\nLarge Output: Log files can become large for commands with heavy output. Ensure sufficient disk space.\nDefault Log Location: If --log-path is not specified, log file is created in the script directory as io_log.log.\nExit Codes: Returns the exit code of the executed command (127 if command not found)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wangyendt/cmdlogger",
    "publisherUrl": "https://clawhub.ai/wangyendt/cmdlogger",
    "owner": "wangyendt",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}