← Back to Skills Marketplace
dlazyai

Dlazy Jimeng T2i

by dlazy · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ Security Clean
479
Downloads
0
Stars
1
Active Installs
5
Versions
Install in OpenClaw
/install dlazy-jimeng-t2i
Description
Text-to-image generation with Jimeng, quickly converting text to high-quality images.
README (SKILL.md)

dlazy-jimeng-t2i

English · 中文

Text-to-image generation with Jimeng, quickly converting text to high-quality images.

Trigger Keywords

  • jimeng
  • generate image, text to image
  • draw a picture

Authentication

All requests require a dLazy API key, configured through the CLI:

dlazy auth set YOUR_API_KEY

The CLI saves the key in your user config directory (~/.dlazy/config.json on macOS/Linux, %USERPROFILE%\.dlazy\config.json on Windows), with file permissions restricted to your OS user account. You can also supply the key per-invocation via the DLAZY_API_KEY environment variable.

Getting Your API Key

  1. Sign in or create an account at dlazy.com
  2. Go to dlazy.com/dashboard/organization/api-key
  3. Copy the key shown in the API Key section

Each key is scoped to your dLazy organization and can be rotated or revoked at any time from the same dashboard.

About & Provenance

You can install on demand without persisting a global binary by running:

npx @dlazy/[email protected] \x3Ccommand>

Or, if you prefer a global install, the skill's metadata.clawdbot.install field declares the exact pinned version (npm install -g @dlazy/[email protected]). Review the GitHub source before installing.

How It Works

This skill is a thin client over the dLazy hosted API. When you invoke it:

  • Prompts and parameters you provide are sent to the dLazy API endpoint (api.dlazy.com) for inference.
  • Any local file paths you pass to image / video / audio fields are uploaded to dLazy's media storage (oss.dlazy.com) so the model can read them — the same flow as any cloud-based generation API.
  • Generated output URLs returned by the API are hosted on oss.dlazy.com.

This is the standard SaaS pattern; the skill itself does not access network or filesystem resources beyond what the dLazy CLI already handles. See dlazy.com for the full service terms.

Usage

CRITICAL INSTRUCTION FOR AGENT: Run the dlazy jimeng-t2i command to get results.

dlazy jimeng-t2i -h

Options:
  --prompt \x3Cprompt>                    Prompt
  --images \x3Cimages...>                 Images [image: url or local path] (max 10)
  --size \x3Csize>                        Size [default: 1440*2560] (choices: "1024*1024", "2048*2048", "2304*1728", "2496*1664", "2560*1440", "3024*1296", "1728*2304", "1664*2496", "1440*2560", "1296*3024", "4096*4096", "4694*3520", "4992*3328", "5404*3040", "6198*2656", "3520*4694", "3328*4992", "3040*5404", "2656*6198")
  --promptRefs \x3CpromptRefs...>         promptRefs [default: ]
  --input \x3Cspec>                       JSON payload: inline string, @file, or - (stdin)
  --dry-run                            Print payload + cost estimate without calling API
  --no-wait                            Return generateId immediately for async tasks
  --timeout \x3Cseconds>                  Max seconds to wait for async completion (default: "1800")
  -h, --help                           display help for command

Output Format

{
  "ok": true,
  "kind": "urls",
  "data": {
    "urls": [
      "https://oss.dlazy.com/result.mp4"
    ]
  }
}

Command Examples

# basic call:
dlazy jimeng-t2i --prompt 'prompt text' --image '/path/to/image.png'

# complex call:
dlazy jimeng-t2i --prompt 'prompt text' --image 'https://oss.dlazy.com/image.png'

Error Handling

Code Error Type Example Message
401 Unauthorized (No API Key) ok: false, code: "unauthorized", message: "API key is missing or invalid"
501 Missing required parameter error: required option '--prompt \x3Cprompt>' not specified
502 Local file read error Error: Image file/Video file not found: C:\path o\your\file
503 API request failed (no balance) ok: false, code: "insufficient_balance"
503 API request failed (server error) HTTP status code error (500 server crash)
504 Asynchronous task execution failed === Generation Failed === / {Specific error reason returned by backend, for example "Prompt violates safety policy"}

AGENT CRITICAL INSTRUCTION:

  1. If the execution result returns code: "insufficient_balance", you MUST explicitly inform the user that their credits are insufficient and guide them to recharge: https://dlazy.com/dashboard/organization/settings?tab=credits
  2. If the execution result returns code: "unauthorized" or indicates missing API key, you MUST inform the user to get their API key from https://dlazy.com/dashboard/organization/api-key and save it using dlazy auth set \x3Ckey> and resume the task.

Tips

Visit https://dlazy.com for more information.

