Dlazy Gpt 5.5

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

Installing or running the skill may execute code from the dLazy npm package on the user's machine.

Why it was flagged

The skill relies on executing an external npm-distributed CLI. The package version is pinned and this is central to the skill's purpose, but the CLI code is not included in the submitted artifacts.

Skill content
npx @dlazy/cli@1.0.9 <command> ... npm install -g @dlazy/cli@1.0.9
Recommendation

Use the pinned version, review the linked source/package before installing, and prefer npx if you do not want a persistent global CLI.

What this means

Anyone with access to the saved key could use the user's dLazy account or credits.

Why it was flagged

The skill requires a dLazy organization API key and can store it locally. This is expected for the SaaS integration, but the key is sensitive and may authorize paid API usage.

Skill content
所有请求都需要 dLazy API key... 自动把 API key 写入本地 CLI 配置... `~/.dlazy/config.json` ... `DLAZY_API_KEY`
Recommendation

Only authenticate on trusted machines, protect the config file, and rotate or revoke the key from the dLazy dashboard if needed.

What this means

Private prompts or selected files may leave the local machine and be processed or hosted by dLazy.

Why it was flagged

The artifacts disclose that prompts, parameters, and user-specified local media files are sent to dLazy-hosted services.

Skill content
你提供的提示词与参数会发送到 dLazy API(`api.dlazy.com`)... 本地文件路径会被 CLI 上传到 dLazy 媒体存储(`files.dlazy.com`)
Recommendation

Do not pass confidential prompts or media unless the dLazy service terms and data handling are acceptable.

What this means

The agent may steer the user to add credits to continue using the service.

Why it was flagged

The agent is instructed to direct users to a dLazy billing/credits page when balance is insufficient. This is service-related, but users should recognize it as a payment-related prompt.

Skill content
如果执行结果返回 `code: "insufficient_balance"`... 您必须明确告知用户当前积分不足,并引导用户点击以下链接前往充值
Recommendation

Verify the billing URL and decide independently whether to purchase or add credits.