MONK-EYE Engine

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill does not show credential theft or destructive code, but it appears to claim deep forum research and massive scans without actually performing them.

Treat this as a Review item before installing. It does not show destructive or credential-stealing behavior, but its code appears to simulate deep research rather than perform it. If you use it, require verifiable sources for every claim, keep searches narrowly scoped, and review or fix the hard-coded paths and dependency handling.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

You could receive a strategic report that appears to be based on deep research even when no such scan occurred.

Why it was flagged

The entrypoint reports crawling and millions of processed data points, but the file contains only logging/config loading and no actual search, crawl, API, or data-processing logic before declaring success.

Skill content
print(f"[*] Crawling deep threads in BHW, R10, and Habr...") ... print("Status: HEAVY SCAN COMPLETED - Millions of data points processed.")
Recommendation

Do not rely on the skill's completion messages alone; require exact source URLs, quoted evidence, and verifiable intermediate results before trusting its output.

What this means

The agent may perform many external searches or crawls unless you limit domains, depth, and topic scope.

Why it was flagged

Broad recursive scanning is disclosed and aligned with the research purpose, but it could cause extensive browser/search activity if implemented through agent tools.

Skill content
Simultaneously scans 500+ deep sources, following links recursively (Depth: 2+).
Recommendation

Run it only with explicit scope limits, ask for a proposed source list first, and avoid directing it toward private or access-restricted material.

What this means

Manual dependency installation could pull current package versions from your package index rather than a reviewed, pinned set.

Why it was flagged

The skill references external Python packages without pinned versions, while the registry install spec is absent. This is common for scraping-related tooling but still leaves dependency provenance to the user.

Skill content
"dependencies": ["requests", "beautifulsoup4"]
Recommendation

Install dependencies only from trusted sources and consider pinning versions in a controlled environment.

What this means

Query generation may fail or be influenced by another local skill's forum list if that path exists.

Why it was flagged

This script depends on a hard-coded file path in a different skill directory instead of the included forums.json, creating an undeclared cross-skill dependency.

Skill content
FORUMS_PATH = "/root/.openclaw/workspace/skills/global-forum-oracle/forums.json"
Recommendation

Change the script to use this skill's own bundled forums.json or clearly declare and validate any external local dependency.