Back to skill
v0.1.1

Meshy Openclaw

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 7:29 AM.

Analysis

The skill appears purpose-aligned for Meshy 3D generation, with expected API-key use, local script execution, and local output/history files to review before use.

GuidanceThis skill is reasonable to install if you intend to use Meshy, but only run it in a trusted project folder, protect your Meshy API key, avoid committing `.env`, and be aware that prompts, generated files, and history are stored locally.

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.

Abnormal behavior control

Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.

Unexpected Code Execution
SeverityLowConfidenceHighStatusNote
SKILL.md
Write the entire create → poll → download flow as **ONE Python script** and execute in a single Bash call. Use `python3 -u script.py` for unbuffered output.

The skill intentionally directs the agent to write and execute local Python scripts through Bash; this is central to the API workflow, but users should understand that local commands will run.

User impactThe agent may run generated local scripts that make network requests and write files in the current project.
RecommendationUse the skill in a project directory you trust and review generated commands/scripts when working with sensitive files or credentials.
Human-Agent Trust Exploitation
SeverityLowConfidenceHighStatusNote
SKILL.md
`Never logged` ... `echo "READY: key=${MESHY_API_KEY:0:8}..."`

The security manifest says the key is never logged, but the detection script prints a masked prefix of the key to the session output.

User impactA partial API-key prefix may appear in terminal or session logs, even though the full key is not shown.
RecommendationPrefer changing the detection output to show only `FOUND` or `READY` without any key characters.
Permission boundary

Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.

Identity and Privilege Abuse
SeverityLowConfidenceHighStatusNote
SKILL.md
`MESHY_API_KEY` — API authentication token sent in HTTP `Authorization: Bearer` header only. Never logged, never written to any file except `.env` in the current working directory when explicitly requested by the user.

The skill requires a Meshy API credential and may optionally store it locally; this is expected for the Meshy integration, but it gives the skill authority to act on the user's Meshy account.

User impactThe skill can create Meshy API tasks under your account and may use paid credits if you ask it to generate assets.
RecommendationUse a dedicated Meshy API key if possible, keep `.env` out of version control, and revoke the key if it is exposed.
Sensitive data protection

Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.

Memory and Context Poisoning
SeverityLowConfidenceHighStatusNote
SKILL.md
History is tracked in `meshy_output/history.json`.

The skill records generated project history locally; this is disclosed and purpose-aligned, but prompts and asset metadata may persist after the session.

User impactPrivate prompts, project names, task IDs, or generated asset metadata may remain in local history files.
RecommendationAvoid putting sensitive information in prompts, and delete `meshy_output/history.json` or project folders when you no longer want the history retained.