meshy-openclaw

meshy-openclaw is a skill for Claude Code from meshy-dev/meshy-3d-agent. It costs 128 tokens per session (4,637 once invoked), scanned A, original, MIT.

A workflow for using the Meshy AI service to generate 3D models, textures, images, rigged characters, and animations, then download and prepare the results for printing.

In plain words
What is it for?
Use it for text-to-3D or image-to-3D work, model texturing, character rigging and animation, asset downloads, and slicer-based 3D-print preparation.
Why use it?
It handles the repeated steps of sending requests, waiting for jobs to finish, downloading files, and preparing print output.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code; built for openclaw.

Part of the meshy-3d-agent plugin — 3 skills shipped together

Good fit Use it for text-to-3D or image-to-3D work, model texturing, character rigging and animation, asset downloads, and slicer-based 3D-print preparation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/meshy-dev/meshy-3d-agent/meshy-openclaw
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add meshy-dev/meshy-3d-agent --skill meshy-openclaw
Clone the repo
git clone --depth 1 https://github.com/meshy-dev/meshy-3d-agent

Made for: Claude Code.

Or install meshy-3d-agent, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for meshy-openclaw

README.md
[![agentmods](https://agentmods.dev/badge/skills/meshy-dev/meshy-3d-agent/meshy-openclaw/github.svg)](https://agentmods.dev/skills/meshy-dev/meshy-3d-agent/meshy-openclaw)
Your own site
<a href="https://agentmods.dev/skills/meshy-dev/meshy-3d-agent/meshy-openclaw"><img src="https://agentmods.dev/badge/skills/meshy-dev/meshy-3d-agent/meshy-openclaw/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for meshy-openclaw

Your own site · 80×15
<a href="https://agentmods.dev/skills/meshy-dev/meshy-3d-agent/meshy-openclaw"><img src="https://agentmods.dev/badge/skills/meshy-dev/meshy-3d-agent/meshy-openclaw.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 128 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,637 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 163
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 255
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00128 $0.04637
Opus 5 $0.00064 $0.02318
Sonnet 5 $0.00026 $0.00927
Haiku 4.5 $0.00013 $0.00464

Measured 9d ago against content hash 4ca3d6aa5abc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

meshy-openclaw scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/fix_obj.py, scripts/meshy_task.py, scripts/slicers.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- curl
skills/meshy-openclaw/SKILL.md · 280 lines

How it starts

The opening of the file, as written. The whole thing — 280 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Meshy 3D — Generation + Printing

Directly communicate with the Meshy AI API to generate and print 3D assets. Covers the complete lifecycle: API key setup, task creation, exponential backoff polling, downloading, multi-step pipelines, and 3D print preparation with slicer integration.


SECURITY MANIFEST

Environment variables accessed:

  • 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.

External network endpoints:

  • https://api.meshy.ai — Meshy AI API (task creation, status polling, model/image downloads)

File system access:

  • Read: .env / .env.local in the current working directory only (API key lookup)
  • Write: .env in the current working directory only (API key storage, only on user request)
  • Write: ./meshy_output/ in the current working directory (downloaded model files, metadata)
  • Read: files explicitly provided by the user (e.g., local images passed for image-to-3D conversion), accessed only at the exact path the user specifies
  • No access to home directories, shell profiles, or any path outside the above

Data leaving this machine:

  • API requests to api.meshy.ai include the MESHY_API_KEY in the Authorization header and user-provided text prompts or image URLs. No other local data is transmitted. Downloaded model files are saved locally only.

All paths below are relative to this skill's own directory (the directory containing this SKILL.md). Resolve them before running.

Resource When to use
scripts/meshy_task.py Bundled CLI for every Meshy API call (create / poll / download / record / …)
scripts/slicers.py Detect installed slicers; open a model file in a slicer
scripts/fix_obj.py Fix OBJ coordinate system, scale, and origin for slicers
reference.md Full API reference: every parameter, response schema, error code
references/setup.md API key setup — read when Step 0 finds no key
references/pipelines.md Generation recipes: exact payloads + script calls per endpoint
references/printing.md Print pipeline walkthroughs: slicer detection, analyze/repair, white model, multicolor, Creative Lab
references/troubleshooting.md Error recovery trees and task failure messages

Read the full file on GitHub · 280 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 280 lines · 128 tokens per session scan A 4ca3d6aa5abc

Subscribe to this mod's changes

meshy-openclaw is a skill published in the GitHub repository meshy-dev/meshy-3d-agent (89 stars, last pushed 1mo ago), licensed MIT. It adds 128 tokens to every session and 4,637 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

video-shotcraft

Create cinematic product videos from shot recipe cards, a validated template, and code/audio assets (Remotion + real page screenshots + 2.5D camera moves + beat-synced cuts + sound design). Use when the user asks to turn a frontend project or webpage into a product video, says "use video-shotcraft to make a…

Vincentwei1021/video-shotcraft · 204 tokens

3d_scene

Choose how to build a 3dscene asset. Do not default to one pipeline for every task: what the user specified about the scene's appearance matters more than the scene type, and generative reconstruction is the least stable route here.

OpenDCAI/GameFactory-3A · 0 tokens

audio

Use this Skill when a game plan requires dialogue, voice lines, sound effects, foley, ambience, or other offline WAV assets. This is asset generation, not a runtime audio-playback contract; use the selected engine context after an asset has passed review.

OpenDCAI/GameFactory-3A · 0 tokens

game-cg-director

Convert game CG intent and optional media references into validated, model-specific directing envelopes for opening, cutscene, ultimate, or promo clips. Use for standalone CG prompt direction or as a child capability of a game-generation Harness. Supports T2VA/text-only, I2VA/first-frame image…

OpenDCAI/GameFactory-3A · 95 tokens

image

Use this Skill when a game plan needs a single-subject concept image, a character reference cleaned for image-to-3D, or a front-facing transparent T-pose image for downstream character reconstruction. T-pose generation is an image-generation and image-editing task; it is not a separate asset category.

OpenDCAI/GameFactory-3A · 0 tokens

muapi-storyboard

Generate N keyframes for a short story or scene sequence (image only, no video).

SamurAIGPT/Generative-Media-Skills · 23 tokens