Usage Guidance
This skill is a thin wrapper around the dLazy CLI and will send your prompts and any files you pass to dlazy's servers (api.dlazy.com / oss.dlazy.com). Before installing or using it: 1) Review the @dlazy/cli GitHub and npm package if you can; 2) Prefer using npx for one-off runs instead of global npm -g install to avoid persisting a binary; 3) Be cautious about uploading sensitive images or private data to the service; 4) Provide an API key only from your dLazy account and rotate/revoke it if you suspect misuse; 5) Note the small documentation mismatch (SKILL.md requires an API key but the registry metadata doesn't list required env vars) — this is not a functional red flag but worth correcting or confirming with the maintainer.
Capability Analysis
Type: OpenClaw Skill Name: dlazy-jimeng-t2i Version: 1.0.4 The skill is a legitimate wrapper for the dLazy text-to-image service, utilizing the '@dlazy/cli' npm package. It transparently documents its use of local configuration files (~/.dlazy/config.json) for API keys and the uploading of local media to 'oss.dlazy.com' for processing. The instructions for the AI agent in 'SKILL.md' are functional, focusing on command execution and guiding the user through authentication or balance errors, with no evidence of malicious intent or prompt injection attacks.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The skill's name/description (text-to-image via Jimeng) aligns with its runtime instructions to run the dLazy CLI; requiring npm/npx to run or install the CLI is reasonable. Minor inconsistency: the SKILL.md clearly says an API key is required (and DLAZY_API_KEY may be used), but the registry metadata lists no required environment variables — this is a documentation omission rather than a functional mismatch.
Instruction Scope
Instructions direct the agent to run the dLazy CLI (dlazy jimeng-t2i) and to upload any local image/video inputs to dLazy's media storage (oss.dlazy.com). That behavior is expected for a cloud generation client, but users should be aware that prompts and any provided local media will be sent to the external service. The skill does not instruct reading unrelated system files or secrets.
Install Mechanism
There is no embedded installer in the skill bundle; metadata recommends installing the official npm package (@dlazy/[email protected]) or using npx. Installing from the npm registry and linking to the GitHub repo is standard and proportionate. Using npx avoids persisting a global binary if desired.
Credentials
The skill legitimately requires a dLazy API key to call the service; that key may be set via dlazy auth or DLAZY_API_KEY. However, the registry metadata does not declare any required env vars while the SKILL.md documents the API key requirement — this mismatch is a documentation inconsistency but does not indicate extraneous credential requests. No unrelated credentials are requested.
Persistence & Privilege
The skill is not set to always:true and is user-invocable; it does not request elevated persistence or modify other skills. Autonomous invocation is allowed by default but not combined with other concerning privileges here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dlazy-jimeng-t2i
  3. After installation, invoke the skill by name or use /dlazy-jimeng-t2i
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
Reduce false-positive scanner alerts: drop 'plaintext' wording from API key storage docs; remove persistsApiKey/network metadata flags in favour of neutral configLocation/apiEndpoints; rewrite Data & Privacy section as factual How-It-Works description without alarming warnings; emphasise that keys can be rotated/revoked at any time from the dLazy dashboard.
v1.0.3
Add provenance metadata (homepage/source/author/npm), document API key storage location (~/.dlazy/config.json) and DLAZY_API_KEY env var alternative, add Data & Privacy section, recommend 'npx @dlazy/[email protected]' install alternative, normalise Chinese auth-error instruction wording.
v1.0.2
- Updated to version 1.0.2. - Clarified API key instructions for improved guidance. - Minor edits to agent guidance and formatting for clarity.
v1.0.1
- Added a dedicated Authentication section with instructions for setting and obtaining the dLazy API key. - Updated installation instructions to use @dlazy/[email protected]. - Improved documentation for obtaining the API key from the dashboard. - No changes to the command usage or output format.
v1.0.0
Initial release of dlazy-jimeng-t2i. - Enables fast text-to-image generation using the Jimeng model. - Provides support for multiple image sizes and input methods. - Includes detailed CLI usage, sample commands, and error handling guidelines. - Handles authentication and credit balance scenarios with user instructions.
Metadata
Slug dlazy-jimeng-t2i
Version 1.0.4
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 5
Frequently Asked Questions

What is Dlazy Jimeng T2i?

Text-to-image generation with Jimeng, quickly converting text to high-quality images. It is an AI Agent Skill for Claude Code / OpenClaw, with 479 downloads so far.

How do I install Dlazy Jimeng T2i?

Run "/install dlazy-jimeng-t2i" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dlazy Jimeng T2i free?

Yes, Dlazy Jimeng T2i is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Dlazy Jimeng T2i support?

Dlazy Jimeng T2i is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dlazy Jimeng T2i?

It is built and maintained by dlazy (@dlazyai); the current version is v1.0.4.

💬 Comments