Crm Add Record

AdvisoryAudited by Static analysis on Apr 30, 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

Anyone using the skill could act in the CRM under the same account, and actions may not be attributable to the real authorized user.

Why it was flagged

The skill embeds a reusable CRM username and password and instructs browser automation to log in with them, rather than using a user-provided or scoped credential.

Skill content
# Fill credentials: username="weiyj", password="weiyj123"
agent-browser fill @<username_field> "weiyj"
agent-browser fill @<password_field> "weiyj123"
Recommendation

Remove and rotate the hardcoded password, require per-user scoped credentials, declare the credential requirement in metadata, and avoid shared-account automation.

What this means

If the input is misunderstood or the wrong CRM page is active, the agent could create an incorrect CRM record.

Why it was flagged

The skill uses browser-control commands to submit the CRM form. This is central to the stated purpose, but it changes business records.

Skill content
allowed-tools: Bash(agent-browser:*) ... agent-browser click @<save_button>
Recommendation

Have the agent show the parsed fields and obtain user confirmation before clicking save, especially for ambiguous inputs.

What this means

Customer or sales-lead information entered by the user will be placed into that CRM instance.

Why it was flagged

The workflow sends customer contact details, including phone number and name, to the specified external CRM site. This is expected for the CRM-add purpose but involves sensitive customer data.

Skill content
agent-browser open https://niw26kl7.fractaltest.cn/Crm/Backend/modify.html ... Phone number → 手机号码输入框 ... Contact name → 联系人输入框
Recommendation

Use only with authorized customer data and confirm the listed CRM domain is the intended destination.