利润优化引擎

AdvisoryAudited by Static analysis on May 2, 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

If used with real orders, an agent or user could mark an order as paid in the local records even if the payment was not actually verified.

Why it was flagged

The script can mutate saved local order state by marking an order as paid. This is aligned with order management, but it affects local business records.

Skill content
elif "--confirm" in args: ... found['status'] = 'paid' ... mgr._save(found)
Recommendation

Use --confirm only after independently verifying the order ID and payment status; treat the records as local bookkeeping unless connected to a real payment workflow.

What this means

Order and financial details entered into the tool can remain on disk and influence future reports.

Why it was flagged

The skill stores order names, prices, costs, status, and timestamps as persistent local JSON files and later reloads them for reports.

Skill content
DATA_DIR = os.path.expanduser("~/.openclaw/workspace/state/orders") ... json.dump(order, f, indent=2)
Recommendation

Avoid entering sensitive real customer data unless local storage is acceptable, and delete or protect the state directory when records are no longer needed.