{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dom-observer-pro",
    "name": "Dom Observer Pro",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/raghulpasupathi/dom-observer-pro",
    "canonicalUrl": "https://clawhub.ai/raghulpasupathi/dom-observer-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dom-observer-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dom-observer-pro",
    "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/dom-observer-pro"
    },
    "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/dom-observer-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/dom-observer-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dom-observer-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dom-observer-pro/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": "Metadata",
        "body": "ID: dom-observer-pro\nVersion: 1.0.0\nCategory: utility\nPriority: Medium\nInstallation: ClawHub\nPackage: @raghulpasupathi/dom-observer-pro"
      },
      {
        "title": "Description",
        "body": "Efficient DOM monitoring system for real-time content detection in web browsers. Uses MutationObserver, IntersectionObserver, and intelligent debouncing to detect AI-generated content as it appears on web pages with minimal performance impact."
      },
      {
        "title": "Via ClawHub",
        "body": "https://clawhub.ai/raghulpasupathi/dom-observer-pro"
      },
      {
        "title": "Via npm",
        "body": "npm install @raghulpasupathi/dom-observer-pro"
      },
      {
        "title": "Features",
        "body": "Real-time Monitoring: Detect content changes instantly\nMutation Observation: Track DOM modifications efficiently\nIntersection Detection: Monitor when elements enter viewport\nIntelligent Debouncing: Prevent performance degradation from rapid changes\nSelector Targeting: Watch specific elements or patterns\nContent Extraction: Automatically extract text/images from new elements\nShadow DOM Support: Monitor elements within shadow roots\nPerformance Optimized: Batched processing and throttling\nBrowser Extension Ready: Designed for extension environments\nConfigurable Filters: Ignore irrelevant changes"
      },
      {
        "title": "Configuration",
        "body": "{\n  \"enabled\": true,\n  \"settings\": {\n    \"observeMode\": \"mutation\",\n    \"targetSelectors\": [\n      \"article\",\n      \"p\",\n      \"div.content\",\n      \"span.text\",\n      \".comment\",\n      \".post\"\n    ],\n    \"ignoreSelectors\": [\n      \"script\",\n      \"style\",\n      \"noscript\",\n      \".ads\",\n      \".navigation\"\n    ],\n    \"mutation\": {\n      \"enabled\": true,\n      \"childList\": true,\n      \"subtree\": true,\n      \"characterData\": true\n    },\n    \"intersection\": {\n      \"enabled\": true,\n      \"threshold\": 0.5,\n      \"rootMargin\": \"50px\"\n    },\n    \"performance\": {\n      \"debounceDelay\": 300,\n      \"throttleDelay\": 100,\n      \"batchSize\": 10,\n      \"maxQueueSize\": 100\n    },\n    \"extraction\": {\n      \"minTextLength\": 50,\n      \"maxTextLength\": 10000,\n      \"extractImages\": true,\n      \"extractLinks\": true\n    }\n  }\n}"
      },
      {
        "title": "API Examples",
        "body": "See dom-observer-pro-examples.js for complete usage examples."
      },
      {
        "title": "Dependencies",
        "body": "mutation-observer: Built-in browser API\nintersection-observer: Built-in browser API\ndebounce: ^2.0.0\nlodash.throttle: ^4.1.1"
      },
      {
        "title": "Performance",
        "body": "CPU Usage: <1% idle, 2-5% during active monitoring\nMemory: 10-20MB for typical web pages\nLatency: <10ms detection, 100-500ms with debouncing\nThroughput: Handles 1000+ DOM changes/second\nBrowser Compatibility: Chrome 51+, Firefox 14+, Safari 10+"
      },
      {
        "title": "Use Cases",
        "body": "Browser extensions for AI detection\nSocial media content monitoring\nNews site article tracking\nChat application message detection\nDynamic content tracking\nContent moderation systems\nData collection from SPAs\nUser behavior tracking"
      },
      {
        "title": "Best Practices",
        "body": "Use specific targetSelectors to reduce noise\nAlways define ignoreSelectors for ads, navigation, etc.\nSet appropriate debounceDelay to balance speed vs performance\nUse IntersectionObserver for content in long pages\nImplement batch processing for high-frequency changes\nCall stop() when observer is no longer needed\nUse WeakSet to track processed elements\nMonitor performance metrics regularly\nHandle errors gracefully to prevent observer failure\nTest across different websites and frameworks"
      }
    ],
    "body": "DOM Observer Pro\nMetadata\nID: dom-observer-pro\nVersion: 1.0.0\nCategory: utility\nPriority: Medium\nInstallation: ClawHub\nPackage: @raghulpasupathi/dom-observer-pro\nDescription\n\nEfficient DOM monitoring system for real-time content detection in web browsers. Uses MutationObserver, IntersectionObserver, and intelligent debouncing to detect AI-generated content as it appears on web pages with minimal performance impact.\n\nInstallation\nVia ClawHub\nhttps://clawhub.ai/raghulpasupathi/dom-observer-pro\n\nVia npm\nnpm install @raghulpasupathi/dom-observer-pro\n\nFeatures\nReal-time Monitoring: Detect content changes instantly\nMutation Observation: Track DOM modifications efficiently\nIntersection Detection: Monitor when elements enter viewport\nIntelligent Debouncing: Prevent performance degradation from rapid changes\nSelector Targeting: Watch specific elements or patterns\nContent Extraction: Automatically extract text/images from new elements\nShadow DOM Support: Monitor elements within shadow roots\nPerformance Optimized: Batched processing and throttling\nBrowser Extension Ready: Designed for extension environments\nConfigurable Filters: Ignore irrelevant changes\nConfiguration\n{\n  \"enabled\": true,\n  \"settings\": {\n    \"observeMode\": \"mutation\",\n    \"targetSelectors\": [\n      \"article\",\n      \"p\",\n      \"div.content\",\n      \"span.text\",\n      \".comment\",\n      \".post\"\n    ],\n    \"ignoreSelectors\": [\n      \"script\",\n      \"style\",\n      \"noscript\",\n      \".ads\",\n      \".navigation\"\n    ],\n    \"mutation\": {\n      \"enabled\": true,\n      \"childList\": true,\n      \"subtree\": true,\n      \"characterData\": true\n    },\n    \"intersection\": {\n      \"enabled\": true,\n      \"threshold\": 0.5,\n      \"rootMargin\": \"50px\"\n    },\n    \"performance\": {\n      \"debounceDelay\": 300,\n      \"throttleDelay\": 100,\n      \"batchSize\": 10,\n      \"maxQueueSize\": 100\n    },\n    \"extraction\": {\n      \"minTextLength\": 50,\n      \"maxTextLength\": 10000,\n      \"extractImages\": true,\n      \"extractLinks\": true\n    }\n  }\n}\n\nAPI Examples\n\nSee dom-observer-pro-examples.js for complete usage examples.\n\nDependencies\nmutation-observer: Built-in browser API\nintersection-observer: Built-in browser API\ndebounce: ^2.0.0\nlodash.throttle: ^4.1.1\nPerformance\nCPU Usage: <1% idle, 2-5% during active monitoring\nMemory: 10-20MB for typical web pages\nLatency: <10ms detection, 100-500ms with debouncing\nThroughput: Handles 1000+ DOM changes/second\nBrowser Compatibility: Chrome 51+, Firefox 14+, Safari 10+\nUse Cases\nBrowser extensions for AI detection\nSocial media content monitoring\nNews site article tracking\nChat application message detection\nDynamic content tracking\nContent moderation systems\nData collection from SPAs\nUser behavior tracking\nBest Practices\nUse specific targetSelectors to reduce noise\nAlways define ignoreSelectors for ads, navigation, etc.\nSet appropriate debounceDelay to balance speed vs performance\nUse IntersectionObserver for content in long pages\nImplement batch processing for high-frequency changes\nCall stop() when observer is no longer needed\nUse WeakSet to track processed elements\nMonitor performance metrics regularly\nHandle errors gracefully to prevent observer failure\nTest across different websites and frameworks"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/raghulpasupathi/dom-observer-pro",
    "publisherUrl": "https://clawhub.ai/raghulpasupathi/dom-observer-pro",
    "owner": "raghulpasupathi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dom-observer-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/dom-observer-pro",
    "agentUrl": "https://openagent3.xyz/skills/dom-observer-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dom-observer-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dom-observer-pro/agent.md"
  }
}