Capital Market Report

AdvisoryAudited by Static analysis on May 13, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

The agent may run local market-news scanning tools as part of producing a report.

Why it was flagged

The skill directs the agent to execute local scraper commands. This is central to the stated market-report purpose, but users should understand that installing/invoking the skill may run local scripts and make external news requests.

Skill content
You must run the following information scraping tools: ... uv run scripts/news-processor.py ... uv run ~/.openclaw/skills/stock-analysis/scripts/hot_scanner.py
Recommendation

Use the skill when you want this behavior, and review or restrict the referenced tools if you do not want automated market/news fetching.

What this means

Report generation may depend on other installed skills whose behavior is outside this review.

Why it was flagged

The code relies on other local skill scripts outside this package, and the registry metadata does not declare required binaries or install requirements. This is purpose-aligned for market data, but those helper scripts are not reviewed in these artifacts.

Skill content
script_path = "~/.openclaw/skills/tencent-finance-stock-price/scripts/query_stock.py" ... script_path = "~/.openclaw/workspace-group/skills/cryptoprice/scripts/cryptoprice.py"
Recommendation

Install only trusted companion skills and verify that required tools such as uv/Python and referenced market-data skills are present and expected.

What this means

Previous report content may affect what the skill includes or excludes in later reports.

Why it was flagged

The skill intentionally reuses prior report files to compute 24-hour deltas. This is scoped and purpose-aligned, but persistent report context can influence later outputs if earlier reports are stale or inaccurate.

Skill content
Reports are stored in `~/.openclaw/workspace-group/memory/capital_market_report_*.md` ... Read every report whose timestamp is within 24 hours
Recommendation

Keep generated reports source-backed, and clear the related memory/cache files if prior reports become inaccurate or should not influence future summaries.