{
  "schemaVersion": "1.0",
  "item": {
    "slug": "adb-logcat-reader",
    "name": "Pywayne Adb Logcat Reader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wangyendt/adb-logcat-reader",
    "canonicalUrl": "https://clawhub.ai/wangyendt/adb-logcat-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/adb-logcat-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=adb-logcat-reader",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/adb-logcat-reader"
    },
    "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/adb-logcat-reader",
    "agentPageUrl": "https://openagent3.xyz/skills/adb-logcat-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/adb-logcat-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/adb-logcat-reader/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 ADB Logcat Reader",
        "body": "This module provides real-time Android device log reading capabilities via the adb logcat command."
      },
      {
        "title": "Quick Start",
        "body": "from pywayne.adb.logcat_reader import AdbLogcatReader\n\n# Create reader (default C++ backend)\nreader = AdbLogcatReader()\n\n# Start log capture and read\nreader.start()\nfor line in reader.read():\n    print(line)"
      },
      {
        "title": "Use Python backend (alternative)",
        "body": "reader = AdbLogcatReader(backend='python')\nreader.start()\nfor line in reader.read():\nprint(line)\n\n# Stop and cleanup\nreader.stop()"
      },
      {
        "title": "Initialization",
        "body": "# C++ backend (default, faster)\nreader = AdbLogcatReader()\n\n# Python backend (alternative, may be more compatible)\nreader = AdbLogcatReader(backend='python')"
      },
      {
        "title": "Reading Logs",
        "body": "The read() method yields log lines incrementally as a generator, suitable for processing large logs or real-time monitoring.\n\n# Process logs as they arrive\nfor line in reader.read():\n    # Filter, parse, store..."
      },
      {
        "title": "Properties",
        "body": "PropertyDescriptionbackend'cpp' or 'python'runningWhether logcat process is running"
      },
      {
        "title": "Methods",
        "body": "MethodDescriptionstart()Start adb logcat processread()Generator yielding log linesstop()Stop logcat processget_backend()Get active backend type"
      },
      {
        "title": "C++ Backend (Default)",
        "body": "Uses native C++ implementation\nFaster performance for real-time streaming\nBetter compatibility with adb logcat"
      },
      {
        "title": "Python Backend (Alternative)",
        "body": "Uses Python subprocess to call adb\nMore compatible across different environments\nEasier debugging and integration"
      },
      {
        "title": "Notes",
        "body": "C++ backend is faster and recommended for production\nPython backend may be useful during development\nstop() terminates adb logcat; use Ctrl+C to send interrupt signal\nLogs are cleared automatically when process stops"
      }
    ],
    "body": "Pywayne ADB Logcat Reader\n\nThis module provides real-time Android device log reading capabilities via the adb logcat command.\n\nQuick Start\nfrom pywayne.adb.logcat_reader import AdbLogcatReader\n\n# Create reader (default C++ backend)\nreader = AdbLogcatReader()\n\n# Start log capture and read\nreader.start()\nfor line in reader.read():\n    print(line)\n\nUse Python backend (alternative)\n\nreader = AdbLogcatReader(backend='python') reader.start() for line in reader.read(): print(line)\n\n\n# Stop and cleanup\nreader.stop()\n\nInitialization\n# C++ backend (default, faster)\nreader = AdbLogcatReader()\n\n# Python backend (alternative, may be more compatible)\nreader = AdbLogcatReader(backend='python')\n\nReading Logs\n\nThe read() method yields log lines incrementally as a generator, suitable for processing large logs or real-time monitoring.\n\n# Process logs as they arrive\nfor line in reader.read():\n    # Filter, parse, store...\n\nProperties\nProperty\tDescription\nbackend\t'cpp' or 'python'\nrunning\tWhether logcat process is running\nMethods\nMethod\tDescription\nstart()\tStart adb logcat process\nread()\tGenerator yielding log lines\nstop()\tStop logcat process\nget_backend()\tGet active backend type\nBackends\nC++ Backend (Default)\nUses native C++ implementation\nFaster performance for real-time streaming\nBetter compatibility with adb logcat\nPython Backend (Alternative)\nUses Python subprocess to call adb\nMore compatible across different environments\nEasier debugging and integration\nNotes\nC++ backend is faster and recommended for production\nPython backend may be useful during development\nstop() terminates adb logcat; use Ctrl+C to send interrupt signal\nLogs are cleared automatically when process stops"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wangyendt/adb-logcat-reader",
    "publisherUrl": "https://clawhub.ai/wangyendt/adb-logcat-reader",
    "owner": "wangyendt",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/adb-logcat-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/adb-logcat-reader",
    "agentUrl": "https://openagent3.xyz/skills/adb-logcat-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/adb-logcat-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/adb-logcat-reader/agent.md"
  }
}