# Send Dom Observer Pro 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": "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": {
    "downloadUrl": "/downloads/dom-observer-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dom-observer-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Metadata

ID: dom-observer-pro
Version: 1.0.0
Category: utility
Priority: Medium
Installation: ClawHub
Package: @raghulpasupathi/dom-observer-pro

### Description

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.

### Via ClawHub

https://clawhub.ai/raghulpasupathi/dom-observer-pro

### Via npm

npm install @raghulpasupathi/dom-observer-pro

### Features

Real-time Monitoring: Detect content changes instantly
Mutation Observation: Track DOM modifications efficiently
Intersection Detection: Monitor when elements enter viewport
Intelligent Debouncing: Prevent performance degradation from rapid changes
Selector Targeting: Watch specific elements or patterns
Content Extraction: Automatically extract text/images from new elements
Shadow DOM Support: Monitor elements within shadow roots
Performance Optimized: Batched processing and throttling
Browser Extension Ready: Designed for extension environments
Configurable Filters: Ignore irrelevant changes

### Configuration

{
  "enabled": true,
  "settings": {
    "observeMode": "mutation",
    "targetSelectors": [
      "article",
      "p",
      "div.content",
      "span.text",
      ".comment",
      ".post"
    ],
    "ignoreSelectors": [
      "script",
      "style",
      "noscript",
      ".ads",
      ".navigation"
    ],
    "mutation": {
      "enabled": true,
      "childList": true,
      "subtree": true,
      "characterData": true
    },
    "intersection": {
      "enabled": true,
      "threshold": 0.5,
      "rootMargin": "50px"
    },
    "performance": {
      "debounceDelay": 300,
      "throttleDelay": 100,
      "batchSize": 10,
      "maxQueueSize": 100
    },
    "extraction": {
      "minTextLength": 50,
      "maxTextLength": 10000,
      "extractImages": true,
      "extractLinks": true
    }
  }
}

### API Examples

See dom-observer-pro-examples.js for complete usage examples.

### Dependencies

mutation-observer: Built-in browser API
intersection-observer: Built-in browser API
debounce: ^2.0.0
lodash.throttle: ^4.1.1

### Performance

CPU Usage: <1% idle, 2-5% during active monitoring
Memory: 10-20MB for typical web pages
Latency: <10ms detection, 100-500ms with debouncing
Throughput: Handles 1000+ DOM changes/second
Browser Compatibility: Chrome 51+, Firefox 14+, Safari 10+

### Use Cases

Browser extensions for AI detection
Social media content monitoring
News site article tracking
Chat application message detection
Dynamic content tracking
Content moderation systems
Data collection from SPAs
User behavior tracking

### Best Practices

Use specific targetSelectors to reduce noise
Always define ignoreSelectors for ads, navigation, etc.
Set appropriate debounceDelay to balance speed vs performance
Use IntersectionObserver for content in long pages
Implement batch processing for high-frequency changes
Call stop() when observer is no longer needed
Use WeakSet to track processed elements
Monitor performance metrics regularly
Handle errors gracefully to prevent observer failure
Test across different websites and frameworks
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: raghulpasupathi
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dom-observer-pro)
- [Send to Agent page](https://openagent3.xyz/skills/dom-observer-pro/agent)
- [JSON manifest](https://openagent3.xyz/skills/dom-observer-pro/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dom-observer-pro/agent.md)
- [Download page](https://openagent3.xyz/downloads/dom-observer-pro)