MarketUP管理

PassAudited by ClawScan on May 10, 2026.

Overview

It looks like a legitimate MarketUP CRM helper, but it needs a MarketUP API key and can change lead/account records.

Before installing, confirm you trust this source with MarketUP CRM access. Use a least-privilege API key, protect or remove `~/.openclaw/.env` when appropriate, and ask the agent to show target IDs/payloads before important create, modify, assign, convert, tag, or pool actions.

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

A mistaken request or wrong target ID could change lead/account ownership, fields, tags, follow-ups, or conversion state.

Why it was flagged

The skill explicitly supports authenticated write actions against CRM records. This matches the CRM management purpose, but these operations can alter business data.

Skill content
所有写操作(分配、创建、修改、跟进、转客户、领取、退回、打标签等)必须依据接口返回后再总结结果。
Recommendation

Review target records and payloads before high-impact writes, and use an API key/account with only the permissions needed for the intended CRM work.

What this means

Anyone or any process that can use that stored key may be able to access or modify MarketUP CRM data according to the key’s permissions.

Why it was flagged

The setup flow stores a sensitive MarketUP API key for later use. This is disclosed and expected for the integration, but the key grants account/API authority.

Skill content
Creates `~/.openclaw/.env` if it does not exist. Updates existing `MARKETUP_API_KEY` when present, otherwise appends `MARKETUP_API_KEY=<user_input>`.
Recommendation

Use a least-privilege MarketUP API key, keep the `.env` file protected, and rotate/revoke the key if it is no longer needed.

What this means

Installing/using the skill may trigger local script execution to write configuration under the user’s home directory.

Why it was flagged

The skill instructs the agent to run a local setup script automatically when the API key is missing. The behavior is disclosed and limited to credential setup.

Skill content
Do not ask the user to run the script manually. The agent must execute the script itself and only ask the user for the key input prompted by the script.
Recommendation

Review the setup script before first use and cancel the prompt if you do not want the key saved locally.

What this means

The credential setup may fail on systems without `rg` even though the registry requirements appear satisfied.

Why it was flagged

The setup script invokes `rg`, while the supplied requirements list only `curl` and `jq`. This is an under-declared local dependency and may cause setup failure.

Skill content
if rg -q '^MARKETUP_API_KEY=' "${ENV_FILE}"; then
Recommendation

Declare `rg` as a required binary or replace it with a dependency already available in the declared environment.