Claude Agent Skill · by Toolsai

Zimage Generation

Install Zimage Generation skill for Claude Code from toolsai/free-zimage-skills.

Works with Paperclip

How Zimage Generation fits into a Paperclip company.

Zimage Generation drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md56 lines
Expand
---name: zimage-generationdescription: "Generate high-quality images using ModelScope's Z-Image API. Use this skill when the user wants to generate images using the specific Z-Image model or ModelScope API they provided. Trigger words: 'Zimage', 'ModelScope', 'generate zimage'."--- # Z-Image Generation Skill This skill allows you to generate images using the Z-Image model via the ModelScope Inference API. ## When to Use Use this skill when:- The user requests to generate an image using "Zimage", "zimage:", or "ModelScope".- The user inputs a command like `zimage: <prompt>` or `zimage <prompt>`.- The user wants to use their configured ModelScope API key for image generation. ## Usage The skill provides a Python script `scripts/generate_zimage.py` to handle the API interaction. ### Prerequisites- Python 3 with `requests` installed.- **API Key Setup (Choose one):**  - **Method A (Easiest for beginners):** Open `scripts/generate_zimage.py` and paste your key into the `DEFAULT_API_KEY` variable at the top.  - **Method B (Temporary):** Pass via command line: `--api-key your_token`  - **Method C (Recommended Project Setup):** Create a new text file named `.env` **in the same folder as the script** (`scripts/`).    - Content of the file should be: `MODELSCOPE_API_TOKEN="your_key_here"` ### Commands To generate an image: ```bash# If you used Method A (pasted key in file):python3 /Users/promptcase/.gemini/antigravity/skills/zimage-generation/scripts/generate_zimage.py "Your descriptive prompt here" # If you prefer command line (Method B):python3 /Users/promptcase/.gemini/antigravity/skills/zimage-generation/scripts/generate_zimage.py "Your prompt" --api-key "your_key"``` Arguments:- `prompt`: The text description of the image (required).- `--output`, `-o`: Specify output filename (optional).- `--model`: Specify a different model ID (optional).- `--api-key`: API key (if not set in file or environment). ### API Verification Note If the script returns a 401 error mentioning "bind your Alibaba Cloud account", notify the user that they must log in to ModelScope (https://modelscope.cn/my/account) and bind their Alibaba Cloud account to enable API access. This is a one-time setup required by the platform. ## Example ```python# To generate a cyberpunk citypython3 /Users/mattchan/.gemini/antigravity/skills/zimage-generation/scripts/generate_zimage.py "cyberpunk city, neon lights, rainy street, high detail"```