Jimeng AI

PassAudited by ClawScan on May 10, 2026.

Overview

This skill appears to do what it claims—generate images and videos through VolcEngine Jimeng AI—but it uses cloud API credentials, sends prompts to the provider, and stores task data locally.

This skill is reasonable to install if you intend to use VolcEngine Jimeng AI. Before installing, prepare least-privileged or temporary VolcEngine credentials, avoid debug mode in shared logs, remember that prompts are sent to VolcEngine, and clean up local output folders if prompts or generated media are sensitive.

Findings (5)

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 skill can act against the user's VolcEngine account for Jimeng generation requests and may consume paid quota depending on the account configuration.

Why it was flagged

The skill needs VolcEngine account credentials to sign API requests. This is expected for the integration, but users should treat these as sensitive cloud credentials, especially because the registry metadata supplied for review declares no credential requirement.

Skill content
| `VOLCENGINE_AK` | **必需** | 火山引擎 Access Key | ... | `VOLCENGINE_SK` | 条件必需 | 火山引擎 Secret Key |
Recommendation

Use a least-privileged or temporary VolcEngine credential where possible, avoid sharing the environment that contains the keys, and verify the provider account permissions before use.

What this means

Debug logs could reveal sensitive prompts or partial credential-related request data to anyone who can read the terminal or logs.

Why it was flagged

When DEBUG or --debug is enabled, the script logs the request body and the beginning of the signed request URL. This appears intended for troubleshooting, but it may expose prompts and some authentication query material in logs.

Skill content
if (process.env.DEBUG) { console.error('Debug - Request URL:', url.slice(0, 200) + '...'); console.error('Debug - Request Body:', payload); }
Recommendation

Do not enable debug mode in shared terminals, CI logs, support transcripts, or other places where logs may be retained or viewed by others.

What this means

A prompt submitted through the skill is sent to VolcEngine and may create a billable or quota-consuming generation task.

Why it was flagged

Running the tool with a new prompt submits a remote generation task. This is the stated purpose, but it is a real account-impacting action.

Skill content
使用新提示词运行时,脚本将:
1. 向 API 提交任务
Recommendation

Invoke the skill only when you intend to submit the prompt to VolcEngine, and review account quota or billing settings if cost matters.

What this means

Sensitive or private prompts may remain in local output folders after generation completes.

Why it was flagged

The skill persists task parameters, API responses, and task IDs locally so later runs can resume or query the same task. This is disclosed, but task parameters may include the user's prompt.

Skill content
保存 `param.json`、`response.json` 和 `taskId.txt` ... output/ └── <md5(prompt)>/
Recommendation

Avoid entering confidential prompts unless local storage is acceptable, and delete the output folders when you no longer need the task history.

What this means

Installing the skill's dependencies depends on the npm packages and registry resolution used at install time.

Why it was flagged

The documented setup uses npm dependencies. This is normal for a TypeScript CLI, and package.json shows no install-time scripts, but installing still pulls third-party packages.

Skill content
"dependencies": { "axios": "^1.6.0", "crypto-js": "^4.2.0" }, "devDependencies": { ... "ts-node": "^10.9.0", "typescript": "^5.0.0" }
Recommendation

Install in a normal user workspace, keep the provided lockfile, and review dependency changes if the package is updated.