Indeed Monitor
Analysis
The skill largely matches its stated lead-scraping purpose, but it deserves review because it drives a local Chrome profile/session and relies on undeclared local helper tools.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
SCRAPLING_SCRIPT = "/Users/wlc-studio/StudioBrain/00_SYSTEM/skills/scrapling/scrape.py" ... subprocess.run(["python3", SCRAPLING_SCRIPT, "web", url]
The fallback scraper executes a separate local Scrapling helper outside this skill's manifest. That dependency is purpose-aligned but not included in the reviewed package.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
["openclaw", "browser", "navigate", "--url", url, "--profile", "chrome"] ... ["openclaw", "browser", "snapshot", "--profile", "chrome", "--compact"]
The browser version navigates and snapshots pages using the Chrome profile. That may use the user's existing browser session or account state, but the artifacts do not clearly bound or isolate that profile access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
with open(LEADS_FILE, "a") as f: ... f.write(f"| {lead['company']} | {lead['title']} | {lead['location']} | {signals} |\n")When --save is used, scraped page-derived text is appended to a persistent Markdown lead list.
